package network::adsl; # $Id$ use common; use run_program; use network::tools; use network::ethernet; use modules; use vars qw(@ISA @EXPORT); @ISA = qw(Exporter); @EXPORT = qw(adsl_conf_backend); sub get_wizard { my ($wiz) = @_; my $netc = $wiz->{var}{netc}; my %l = ( 'pppoe' => N("use pppoe"), 'pptp' => N("use pptp"), 'dhcp' => N("use dhcp"), 'speedtouch' => N("Alcatel Speedtouch USB") . if_($netc->{autodetect}{adsl}{speedtouch}, N(" - detected")), 'sagem' => N("Sagem (using PPPOA) USB") . if_($netc->{autodetect}{adsl}{sagem}, N(" - detected")), 'sagem_dhcp' => N("Sagem (using DHCP) USB") . if_($netc->{autodetect}{adsl}{sagem}, N(" - detected")), # 'eci' => N("ECI Hi-Focus"), # this one needs eci agreement ); $wiz->{var}{adsl} = { connection_list => \%l, type => "", }; add2hash($wiz->{pages}, { adsl_old => { name => N("Connect to the Internet") . "\n\n" . N("The most common way to connect with adsl is pppoe. Some connections use pptp, a few use dhcp. If you don't know, choose 'use pppoe'"), data => [ { label => N("ADSL connection type:"), val => \$wiz->{var}{adsl}{type}, list => [ sort values %l ] }, ], pre => sub { $wiz->{var}{adsl}{type} = $l{sagem}; # debug $wiz->{var}{adsl}{type} ||= find { $netc->{autodetect}{adsl}{$_} } keys %l; print "\n\ntype is «$wiz->{var}{adsl}{type}»\n\n"; }, post => sub { $wiz->{var}{adsl}{type} = find { $l{$_} eq $wiz->{var}{adsl}{type} } keys %l; my $adsl = $wiz->{var}{adsl}{connection}; my $type = $wiz->{var}{adsl}{type}; my $netcnx = $wiz->{var}{netcnx}; $netcnx->{type} = "adsl_$type"; $netcnx->{"adsl_$type"} = {}; $netcnx->{"adsl_$type"}{vpivci} = '' if $type =~ /eci|speedtouch/; return 'ethernet' if $type eq 'dhcp'; adsl_probe_info($adsl, $netc, $type); # my ($adsl, $netc, $intf, $adsl_type) = @_; # ask_info2($adsl, $netc); return "hw_account"; }, }, }); }; sub adsl_probe_info { my ($adsl, $netc, $adsl_type, $o_adsl_modem) = @_; my $pppoe_file = "$::prefix/etc/ppp/pppoe.conf"; my %pppoe_conf; %pppoe_conf = getVarsFromSh($pppoe_file) if (! defined $adsl_type || $adsl_type eq 'pppoe') && -f $pppoe_file; my $login = $pppoe_conf{USER}; foreach (qw(/etc/ppp/peers/ppp0 /etc/ppp/options /etc/ppp/options.adsl)) { ($login) = map { if_(/^user\s+"([^"]+)"/, $1) } cat_("$::prefix/$_") if !$login && -r "$::prefix/$_"; } my $passwd = passwd_by_login($login); if (!$netc->{vpi} && !$netc->{vpi} && member($o_adsl_modem, qw(eci speedtouch))) { ($netc->{vpi}, $netc->{vci}) = (map { if_(/^.*-vpi\s+(\d+)\s+-vci\s+(\d+)/, map { sprintf("%x", $_) } $1, $2) } cat_("$::prefix/etc/ppp/peers/ppp0")); } $pppoe_conf{DNS1} ||= ''; $pppoe_conf{DNS2} ||= ''; add2hash($netc, { dnsServer2 => $pppoe_conf{DNS1}, dnsServer3 => $pppoe_conf{DNS2}, DOMAINNAME2 => '' }); add2hash($adsl, { login => $login, passwd => $passwd, passwd2 => '' }); } sub adsl_detect() { my $adsl = {}; require detect_devices; ($adsl->{bewan}) = detect_devices::getBewan(); ($adsl->{speedtouch}) = detect_devices::getSpeedtouch(); ($adsl->{sagem}) = detect_devices::getSagem(); ($adsl->{eci}) = detect_devices::getECI(); return $adsl; } sub adsl_conf_backend { my ($in, $modules_conf, $adsl, $netc, $adsl_device, $adsl_type, $o_netcnx) = @_; # FIXME: should not be needed: defined $o_netcnx and $netc->{adsltype} = $o_netcnx->{type}; $netc->{adsltype} ||= "adsl_$adsl_type"; $adsl_type eq 'pptp' and $adsl_device = 'pptp_modem'; my $bewan_module; $bewan_module = $o_netcnx->{bus} eq 'PCI' ? 'unicorn_pci_atm' : 'unicorn_usb_atm' if $adsl_device eq "bewan"; # all supported modems came with their own pppoa module, so no need for "plugin pppoatm.so" my %modems = ( bewan => { start => qq( modprobe pppoatm # ActivationMode=1 modprobe $bewan_module # wait for the modem to be set up: sleep 10 ), stop => qq(modprobe -r $bewan_module), plugin => { pppoa => "pppoatm.so $netc->{vpi}." . hex($netc->{vci}) }, ppp_options => qq( lock ipparam ppp0 default-asyncmap hide-password noaccomp nobsdcomp nodeflate novj novjccomp lcp-echo-interval 20 lcp-echo-failure 3 mtu 1200 mru 1200 sync ), }, speedtouch => { modules => [ qw(speedtch) ], start => '/usr/bin/speedtouch-start', overide_script => 1, server => { pppoa => qq("/usr/sbin/pppoa3 -c") }, plugin => { pppoa => "pppoatm.so " . join('.', hex($netc->{vpi}), hex($netc->{vci})), }, ppp_options => qq( sync noaccomp), aliases => [ ['char-major-108', 'ppp_generic'], ['tty-ldisc-3', 'ppp_async'], ['tty-ldisc-13', 'n_hdlc'], ['tty-ldisc-14', 'ppp_synctty'], ['ppp-compress-21', 'bsd_comp'], ['ppp-compress-24', 'ppp_deflate'], ['ppp-compress-26', 'ppp_deflate'] ], }, sagem => { modules => [ qw(eagle-usb) ], start => '/usr/sbin/eaglectrl -d', stop => "/usr/bin/killall pppoa", get_intf => "/usr/sbin/eaglectrl -i", server => { pppoa => q("intf=`/usr/sbin/fctStartAdsl -t 1 -i` && /usr/sbin/pppoa -I $intf"), }, ppp_options => qq( mru 1492 mtu 1492 nobsdcomp nodeflate noaccomp -am novjccomp), aliases => [ ['char-major-108', 'ppp_generic'], ['tty-ldisc-3', 'ppp_async'], ['tty-ldisc-13', 'n_hdlc'], ['tty-ldisc-14', 'ppp_synctty'] ], }, eci => { start => '/usr/bin/startmodem', server => { pppoe => qq("/usr/bin/pppoeci -v 1 -vpi $netc->{vpi} -vci $netc->{vci}"), }, ppp_options => qq( noipdefault sync noaccomp linkname eciadsl noauth lcp-echo-interval 0) }, pptp_modem => { server => { pptp => qq("/usr/sbin/pptp 10.0.0.138 --nolaunchpppd"), }, }, ); if ($adsl_type =~ /^pp/) { mkdir_p("$::prefix/etc/ppp"); $in->do_pkgs->install('ppp') if !$>; my %packages = ( pppoa => [ qw(ppp-pppoatm) ], pppoe => [ qw(ppp-pppoe rp-pppoe) ], pptp => [ qw(pptp-linux) ], ); $in->do_pkgs->install(@{$packages{$adsl_type}}) if !$>; output("$::prefix/etc/ppp/options", $adsl_device eq "bewan" ? qq(lock ipparam ppp0 noipdefault noauth default-asyncmap defaultroute hide-password noaccomp noccp nobsdcomp nodeflate nopcomp novj novjccomp lcp-echo-interval 20 lcp-echo-failure 3 mtu 1200 mru 1200 sync persist user $adsl->{login} name $adsl->{login} usepeerdns ) : qq(lock noipdefault persist noauth usepeerdns defaultroute) ); my $pty_option = $modems{$adsl_device}{server}{$adsl_type} && "pty $modems{$adsl_device}{server}{$adsl_type}"; my $plugin = $modems{$adsl_device}{plugin}{$adsl_type} && "plugin $modems{$adsl_device}{plugin}{$adsl_type}"; my $noipdefault = 'noipdefault' unless $adsl_type eq 'pptp'; output("$::prefix/etc/ppp/peers/ppp0", qq(noauth $noipdefault $modems{$adsl_device}{ppp_options} kdebug 1 nopcomp noccp novj holdoff 4 maxfail 25 persist usepeerdns defaultroute $pty_option $plugin user "$adsl->{login}" )); write_secret_backend($adsl->{login}, $adsl->{passwd}); if ($adsl_type eq 'pppoe') { my $net_device = $modems{$adsl_device}{get_intf} ? "`$modems{$adsl_device}{get_intf}`" : $netc->{NET_DEVICE}; substInFile { s/ETH=.*\n/ETH=$net_device\n/; s/USER=.*\n/USER=$adsl->{login}\n/; s/DNS1=.*\n/DNS1=$netc->{dnsServer2}\n/; s/DNS2=.*\n/DNS2=$netc->{dnsServer3}\n/; } "$::prefix/etc/ppp/pppoe.conf"; } # pppoe => { # # we do not call directly pppd, rp-pppoe take care of "plugin rp-pppoe.so" peers option and the like # connect => "LC_ALL=C LANG=C LANGUAGE=C LC_MESSAGES=C /usr/sbin/adsl-start", # disconnect => qq(/usr/sbin/adsl-stop # /usr/bin/killall pppoe pppd\n), # }, } #- FIXME: #- ppp0 and ippp0 are hardcoded my $kind = $adsl_type eq 'pppoe' ? 'xDSL' : 'ADSL'; output_with_perm("$::prefix/etc/sysconfig/network-scripts/ifcfg-ppp0", 0705, qq(DEVICE=ppp0 ONBOOT=no TYPE=$kind )); # sagem specific stuff if ($adsl_device eq 'sagem') { my %l = map { $_ => sprintf("%08s", $netc->{$_}) } qw(vci vpi Encapsulation); # set vpi and vci parameters for sagem foreach my $cfg_file (qw(/etc/analog/adiusbadsl.conf /etc/eagle-usb/eagle-usb.conf)) { substInFile { s/VCI=.*\n/VCI=$l{vci}\n/; s/VPI=.*\n/VPI=$l{vpi}\n/; s/Encapsulation=.*\n/Encapsulation=$l{Encapsulation}\n/; } "$::prefix$cfg_file"; } } # set aliases: if (exists $modems{$adsl_device}{aliases}) { $modules_conf->set_alias($_->[0], $_->[1]) foreach @{$modems{$adsl_device}{aliases}}; $::isStandalone and $modules_conf->write; } unless ($::isStandalone) { my @modules = (@{$modems{$adsl_device}{modules}}, map { $_->[1] } @{$modems{$adsl_device}{aliases}}); @modules && eval { modules::load(@modules) } or log::l("failed to load " . join(',', @modules), " modules: $@"); $modems{$adsl_device}{start} and run_program::rooted($::prefix, $modems{$adsl_device}{start}); } } 1; ble summary='file diffstat' width='100%'> -rw-r--r--perl-install/share/po/br.po3066
-rw-r--r--perl-install/share/po/bs.po4586
-rw-r--r--perl-install/share/po/ca.po8432
-rw-r--r--perl-install/share/po/cy.po4577
-rw-r--r--perl-install/share/po/da.po5006
-rw-r--r--perl-install/share/po/de.po4698
-rw-r--r--perl-install/share/po/el.po4461
-rw-r--r--perl-install/share/po/eo.po4455
-rw-r--r--perl-install/share/po/et.po4470
-rw-r--r--perl-install/share/po/eu.po4591
-rw-r--r--perl-install/share/po/fi.po4487
-rw-r--r--perl-install/share/po/fr.po5058
-rw-r--r--perl-install/share/po/ga.po4390
-rw-r--r--perl-install/share/po/gl.po4453
-rw-r--r--perl-install/share/po/hr.po4579
-rw-r--r--perl-install/share/po/hu.po4880
-rw-r--r--perl-install/share/po/id.po4979
-rw-r--r--perl-install/share/po/is.po4431
-rw-r--r--perl-install/share/po/it.po4587
-rw-r--r--perl-install/share/po/ja.po4579
-rw-r--r--perl-install/share/po/ko.po5300
-rw-r--r--perl-install/share/po/lt.po4459
-rw-r--r--perl-install/share/po/lv.po4461
-rw-r--r--perl-install/share/po/mt.po4883
-rw-r--r--perl-install/share/po/nl.po4611
-rw-r--r--perl-install/share/po/no.po298
-rw-r--r--perl-install/share/po/pt.po6737
-rw-r--r--perl-install/share/po/pt_BR.po4461
-rw-r--r--perl-install/share/po/ro.po6304
-rw-r--r--perl-install/share/po/ru.po4455
-rw-r--r--perl-install/share/po/sk.po6043
-rw-r--r--perl-install/share/po/sl.po4391
-rw-r--r--perl-install/share/po/sp.po320
-rw-r--r--perl-install/share/po/sr.po5933
-rw-r--r--perl-install/share/po/th.po4421
-rw-r--r--perl-install/share/po/tr.po5026
-rw-r--r--perl-install/share/po/uk.po4467
-rw-r--r--perl-install/share/po/wa.po5098
-rw-r--r--perl-install/share/po/zh_CN.po6876
-rw-r--r--perl-install/share/po/zh_TW.po5125
46 files changed, 118630 insertions, 92364 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index c7c899ad5..27a25381e 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-08-20 11:11+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4851,327 +4851,371 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+msgid "Bengali"
+msgstr ""
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+msgid "Bosnian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr ""
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr ""
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr ""
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr ""
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+msgid "Laotian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+msgid "Mongolian (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr ""
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:269
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5447,7 +5491,7 @@ msgstr ""
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -8209,8 +8253,16 @@ msgstr ""
msgid "Remove the last item"
msgstr ""
-#: ../../standalone/drakbackup_.c:734
-msgid "$mode: $warning"
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+msgid "FATAL"
msgstr ""
#: ../../standalone/drakbackup_.c:744
@@ -8242,8 +8294,9 @@ msgid "Total progess"
msgstr ""
#: ../../standalone/drakbackup_.c:822
+#, c-format
msgid ""
-"$backup_key exists, delete?\n"
+"%s exists, delete?\n"
"\n"
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
@@ -8254,23 +8307,49 @@ msgid "This may take a moment to generate the keys."
msgstr ""
#: ../../standalone/drakbackup_.c:838
-msgid "ERROR: Cannot spawn $exp_command."
+#, c-format
+msgid "ERROR: Cannot spawn %s."
msgstr ""
#: ../../standalone/drakbackup_.c:865
+#, c-format
msgid ""
"Transfer successful\n"
"You may want to verify you can login to the server with:\n"
"\n"
-"ssh -i $backup_key $login_user\\@$host_name\n"
+"ssh -i %s %s\\@%s\n"
"\n"
"without being prompted for a password."
msgstr ""
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:981
msgid "This may take a moment to erase the media."
msgstr ""
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
@@ -8291,10 +8370,15 @@ msgstr ""
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1282
+#: ../../standalone/drakbackup_.c:1266
+msgid "No changes to backup!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -8312,13 +8396,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1305
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
@@ -8337,6 +8414,10 @@ msgstr ""
msgid " Error during mail sending. \n"
msgstr ""
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
@@ -8724,10 +8805,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2530
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
@@ -8940,7 +9017,7 @@ msgstr ""
#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -9092,7 +9169,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9116,14 +9193,14 @@ msgid ""
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 1046b1a74..035147415 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -59,11 +59,11 @@ msgstr "Kies 'n X-bediener"
msgid "X server"
msgstr "X-bediener"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,44 +71,44 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree-konfigurasie"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,11 +150,58 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
-#: ../../Xconfig/main.pm_.c:60
+#
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Videokaart"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Resolusie"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opsies"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "OK"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -167,33 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generies"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Herroep"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -215,11 +257,11 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
@@ -243,57 +285,42 @@ msgstr "16-miljoen kleure (24 bis)"
msgid "4 billion colors (32 bits)"
msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Resolusies"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Resolusie"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
+#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Kanselleer"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "OK"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Wil u die konfigurasie toets?"
@@ -302,71 +329,71 @@ msgstr "Wil u die konfigurasie toets?"
msgid "Test of the configuration"
msgstr "Toets konfigurasie"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -375,166 +402,183 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Watter tipe is u ISDN-konneksie?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Beginboodskap"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -543,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -551,155 +595,156 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Leл etiket word nie toegelaat nie"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -710,17 +755,17 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -736,15 +781,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -753,55 +798,55 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -810,32 +855,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -843,60 +888,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -905,42 +950,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoпes"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -952,7 +997,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -960,7 +1005,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -970,13 +1015,13 @@ msgstr ""
"wat aan die internet as 'n kliлnt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -990,7 +1035,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliлnte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -999,32 +1044,49 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opsies"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Gebruik sekuriteitsvlak"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1047,13 +1109,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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1062,96 +1124,192 @@ 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Lкer"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Lкer/_Verlaat"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Nuwe monitorkategoriasiestyl"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Nuwe styl monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Tradisionele monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Tradisionele Gtk+ Monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Laai Aurora met herlaaityd"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "LILO/GRUB metode"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot metode"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Installeer stelsel"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Fout"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Geen video"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Kies installasieklas"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1160,42 +1318,69 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Stoor pakketseleksie"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
+#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
+#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
+#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
+#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1240,67 +1425,119 @@ msgstr "Ek kan nie meer partisies byvoeg nie"
msgid "Screenshots will be available after install in %s"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankryk"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgies"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Duitsland"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Grieks"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norweegs"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Sien"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Italiaans"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "seriaal"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Onbekende model"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "nuut"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Bediener"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Hegpunt"
+
+#
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Toets asb. die muis"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Bediener"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Hegpunt:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opsies: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1313,15 +1550,6 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fout"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Assistent"
@@ -1347,7 +1575,7 @@ msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detail"
@@ -1376,13 +1604,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Ander"
@@ -1390,12 +1618,12 @@ msgstr "Ander"
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
@@ -1405,7 +1633,7 @@ msgstr "Tipe"
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Uitwis"
@@ -1413,7 +1641,7 @@ msgstr "Uitwis"
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1421,72 +1649,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Nog"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Alle primкre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1494,35 +1722,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1530,11 +1758,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1542,131 +1770,114 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Hegpunt"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opsies"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Hegpunt:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Terugluslкer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lкerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslкer %s heg?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1674,133 +1885,138 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Waar wil u toestel %s heg?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "FAT lкerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Teruglus lкernaam:"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Lкer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Lкer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1813,7 +2029,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1826,7 +2042,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1836,137 +2052,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslкer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus lкer(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1974,27 +2190,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lкernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2006,7 +2222,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2017,65 +2233,60 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opsies: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2128,23 +2339,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2161,59 +2372,59 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lкergids moet altyd in die wortellкerstelsel bly"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lкerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2221,259 +2432,263 @@ msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lкerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Gebruik outobespeuring"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generies"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Kaartgeheue (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Formatering"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Verander tipe"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Verlaat"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Help"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Help"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Help/_Aangaande..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Kaartgeheue (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Kanselleer"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Beskrywing"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Magtiging"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Selekteer lOer"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Netwerkportaaltoestel"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 knoppies"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Stel muistoestel op"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Wag asb."
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Aftas"
+msgid "Card model :"
+msgstr "Kaartgeheue (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Verander tipe"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatering"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3539,7 +3754,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3547,7 +3762,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3567,20 +3782,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3588,7 +3803,7 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lкer %s"
@@ -3626,7 +3841,7 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
@@ -3805,12 +4020,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3822,12 +4037,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -3837,7 +4052,7 @@ msgstr "Geen sagteskyaandrywer beskikbaar nie"
msgid "Entering step `%s'\n"
msgstr "Gaan stap '%s' binne\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3851,53 +4066,53 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3905,28 +4120,28 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geпnstalleer"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3934,76 +4149,76 @@ msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4018,17 +4233,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf diй CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4202,108 +4417,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Knoppie-emulasie"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Knop-3 emulasie"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4320,7 +4535,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4328,7 +4543,7 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4337,69 +4552,69 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellкerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lкer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Soek vir pakkette om op te gradeer."
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geпnstalleer"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Soek vir pakkette om op te gradeer."
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4407,7 +4622,7 @@ msgid ""
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4415,51 +4630,51 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4478,11 +4693,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4491,21 +4706,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4575,7 +4790,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4587,180 +4802,189 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, 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:923
+#: ../../install_steps_interactive.pm_.c:924
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:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Verwyder Windows(TM)"
+msgid "Windows Domain"
+msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Plaaslike lкers"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS-bediener"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "LDAP-magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS-domein"
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP-bediener"
+msgid "Authentication Windows Domain"
+msgstr "LDAP-magtiging"
#: ../../install_steps_interactive.pm_.c:1142
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domeinnaam"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4787,19 +5011,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4823,7 +5047,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4832,28 +5056,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4861,11 +5085,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4873,15 +5097,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4892,17 +5116,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4912,7 +5136,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4944,15 +5168,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiлle Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4961,15 +5185,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -4996,398 +5220,461 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n lкer"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Vorige"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Teks"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opsies: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Wil u aboot gebruik?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Aktiveer"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniaans"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvies"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serwies (Kirillies)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabel"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viлtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5396,37 +5683,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Sirkulкre heg %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefoonnommer"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formateer partisies"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5531,52 +5818,44 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Vorige"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
@@ -5600,6 +5879,10 @@ msgid "Alcatel speedtouch usb"
msgstr "speedtouch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "gebruik dhcp"
@@ -5627,7 +5910,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5640,7 +5923,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5657,7 +5940,7 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Rekenaarnaam"
@@ -5685,7 +5968,7 @@ msgstr "Watter tipe is u ISDN-konneksie?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5803,43 +6086,43 @@ msgstr "Op watter seriaalpoort is u modem gekoppel?"
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
@@ -5952,13 +6235,13 @@ msgstr "Kies die profiel om te konfigureer"
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
@@ -6071,7 +6354,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6083,7 +6366,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6093,45 +6376,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6143,40 +6426,40 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
@@ -6188,7 +6471,7 @@ msgstr "Internetkonfigurasie"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
@@ -6217,43 +6500,43 @@ msgstr "Konneksiekonfigurasie"
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Voorsiener DNS 2 (opsioneel)"
@@ -6261,28 +6544,28 @@ msgstr "Voorsiener DNS 2 (opsioneel)"
msgid "Choose your country"
msgstr "Kies u land"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Konneksiespoed"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6318,7 +6601,7 @@ msgstr "Korrupte rugsteunlкer"
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6365,7 +6648,7 @@ msgstr "LPD - Lyndrukkerdiensprogram"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6396,7 +6679,7 @@ msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
@@ -6414,7 +6697,7 @@ msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
@@ -6422,113 +6705,113 @@ msgstr "Tik drukkertoestel URI in"
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Verstek)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Hoe is die drukker gekonekteer?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6540,18 +6823,22 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6562,7 +6849,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6572,33 +6859,33 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Poort"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6611,38 +6898,69 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Plaaslike drukker"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
#
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Plaaslike drukker"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6656,54 +6974,51 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Gebruik outobespeuring"
-#
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Eksterne drukkernaam"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Netwerkdrukker (sok)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6711,43 +7026,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
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:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6755,7 +7061,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6763,83 +7069,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6849,28 +7110,48 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s bespeur"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Konneksie word begin..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6883,35 +7164,46 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Gebruik outobespeuring"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Уf die bedienernaam уf die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6935,7 +7227,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6944,7 +7236,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6952,11 +7244,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6969,34 +7261,50 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+msgid ""
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
"drukker voorsien en dalk ook 'n poortnommer voorsien.\n"
@@ -7004,19 +7312,21 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Drukkerbedienernaam"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Drukkerbedienernaam"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7026,11 +7336,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7040,26 +7350,31 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7074,27 +7389,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7103,18 +7418,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7124,12 +7439,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7137,7 +7452,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7150,7 +7465,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7160,22 +7475,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7184,11 +7499,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7196,40 +7511,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7244,7 +7559,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7252,16 +7567,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7270,15 +7585,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7287,7 +7602,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7295,41 +7610,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7339,7 +7654,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7348,46 +7663,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sluit af"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7396,9 +7711,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7409,17 +7724,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7429,51 +7744,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7481,61 +7796,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7543,12 +7858,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7558,7 +7873,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -7566,27 +7881,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranoпes"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7602,12 +7917,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7621,68 +7936,68 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7693,7 +8008,7 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7703,34 +8018,30 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -7739,102 +8050,102 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
@@ -7887,8 +8198,9 @@ msgstr ""
"Los dit oop indien u nie FTP-instaanbediener verlang nie"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Instaanbediener moet begin met ftp://"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
#: ../../proxy.pm_.c:79
msgid ""
@@ -7935,44 +8247,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-" but very sensitive: it must not be used for a machine "
-"connected to others\n"
-" or to the Internet. There is no password access."
-msgstr ""
-"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
-"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
-"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
-"wagwoord\n"
-"toegang nie."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
-"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliлnte\n"
-"af kan aanvaar."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opsies"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -8271,7 +8545,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8392,7 +8666,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
@@ -8492,21 +8766,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8514,174 +8788,174 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Datbasis"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Datbasis"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS-bediener"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS-bediener"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Voeg gebruiker by"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Uitwis"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Selekteer lOer"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Voeg gebruiker by"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "herkonfigureer"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Fout!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Outoinstallasiekonfigurasieprogram"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8696,22 +8970,22 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Outomatiese Stappe Konfigurasie"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Outoinstallasieskyf word geskep."
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8719,12 +8993,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8732,29 +9006,42 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Installasie"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Terugluslкer %s word geformateer"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8762,7 +9049,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8770,34 +9057,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Toetsbladsye"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Korrupte rugsteunlкer"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8805,746 +9156,810 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lкer %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, 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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlкer"
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Oordrag"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
#
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Kliek asb. op 'n partisie"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1868
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Kies die pakkette wat u wil installeer"
+msgid " Erase Now "
+msgstr "Oordrag"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Kliek asb. op 'n partisie"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup_.c:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Stel lкerstelsels op"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlкer"
#
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Teks"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lкer"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Toets asb. die muis"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Stel lкerstelsels op"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9555,7 +9970,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9576,7 +9991,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9585,7 +10000,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9609,7 +10024,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9626,21 +10041,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9654,17 +10069,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9681,7 +10096,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9721,7 +10136,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9732,7 +10147,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9745,7 +10160,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9784,96 +10199,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Beheersentrum"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "verpligtend"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Muis"
#
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Eksterne drukker"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Drukkernaam:"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Drukker"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Netwerkkonfigurasie-assistent"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Magtiging"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Pakketkeuse"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Wag asb."
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9885,308 +10327,308 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Verlaay installasie"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Netwerkkonfigurasie (%d toestelle)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profiel:"
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Vee profiel uit..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profiel om uit te vee..."
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Nuwe profiel..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Bedienernaam:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internettoegang"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipe:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Portaal:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Koppelvlak:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Konfigureer internettoegang..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN-konfigurasie"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Drywer"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Koppelvlak"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Toestand"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Stel plaaslike netwerk op..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Assistent..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Pas toe"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Wag asb... Konfigurasie word toegpas"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Gekonnekteer"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Konnekteer..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Diskonnekteer..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN konfigurasie"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Toestel %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Herlaaiprotokol"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP-kliлnt"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Aktiveer nou dadelik"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "deaktiveer nou dadelik"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Konneksietipe:"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameters"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Portaal"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernetkaart"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "gebruik: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulenaam"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Grootte"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "herlaaiskyfskepping"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "verstek"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy Fout: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "bedryfstelselkernweergawe"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Algemeen"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Kundige area"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opsionele parameters"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Voeg module by"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "forseer"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "indien nodig"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "laat SCSI-modules weg"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "laat RAID-modules weg"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Verwyder module"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Uitset"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Bou die skyf"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10195,12 +10637,12 @@ msgstr ""
"Daar is geen medium for toestel %s nie.\n"
"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10211,105 +10653,105 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s is nie gevind nie"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Klaar"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "beperk"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10318,123 +10760,128 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Deпnstallasie van RPMs"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Hegpunt"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Drukker"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Selekteer lOer"
#
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Verwyder drukker"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Beginboodskap"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Installasie"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10446,31 +10893,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10482,19 +10929,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10511,21 +10958,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10533,12 +10980,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10553,19 +11000,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10575,17 +11022,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10596,7 +11043,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10608,33 +11055,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10642,44 +11089,44 @@ msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10689,20 +11136,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Beheersentrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Kies die instrument wat u wil gebruik"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10711,108 +11151,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Frankryk"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Yslandies"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "seriaal"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -10836,11 +11280,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
"Wil u hк dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
@@ -10866,7 +11310,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr ""
@@ -10976,24 +11420,24 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -11002,127 +11446,128 @@ msgstr ""
"Hier kan u die HTTP en FTP-instaanbedieners\n"
"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domeinnaam"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix e-posbediener, Inn netnuusbediener"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Dienste"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Drukkerbediener"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Formatering"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Probeer asb. weer"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "Geen 'serial_usb' gevind nie\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Drukkerdata word gelees..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Toestel word afgetas..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Toets poorte"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Selekteer 'n videokaart"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Herlaaitoestel"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11130,7 +11575,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11150,15 +11595,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Vuurmuurkonfigurasie"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Vuurmuurkonfigurasie"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11166,7 +11611,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11365,56 +11810,60 @@ msgstr "Kan nie %s oopmaak nie: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Vuurmuurkonfigurasie"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Wag asb. installasie word voorberei"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11465,6 +11914,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
@@ -11553,10 +12006,6 @@ msgid "Office Workstation"
msgstr "Kantoorwerkstasie"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Bediener"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
@@ -11622,6 +12071,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Kliлntprogramme vir 'n verkeidenheid protokolle insluitende SSH"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetpoort"
@@ -11655,6 +12108,111 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid ""
+#~ "This level is to be used with care. It makes your system more easy to "
+#~ "use,\n"
+#~ " but very sensitive: it must not be used for a machine "
+#~ "connected to others\n"
+#~ " or to the Internet. There is no password access."
+#~ msgstr ""
+#~ "Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+#~ "om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n "
+#~ "rekenaar\n"
+#~ "wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+#~ "wagwoord\n"
+#~ "toegang nie."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik "
+#~ "word.\n"
+#~ "Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie "
+#~ "kliлnte\n"
+#~ "af kan aanvaar."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opsies"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Sekuriteit"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Wat is u sleutelborduitleg?"
+
+#
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Toets asb. die muis"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Kies die pakkette wat u wil installeer"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Instaanbediener moet begin met ftp://"
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Kies die pakkette wat u wil installeer"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Verwyder Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Tabel"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP-bediener"
+
+#
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Eksterne drukkernaam"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Installeer pakket %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Installeer pakket %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Installeer pakket %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Drukkerdata word gelees..."
+
+#~ msgid "Control Center"
+#~ msgstr "Beheersentrum"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Kies die instrument wat u wil gebruik"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "Geen 'serial_usb' gevind nie\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck het gefaal met kode %d of sein %d"
@@ -11722,9 +12280,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Setting security level"
#~ msgstr "Sekuriteitsvlak word gestel."
-#~ msgid "Graphics card"
-#~ msgstr "Videokaart"
-
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
@@ -11803,6 +12358,3 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Percentage of packages to install"
#~ msgstr "Persentasie pakkette om te installeer"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Gebruik sekuriteitsvlak"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 8f5d7ac41..b6e81d45d 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -58,11 +58,11 @@ msgstr "ШҐШ®ШЄШ± Ш®Ш§ШЇЩ… X"
msgid "X server"
msgstr "Ш®Ш§ШЇЩ… X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "ШҐШ№ШЇШ§ШЇ Щ…ШЄШ№ШЇШЇ Ш§Щ„Ш±Ш¤Щ€Ші"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,44 +70,44 @@ msgstr ""
"Щ†ШёШ§Щ…Щѓ ЩЉШЇШ№Щ… Ш§Щ„ШҐШ№ШЇШ§ШЇ Щ…ШЄШ№ШЇШЇ Ш§Щ„Ш±Ш¤Щ€Ші.\n"
"Щ…Ш§Ш°Ш§ ШЄШ±ЩЉШЇ ШЈЩ† ШЄЩЃШ№Щ„Шџ"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "ШҐШ®ШЄШ± Ш­Ш¬Щ… Ш°Ш§ЩѓШ±Ш© ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "ШҐШ№ШЇШ§ШЇ XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "ШЈЩЉ Ш§Ш№ШЇШ§ШЇ Щ„ЩЂXFree ШЄШ±ЩЉШЇШџ"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Ш§Ш№ШЇШ§ШЇ ЩѓЩ„ Ш§Щ„Ш±Ш¤Щ€Ші ШЁШґЩѓЩ„ Щ…ШіШЄЩ‚Щ„"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Ш§ШіШЄШ®ШЇШ§Щ… Ш§Щ…ШЄШЇШ§ШЇ Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Щ‚Щ… ШЁШҐШ№ШЇШ§ШЇ Ш§Щ„ШЁШ·Ш§Щ‚Ш© \"%s\" ЩЃЩ‚Ш· (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s Щ…Ш№ ШЄШіШ±ЩЉШ№ Ш«Щ„Ш§Ш«ЩЉ Ш§Щ„ШЈШЁШ№Ш§ШЇ"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "ЩЉЩ…ЩѓЩ† Щ„ШЁШ·Ш§Щ‚ШЄЩѓ Ш§Щ„Ш­ШµЩ€Щ„ Ш№Щ„Щ‰ ШЇШ№Щ… Щ„Щ„ШЄШіШ±ЩЉШ№ Ш«Щ„Ш§Ш«ЩЉ Ш§Щ„ШЈШЁШ№Ш§ШЇ Щ…Ш№ XFree %s"
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s Щ…Ш№ ШЇШ№Щ… ШЄШ¬Ш±ЩЉШЁЩЉ Щ„Щ„Ш±ШіЩ€Щ… Ш«Щ„Ш§Ш«ЩЉШ© Ш§Щ„ШЈШЁШ№Ш§ШЇ"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,11 +148,57 @@ msgstr ""
"ЩЉЩ…ЩѓЩ† Щ„ШЁШ·Ш§Щ‚ШЄЩѓ Ш§Щ„ШЄЩ…ШЄШ№ ШЁШЇШ№Щ… Щ„Щ„Ш±ШіЩ€Щ… Ш«Щ„Ш§Ш«ЩЉШ© Ш§Щ„ШЈШЁШ№Ш§ШЇ Щ…Ш№ XFree %s, \n"
"Щ„Ш§Ш­Шё ШЈЩ† Щ‡Ш°Ш§ Ш§Щ„ШЇШ№Щ… ШЄШ¬Ш±ЩЉШЁЩЉ Щ€ Щ‚ШЇ ЩЉШЄШіШЁШЁ ЩЃЩЉ Ш§ЩЉЩ‚Ш§ЩЃ Ш¬Щ‡Ш§ШІЩѓ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Щ…ШґШєЩ„ Ш№Ш±Ш¶ Ш§Щ„ШЄШ«ШЁЩЉШЄ)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Щ…Ш®ШµШµ"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Ш§Щ„ШґШ§ШґШ©"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Щ…Щ€Ш§ЩЃЩ‚"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Ш®Ш±Щ€Ш¬"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -165,32 +211,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "ШҐШ®ШЄШ± ШґШ§ШґШ©"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Ш§Щ„ШґШ§ШґШ©"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Щ…Ш®ШµШµ"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generic"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "ШЄШ±Ш§Ш¬Ш№"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -211,11 +253,11 @@ msgstr ""
"ШЈЩѓШЁШ± Щ…Щ† Щ…Щ‚ШЇШ±Ш© ШґШ§ШґШЄЩѓ Щ„ШЈЩ†Щѓ ШЁЩ‡Ш°Ш§ Щ‚ШЇ ШЄШЇЩ…Ш± ШґШ§ШґШЄЩѓ.\n"
" Ш§Ш°Ш§ Щ„Щ… ШЄЩѓЩ† Щ…ШЄШЈЩѓШЇШ§ ЩЉЩ…ЩѓЩ†Щѓ Ш§Ш®ШЄЩЉШ§Ш± Ш§Ш№ШЇШ§ШЇШ§ШЄ Ш№Ш§ШЇЩЉШ©."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Щ†ШіШЁШ© Ш§Щ„ШҐЩ†Ш№Ш§Шґ Ш§Щ„ШЈЩЃЩ‚ЩЉ"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Щ†ШіШЁШ© Ш§Щ„ШҐЩ†Ш№Ш§Шґ Ш§Щ„Ш±ШЈШіЩЉ"
@@ -239,57 +281,42 @@ msgstr "16 Щ…Щ„ЩЉЩ€Щ† Щ„Щ€Щ† (24 ШЁШЄ)"
msgid "4 billion colors (32 bits)"
msgstr "4 ШЁЩ„ЩЉЩ€Щ† Щ„Щ€Щ† (32 ШЁШЄ)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Ш§Ш®ШЄШ± ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶ Щ€ Ш№Щ…Щ‚ Ш§Щ„ШЈЩ„Щ€Ш§Щ…"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
+#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Ш§Щ„ШєШ§ШЎ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Щ…Щ€Ш§ЩЃЩ‚"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ¬Ш±ШЁШ© Ш§Щ„ШҐШ№ШЇШ§ШЇШџ"
@@ -298,71 +325,71 @@ msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ¬Ш±ШЁШ© Ш§Щ„ШҐШ№ШЇШ§ШЇШџ"
msgid "Test of the configuration"
msgstr "Ш§Ш®ШЄШЁШ§Ш± Ш§Щ„ШҐШ№ШЇШ§ШЇ"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Щ†Щ€Ш№ Ш§Щ„ЩЃШЈШ±Ш©: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ш¬Щ‡Ш§ШІ Ш§Щ„ЩЃШЈШ±Ш©: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Ш§Щ„ШґШ§ШґШ©: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "ШЄШІШ§Щ…Щ† Ш§Щ„ШґШ§ШґШ© Ш§Щ„ШЈЩЃЩ‚ЩЉ: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ш§Щ†Ш№Ш§Шґ Ш§Щ„ШґШ§ШґШ© Ш§Щ„Ш±ШЈШіЩЉ: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Ш°Ш§ЩѓШ±Ш© ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©: %s ЩѓЩЉЩ„Щ€ШЁШ§ЩЉШЄ\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Ш№Щ…Щ‚ Ш§Щ„ШЈЩ„Щ€Ш§Щ†: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "ШЇЩ‚Ш© Ш§Щ„Ш№Ш±Ш¶: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Ш®Ш§ШЇЩ… XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Щ…ШґШєЩ„ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Щ€Ш§Ш¬Щ‡Ш© Ш±ШіЩ€Щ…ЩЉШ© Ш№Щ†ШЇ ШЁШЇШЎ Ш§Щ„ШЄШґШєЩЉЩ„"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -371,165 +398,181 @@ msgstr ""
"ЩЉЩ…ЩѓЩ†Щ†ЩЉ Ш¬Ш№Щ„ Ш¬Щ‡Ш§ШІЩѓ ЩЉШЁШЇШЈ X ШЁШґЩѓЩ„ ШўЩ„ЩЉ ШЁШ№ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№.\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ X ШЈЩ† ШЁЩЉШЇШЈ ШЁШ№ШЇ ШҐШ№Ш§ШЇШ© ШЄШґШєЩЉЩ„ Ш¬Щ‡Ш§ШІЩѓШџ"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr ""
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Ш§Щ„Щ‚Ш·Ш§Ш№ Ш§Щ€Щ„ Щ…Щ† ШЄШ¬ШІШ¦Ш© Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Ш§Щ„Щ‚Ш·Ш§Ш№ Ш§Щ„ШЈЩ€Щ„ Щ…Щ† Ш§Щ„Щ‚Ш±Шµ (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "ШЄШ«ШЁЩЉШЄ SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "ШЈЩЉЩ† ШЄШ±ЩЉШЇ ШЄШ«ШЁЩЉШЄ Щ…Ш­Щ…Щ‘Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№Шџ"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "ШЄШ«ШЁЩЉШЄ LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO Щ…Ш№ Щ‚Ш§Ш¦Щ…Ш© Щ†ШµЩЉШ©"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO Щ…Ш№ Щ‚Ш§Ш¦Щ…Ш© Ш±ШіЩ€Щ…ЩЉШ©"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ш§Щ„ШҐЩ‚Щ„Ш§Ш№ Щ…Щ† DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ Щ…Ш­Щ…Щ‘Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№ Ш§Щ„Ш±Ш¦ЩЉШіЩЉШ©"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Щ…Ш­Щ…Щ‘Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№ Ш§Щ„Щ…ЩЏШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "ШЄШ«ШЁЩЉШЄ Щ…Ш­Щ…Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ш¬Щ‡Ш§ШІ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (Щ„Ш§ ЩЉШ№Щ…Щ„ Щ…Ш№ ШЈЩ†ШёЩ…Ш© Ш§Щ„ЩЂBIOS Ш§Щ„Щ‚ШЇЩЉЩ…Ш©)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Щ…ШЇЩ…Ш¬"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "Щ…ШЇЩ…Ш¬"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Щ€Ш¶Ш№ЩЉШ© Ш§Щ„ЩЃЩЉШЇЩЉШ©"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "ШЄЩ€Щ‚ЩЉШЄ Щ…Ш§ Щ‚ШЁЩ„ Ш§Щ‚Щ„Ш§Ш№ Ш§Щ„ШµЩ€Ш±Ш© Ш§Щ„Ш§ЩЃШЄШ±Ш§Ш¶ЩЉШ©"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± (Ш«Ш§Щ†ЩЉШ©)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "ШЄШґШЇЩЉШЇ Ш®ЩЉШ§Ш±Ш§ШЄ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "ШЄШґШЇЩЉШЇ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Щ‚Щ… ШЁШЄЩ†ШёЩЉЩЃ /tmp Ш№Щ†ШЇ ЩѓЩ„ ШҐЩ‚Щ„Ш§Ш№"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ш­Ш¬Щ… Ш§Щ„Ш°Ш§ЩѓШ±Ш© Ш§Щ„ШЇЩ‚ЩЉЩ‚ Ш№Щ†ШЇ Ш§Щ„Ш­Ш§Ш¬Ш© )ШЄЩ… Ш§ЩЉШ¬Ш§ШЇ %d Щ…ЩЉШєШ§ШЁШ§ЩЉШЄ("
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "ШЄЩ…ЩѓЩЉЩ† Ш§Щ„ШЄШґЩѓЩЉЩ„Ш§ШЄ Ш§Щ„Щ…ШЄШ№ШЇШЇШ©"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Ш§ЩѓШЄШЁ Ш­Ш¬Щ… Ш§Щ„Ш°Ш§ЩѓШ±Ш© ШЁШ§Щ„Щ…ЩЉШєШ§ШЁШ§ЩЉШЄ"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Ш®ЩЉШ§Ш± ``ШЄШґШЇЩЉШЇ Ш®ЩЉШ§Ш±Ш§ШЄ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±`` ШЁШЇЩ€Щ† Щ‚Ш§Ш¦ШЇШ© Щ…Щ† ШЇЩ€Щ† ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш±"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Ш±Ш¬Ш§ШЎ Ш¬Ш§Щ€Щ„ Щ…Ш±Ш© ШЈШ®Ш±Щ‰"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "ЩѓЩ„Щ…Ш§ШЄ Ш§Щ„Щ…Ш±Щ€Ш± ШєЩЉШ± Щ…ШЄШ·Ш§ШЁЩ‚Ш©"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Ш±ШіШ§Щ„Ш© Init"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Ш§Щ„Щ€Щ‚ШЄ Ш§Щ„ШЈЩ‚ШµЩ‰ Щ„ШҐЩ‚Щ„Ш§Ш№ Ш§Щ„Щ†Щ€Ш§Ш©"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "ШЄЩ…ЩѓЩЉЩ† Ш§Щ„ШҐЩ‚Щ„Ш§Ш№ Щ…Щ† Ш§Щ„Щ‚Ш±Шµ Ш§Щ„Щ…ШЇЩ…Ш¬Шџ"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "ШЄЩ…ЩѓЩЉЩ† Ш§Щ‚Щ„Ш§Ш№ OFШџ"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Щ†ШёШ§Щ… Ш§Щ„ШЄШґШєЩЉЩ„ Ш§Щ„Ш§ЩЃШЄШ±Ш§Ш¶ЩЉШџ"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -538,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -546,154 +589,155 @@ msgstr ""
"Щ‡Ш§ Щ‡Щ†Ш§ Ш§Щ„Щ…ШЇШ®Щ„Ш§ШЄ Ш§Щ„Щ…Ш®ШЄЩ„ЩЃШ©.\n"
"ЩЉЩ…ЩѓЩ†Щѓ Ш§Ш¶Ш§ЩЃШ© Щ…ШЇШ®Щ„Ш§ШЄ ШЈШ®Ш±Щ‰ ШЈЩ€ ШЄШєЩЉЩЉШ± Ш§Щ„Щ…Щ€Ш¬Щ€ШЇЩЉЩ†."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ш§Ш¶Ш§ЩЃШ©"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Ш§Щ†ШЄЩ‡Щ‰"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "ШЄШ№ШЇЩЉЩ„"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Щ…Ш§ Щ†Щ€Ш№ Ш§Щ„Щ…ШЇШ®Щ„ Ш§Щ„Ш°ЩЉ ШЄШ±ЩЉШЇ Ш§Ш¶Ш§ЩЃШЄЩ‡Шџ"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Щ„ЩЉЩ†ЩѓШі"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Щ†ШёШ§Щ… ШўШ®Ш± (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Щ†ШёШ§Щ… ШўШ®Ш± (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Щ†ШёШ§Щ… ШўШ®Ш± (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "ШµЩ€Ш±Ш©"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Ш§Щ„Ш¬Ш°Ш±"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Ш§Щ„Ш­Ш§Щ‚"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Щ„Щ„Щ‚Ш±Ш§ШЎШ© Щ€ Ш§Щ„ЩѓШЄШ§ШЁШ©"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Ш§Щ„Ш¬ШЇЩ€Щ„"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "ШєЩЉШ± ШўЩ…Щ†"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Ш№Щ†Щ€Ш§Щ†"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ш§Щ„ШҐЩЃШЄШ±Ш§Ш¶ЩЉ"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Ш­Ш¬Щ… Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Щ„Ш§ ЩЃЩЉШЇЩЉЩ€"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ…ШЇШ®Щ„"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "ШєЩЉШ± Щ…ШіЩ…Щ€Ш­ ШЁШ§Щ„Ш№Щ„Ш§Щ…Ш§ШЄ Ш§Щ„ЩЃШ§Ш±ШєШ©"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "ЩЉШ¬ШЁ ШЈЩ† ШЄШ­ШЇШЇ ШµЩ€Ш±Ш© Ш§Щ„Щ†Щ€Ш§Ш©"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "ЩЉШ¬ШЁ Ш№Щ„ЩЉЩѓ ШЄШ­ШЇЩЉШЇ ШЄЩ‚ШіЩЉЩ… Ш¬Ш°Ш±"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Щ‡Ш°Щ‡ Ш§Щ„Ш№Щ„Ш§Щ…Ш© Щ…ШіШЄШ®ШЇЩ…Ш© Щ…ШіШЁЩ‚Ш§"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "ШЄЩ… Ш§ЩЉШ¬Ш§ШЇ %s %s Щ€Ш§Ш¬Щ‡Ш§ШЄ"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Щ‡Щ„ Ш№Щ†ШЇЩѓ Щ€Ш§Ш­ШЇШ© ШЈШ®Ш±Щ‰Шџ"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Щ‡Щ„ Щ„ШЇЩЉЩѓ ШЈЩЉ Щ€Ш§Ш¬Щ‡Ш§ШЄ %sШџ"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Щ„Ш§"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Щ†Ш№Щ…"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ш¬Ш§Ш±ЩЉ ШЄШ«ШЁЩЉШЄ Щ…ШґШєЩ„ %s Щ„Щ„ШЁШ·Ш§Щ‚Ш© %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(Ш§Щ„Щ€Ш­ШЇШ© %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -704,17 +748,17 @@ msgstr ""
"Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ ЩЃЩЉ Щ‡ЩЉШ¦Ш© ``name=value name2=value2 ...'' \n"
"Щ…Ш«Щ„Ш§, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ Ш§Щ„Щ€Ш­ШЇШ©:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "ШЈЩЉ Щ…ШґШєЩ„ %s ЩЉШ¬ШЁ ШЈЩ† Ш§ШіШЄШ®ШЇЩ…Щ‡Шџ"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -732,15 +776,15 @@ msgstr ""
"Щ„ЩѓЩ†\n"
"Щ„Ш§ ЩЉШ¬ШЁ ШЈЩ† ЩЉШЄШіШЁШЁ Ш°Щ„Щѓ ЩЃЩЉ ШЈЩЉ Щ…ШґШ§ЩѓЩ„."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Ш­ШЇШЇ Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -749,54 +793,54 @@ msgstr ""
"ЩЃШґЩ„ ШЄШ­Щ…ЩЉЩ„ Ш§Щ„Щ€Ш­ШЇШ© %s.\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§Щ„Щ…Ш­Ш§Щ€Щ„Ш© Ш«Ш§Щ†ЩЉШ© ШЁЩ…Ш№Ш§Щ…Щ„Ш§ШЄ ШЈШ®Ш±Щ‰Шџ"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ ШЁШ±Ш§Щ…Ш¬ X"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ ШЈШЇЩ€Ш§ШЄ rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "Ш§ШіЩ…Ш­ ШЁЩЂ\"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ Щ…Щ„ЩЃШ§ШЄ Ш§Щ„ШҐШЇШ§Ш±Ш©"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ШЄЩ… Ш§Ш¶Ш§ЩЃШ© %s Щ…ШіШЁЩ‚Ш§)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Щ‡Ш°Щ‡ ШЁШіЩЉШ·Ш© Ш¬ШЇШ§"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Ш±Ш¬Ш§ШЎЩ‹ Щ‚Щ… ШЁШҐШ№Ш·Ш§ШЎ Ш§ШіЩ… Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ… ЩЉШ¬ШЁ ШЈЩ† ЩЉШ­ШЄЩ€ЩЉ ЩЃЩ‚Ш· Ш№Щ„Щ‰ Ш§Щ„Ш­Ш±Щ€ЩЃ Ш§Щ„ШµШєЩЉШ±Ш©, Ш§Щ„ШЈШ±Щ‚Ш§Щ…, `-' Щ€ `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Щ…ЩЏШ¶Ш§ЩЃ Щ…ШіШЁЩ‚Ш§"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Щ…ЩЏШ¶Ш§ЩЃ Щ…ШіШЁЩ‚Ш§"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Ш§Ш¶ЩЃ Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -805,32 +849,32 @@ msgstr ""
"ШЈШЇШ®Щ„ Щ…ШіШЄШ®ШЇЩ…\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Щ€Ш§ЩЃЩ‚ Ш№Щ„Щ‰ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Ш§Щ„Ш§ШіЩ… Ш§Щ„Ш­Щ‚ЩЉЩ‚ЩЉ"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Ш§Щ„ШєЩ„Ш§ЩЃ"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "ШЈЩЉЩ‚Щ€Щ†Ш©"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "ШЇШ®Щ€Щ„ ШўЩ„ЩЉ"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -838,54 +882,54 @@ msgstr ""
"ЩЉЩ…ЩѓЩ†Щ†ЩЉ Ш§Ш№ШЇШ§ШЇ Ш¬Щ‡Ш§ШІЩѓ Щ„ШЄШіШ¬ЩЉЩ„ Ш§Щ„ШЇШ®Щ€Щ„ ШўЩ„ЩЉЩ„ Щ„Щ…ШіШЄШ®ШЇЩ… Щ…Ш§.\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ… Щ‡Ш°Щ‡ Ш§Щ„Щ…ЩЉШІШ©Шџ"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Ш§Ш®ШЄШ± Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Ш§Щ„Ш§ЩЃШЄШ±Ш§Ш¶ЩЉ:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Ш§Ш®ШЄШ± Щ…ШЇЩЉШ± Ш§Щ„Щ†Щ€Ш§ЩЃШ° Ш§Щ„Ш°ЩЉ ШіЩЉШЄЩ… ШЄШґШєЩЉЩ„Щ‡:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ„ШєШ© Ш§Щ„Ш§ШіШЄШ®ШЇШ§Щ…."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Ш§Щ„ЩѓЩ„"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Ш§ШіЩ…Ш­ Щ„ЩѓЩ„ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ†"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Щ„Ш§ Щ…ШґШ§Ш±ЩѓШ©"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© %s ЩЉШ¬ШЁ ШЈЩ† ШЄЩЏШ«ШЁЩ‘ШЄ. Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ«ШЁЩЉШЄЩ‡Ш§Шџ"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "ЩЉЩ…ЩѓЩ†Щѓ Ш§Щ„ШЄШµШЇЩЉШ± ШЁШ§ШіШЄШ®ШЇШ§Щ… NFS ШЈЩ€ Samba. ШЈЩЉ Щ…Щ†Щ‡Щ…Ш§ ШЄШ±ЩЉШЇ"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© Ш§Щ„Ш¶Ш±Щ€Ш±ЩЉШ© %s Щ…ЩЃЩ‚Щ€ШЇШ©"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -894,11 +938,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "ШґШєЩ‘Щ„ userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -906,56 +950,56 @@ msgstr ""
"Ш§Щ„Щ…ШґШ§Ш±ЩѓШ© Щ„ЩѓЩ„ Щ…ШіШЄШ®ШЇЩ… ШЄШіШЄШ®ШЇЩ… Ш§Щ„Щ…Ш¬Щ…Щ€Ш№Ш© \"fileshare\".\n"
"ЩЉЩ…ЩѓЩ†Щѓ ШЈЩ† ШЄШіШЄШ®ШЇЩ… userdrake Щ„ШҐШ¶Ш§ЩЃШ© Щ…ШіШЄШ®ШЇЩ… ЩЃЩЉ Щ‡Ш°Щ‡ Ш§Щ„Щ…Ш¬Щ…Щ€Ш№Ш©."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Щ…Ш±Ш­ШЁШ§ ШЁШ§Щ„Щ…Ш®ШЄШ±Щ‚ЩЉЩ†"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "ЩЃЩ‚ЩЉШ±"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ш§Щ„Щ‚ЩЉШ§ШіЩЉ"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Щ…Ш±ШЄЩЃШ№"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Щ…Ш±ШЄЩЃШ№ ШЈЩѓШ«Ш±"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Щ…Ш±ШЄЩЃШ№ Ш¬ШЇШ§"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -965,31 +1009,48 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
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:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЄШ§Ш±ЩЉШ® Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "ШҐШіШЄШ®ШЇЩ… libsafe Щ„Щ„Щ…Щ„Щ‚Щ…Ш§ШЄ"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1006,109 +1067,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "ШіШ·Ш­ Ш§Щ„Щ…ЩѓШЄШЁ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "ЩЉЩ…ЩѓЩ†Щѓ ШЄШ«ШЁЩЉШЄ Щ…Ш­Щ…Щ‘Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№ Ш№Щ„Щ‰ Ш§Щ„ШЄШ¬ШІШ¦Ш© %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "Щ„Ш§ ШЄЩ€Ш¬ШЇ Щ…ШіШ§Ш№ШЇШ© Щ„Щ‡Ш°Ш§ Ш­ШЄЩ‰ Ш§Щ„ШўЩ†.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Ш§Ш№ШЇШ§ШЇ ШЈШіЩ„Щ€ШЁ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Щ…Щ„ЩЃ"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Щ…Щ„ЩЃ/_Ш®Ш±Щ€Ш¬"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<ШЄШ­ЩѓЩ…>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "ШґШ§ШґШ© NewStyle Ш§Щ„ШЄШµЩ†ЩЉЩЃЩЉШ©"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "ШґШ§ШґШ© NewStyle"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "ШґШ§ШґШ© ШЄЩ‚Щ„ЩЉШЇЩЉШ©"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "ШґШ§ШґШ© Gtk+ Ш§Щ„ШЄЩ‚Щ„ЩЉШЇЩЉШ©"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "ШґШєЩ‘Щ„ Aurora Ш№Щ†ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Щ€Ш¶Ш№ Lilo/grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Щ€Ш¶Ш№ Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "ШЄШ«ШЁЩЉШЄ Ш§Щ„Щ†ШёШ§Щ…"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Ш®Ш·ШЈ"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Ш¬Ш§Ш±ЩЉ Щ†ШіШ® %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Щ„Ш§ ЩЃЩЉШЇЩЉЩ€"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Ш§Ш®ШЄШ± Щ†Щ€Ш№ Ш§Щ„ШЄШ«ШЁЩЉШЄ"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1117,42 +1274,68 @@ msgstr ""
"ШЈЩ†ШЄ ШЄШіШЄШ®ШЇЩ… %s ЩѓЩ…ШЇЩЉШ± Ш§Щ‚Щ„Ш§Ш№ Ш­Ш§Щ„ЩЉШ§.\n"
"Ш§Ш¶ШєШ· Ш№Щ„Щ‰ ШЄЩ‡ЩЉШ¦Ш© Щ„ШЄШґШєЩЉЩ„ Щ…Ш№Ш§Щ„Ш¬ Ш§Щ„ШҐШ№ШЇШ§ШЇ"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "ШҐШ№ШЇШ§ШЇ"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr ""
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Щ€Ш¶Ш№ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "ШґШєЩ‘Щ„ X-Window Ш№Щ†ШЇ ШЁШЇШЎ Ш§Щ„ШЄШґШєЩЉЩ„"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Щ„Ш§, Щ„Ш§ ШЈШ±ЩЉШЇ ШЇШ®Щ€Щ„Ш§ ШЈЩ„ЩЉШ§"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Щ†Ш№Щ…, ШЈШ±ЩЉШЇ ШЇШ®Щ€Щ„Ш§ ШўЩ„ЩЉШ§ Щ…Ш№ Щ‡Ш°Ш§ )Ш§Щ„Щ…ШіШЄШ®ШЇЩ…, ШіШ·Ш­ Ш§Щ„Щ…ЩѓШЄШЁ("
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
+#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
+#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
+#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
+#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
msgid "OK"
msgstr "Щ…Щ€Ш§ЩЃЩ‚"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Щ„Щ… ЩЉЩ…ЩѓЩ† ЩЃШЄШ­ /etc/inittab Щ„Щ„Щ‚Ш±Ш§ШЎШ©: %s"
@@ -1196,61 +1379,112 @@ msgstr "Щ„Ш§ ЩЉЩ…ЩѓЩ†Щ†ЩЉ ШєЩ…Щ„ Щ„Щ‚Ш·Ш§ШЄ Щ„Щ„ШґШ§ШґШ© Щ‚ШЁЩ„ Ш§Щ„ШЄШ¬ШІШ¦Ш©"
msgid "Screenshots will be available after install in %s"
msgstr "ШіШЄЩѓЩ€Щ† Щ„Щ‚Ш·Ш§ШЄ Ш§Щ„ШґШ§ШґШ© Щ…Щ€Ш¬Щ€ШЇШ© ШЁШ№ШЇ Ш§Щ„ШЄШ«ШЁЩЉШЄ ЩЃЩЉ %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "ЩЃШ±Щ†ШіШ§"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "ЩѓЩ€ШіШЄШ§Ш±ЩЉЩѓШ§"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "ШЁЩ„Ш¬ЩЉЩѓШ§"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Ш¬Щ…Щ‡Щ€Ш±ЩЉШ© Ш§Щ„ШЄШґЩЉЩѓ"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "ШЈЩ„Щ…Ш§Щ†ЩЉШ§"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Ш§Щ„ЩЉЩ€Щ†Ш§Щ†"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Ш§Щ„Щ†Ш±Щ€ЩЉШ¬"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Ш§Щ„ШіЩ€ЩЉШЇ"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Щ‡Щ€Щ„Щ†ШЇШ§"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "ШҐЩЉШ·Ш§Щ„ЩЉШ§"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Ш§Щ„Щ†Щ…ШіШ§"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Ш§Щ„Щ€Щ„Ш§ЩЉШ§ШЄ Ш§Щ„Щ…ШЄШ­ШЇШ©"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "ШєЩЉШ± Щ…Ш№Ш±Щ€ЩЃ"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "Ш¬ШЇЩЉШЇ"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Ш®Ш§ШЇЩ…"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Ш±Ш¬Ш§ШЎ ШЈШЇШ®Щ„ ШіШ±Ш№Ш© ШіЩ€Ш§Щ‚Ш© ЩѓШЄШ§ШЁШ© Ш§Щ„ШЈЩ‚Ш±Ш§Шµ"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Ш®Ш§ШЇЩ…"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Ш±Ш¬Ш§ШЎ Щ‚Щ… ШЁШ№Щ…Щ„ Щ†ШіШ®Ш© Ш§Ш­ШЄЩЉШ§Ш·ЩЉШ© Щ…Щ† ШЁЩЉШ§Щ†Ш§ШЄЩѓ ШЈЩ€Щ„Ш§"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Ш§Щ‚Ш±ШЈ Ш¬ЩЉШЇШ§!"
@@ -1263,15 +1497,6 @@ msgstr ""
"Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ… aboot, ЩЃЩ„Ш§ ШЄЩ†ШіЩ‰ ШЈЩ† ШЄШЄШ±Щѓ Щ…ШіШ§Ш­Ш© ЩЃШ§Ш±ШєШ© ЩЃЩЉ\n"
"ШЁШЇШ§ЩЉШ© Ш§Щ„Щ‚Ш±Шµ (2048 Щ‚Ш·Ш§Ш№Ш§ШЄ ЩѓШ§ЩЃЩЉШ©)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ш®Ш·ШЈ"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Ш§Щ„Щ…Ш№Ш§Щ„Ш¬"
@@ -1297,7 +1522,7 @@ msgid "Please click on a partition"
msgstr "ЩЃШ¶Щ„Ш§ Ш§Ш¶ШєШ· Ш№Щ„Щ‰ ШЄШ¬ШІШ¦Ш©"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "ШЄЩЃШ§ШµЩЉЩ„"
@@ -1325,13 +1550,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ш§Щ„ШЄШЁШЇЩЉЩ„"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "ЩЃШ§Ш±Шє"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "ШЈШ®Ш±Щ‰"
@@ -1339,12 +1564,12 @@ msgstr "ШЈШ®Ш±Щ‰"
msgid "Filesystem types:"
msgstr "ШЈЩ†Щ€Ш§Ш№ ШЈЩ†ШёЩ…Ш© Ш§Щ„Щ…Щ„ЩЃШ§ШЄ:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Ш№Щ…Щ„ ШЄШ¬ШІШ¦Ш©"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ш§Щ„Щ†Щ€Ш№"
@@ -1354,7 +1579,7 @@ msgstr "Ш§Щ„Щ†Щ€Ш№"
msgid "Use ``%s'' instead"
msgstr "Ш§ШіШЄШ®ШЇЩ… ``%s'' ШЁШЇЩ„Ш§ Щ…Щ† Ш°Щ„Щѓ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "ШҐЩ„ШєШ§ШЎ"
@@ -1362,108 +1587,108 @@ msgstr "ШҐЩ„ШєШ§ШЎ"
msgid "Use ``Unmount'' first"
msgstr "Ш§ШіШЄШ®ШЇЩ… ``Ш§ШІШ§Щ„Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ'' ШЈЩ€Щ„Ш§"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "ШЁШ№ШЇ ШЄШєЩЉЩЉШ± Щ†Щ€Ш№ Ш§Щ„ШЄШ¬ШІШ¦Ш© %s, ЩЃШҐЩ†Щѓ ШіШЄШіШ®Ш± ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш№Щ„Щ‰ Ш§Щ„ШЄШ¬ШІШ¦Ш©"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "ШҐШ®ШЄШ± ШЄШ¬ШІШ¦Ш©"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "ШҐШ®ШЄШ± ШґШ§ШґШ©"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Ш®Ш±Щ€Ш¬"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Ш§Щ„Щ†ШЄЩ‚Ш§Щ„ Ш§Щ„Щ‰ Щ€Ш¶Ш№ЩЉШ© Ш§Щ„Ш®ШЁЩЉШ±"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ш§Щ„Ш§Щ†ШЄЩ‚Ш§Щ„ Ш§Щ„Щ‰ Ш§Щ„Щ€Ш¶Ш№ Ш§Щ„Ш№Ш§ШЇЩЉ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "ШЄШ±Ш§Ш¬Ш№"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§Щ„Ш§ЩѓЩ…Ш§Щ„ Ш№Щ„Щ‰ ШЈЩЉ Ш­Ш§Щ„Шџ"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Ш§Щ„Ш®Ш±Щ€Ш¬ ШЁШЇЩ€Щ† Ш§Щ„Ш­ЩЃШё"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§Щ„Ш®Ш±Щ€Ш¬ ШЁШЇЩ€Щ† ЩѓШЄШ§ШЁШ© Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…Шџ"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Ш­ЩЃШё ШЄШ№ШЇЩЉЩ„Ш§ШЄ /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "ШЄШ­ШЇЩЉШЇ ШўЩ„ЩЉ"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "ШЈЩ…ШіШ­ Ш§Щ„ЩѓЩ„"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "ШЈЩѓШ«Ш±"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "ЩѓЩ„ Ш§Щ„ШЄШ¬ШІШ¦Ш§ШЄ Ш§Щ„Ш±Ш¦ЩЉШіЩЉШ© Щ…ШіШЄШ®ШЇЩ…Ш©"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Щ„Ш§ ЩЉЩ…ЩѓЩ†Щ†ЩЉ Ш§Ш¶Ш§ЩЃШ© ШЈЩЉ ШЄШ¬ШІШ¦Ш© ШЈШ®Ш±Щ‰"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Щ„ЩѓЩЉ ШЄЩ…ШЄЩ„Щѓ ШЄШ¬ШІШ¦Ш§ШЄ ШЈЩѓШ«Ш±, ЩЉШ±Ш¬Щ‰ Ш§Щ„ШєШ§ШЎ ШЄШ¬ШІШ¦Ш© ЩѓЩЉ ШЄШЄЩ…ЩѓЩ† Щ…Щ† Ш№Щ…Щ„ ШЄШ¬ШІШ¦Ш© Щ…Щ…ШЄШЇШ©"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Ш­ЩЃШё Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ© Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "ШҐЩ†Щ‚Ш§Ш° Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "ШҐШ№Ш§ШЇШ© ШЄШ­Щ…ЩЉЩ„ Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Ш§Щ„ШЄШ¬Щ‡ЩЉШІ Ш§Щ„ШўЩ„ЩЉ Щ„Щ„Щ€ШіШ§Ш¦Ш· Ш§Щ„Щ‚Ш§ШЁЩ„Ш© Щ„Щ„ШҐШІШ§Щ„Ш©"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Ш§Ш®ШЄШ± Щ…Щ„ЩЃ"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1471,11 +1696,11 @@ msgstr ""
"Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ… Ш§Щ„Щ…Ш­ЩЃЩ€Шё Щ„ЩЉШі ШЁЩ†ЩЃШі Ш§Щ„Ш­Ш¬Щ…\n"
"Щ„Ш§ ШІЩ„ШЄ ШЄШ±ЩЉШЇ Ш§Щ„ШҐЩѓЩ…Ш§Щ„Шџ"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "ШЄШ­Ш°ЩЉШ±"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1483,129 +1708,112 @@ msgstr ""
"ШЈШЇШ®Щ„ Щ‚Ш±ШµШ§ Щ…Ш±Щ†Ш§ ЩЃЩЉ Ш§Щ„ШіЩ€Ш§Щ‚Ш©\n"
"ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш№Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ ШіШЄЩ…Ш­Щ‰"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Ш¬Ш§Ш±ЩЉ Щ…Ш­Ш§Щ€Щ„Ш© Ш§Щ†Щ‚Ш§Ш° Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Щ…ЩЃШµЩ‘Щ„Ш©"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "ШЄШєЩЉЩЉШ± Ш§Щ„Ш­Ш¬Щ…"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Щ†Щ‚Щ„"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "ШЄЩ†ШіЩЉЩ‚"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ш¬Щ‡ШІ"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Ш§Ш¶Ш§ЩЃШ© Ш§Щ„Щ‰ RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Ш§Ш¶Ш§ЩЃШ© Ш§Щ„Щ‰ LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ш§ШІЩ„ Ш§Щ„ШЄШ¬Щ‡ЩЉШІ"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Ш§ШІШ§Щ„Ш© Щ…Щ† RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Ш§ШІШ§Щ„Ш© Щ…Щ† LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "ШЄШ№ШЇЩЉЩ„ RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Ш§ШіШЄШ®ШЇШ§Щ… Щ„ЩЂloopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Ш§Ш№Щ…Щ„ ШЄШ¬ШІШ¦Ш© Ш¬ШЇЩЉШЇШ©"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Щ‚Ш·Ш§Ш№ Ш§Щ„ШЁШЇШ§ЩЉШ©: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Ш§Щ„Ш­Ш¬Щ… ШЁШ§Щ„ЩЉШєШ§ШЁШ§ЩЉШЄ: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Щ†Щ€Ш№ Щ†ШёШ§Щ… Ш§Щ„Щ…ЩЃШ§ШЄ: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Ш§Щ„ШЄЩЃШ¶ЩЉЩ„: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§ШІШ§Щ„Ш© Щ…Щ„ЩЃ loopbackШџ"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "ШєЩЉШ± Щ†Щ€Ш№ Ш§Щ„ШЄШ¬ШІШ¦Ш©"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "ШЈЩЉ Щ†ШёШ§Щ… Щ…Щ„ЩЃШ§ШЄ ШЄШ±ЩЉШЇШџ"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШЄШєЩЉЩЉШ± Щ…Щ† ext2 Ш§Щ„Щ‰ ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ШЈЩЉЩ† ШЄШ±ЩЉШЇ ШЄШ¬Щ‡ЩЉШІ Щ…Щ„ЩЃ loopback %sШџ"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ШЈЩЉЩ† ШЄШ±ЩЉШЇ ШЁШ¬Щ‡ЩЉШІ Ш§Щ„Ш¬Щ‡Ш§ШІ%sШџ"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1613,130 +1821,135 @@ msgstr ""
"Щ„Щ… ЩЉЩ…ЩѓЩ† Ш§ШІШ§Щ„Ш© ШЄШ№ЩЉЩЉЩ† Щ†Щ‚Ш·Ш© Ш§Щ„ШЄШ¬Щ‡ЩЉШІ Щ†ШёШ±Ш§ Щ„ШЈЩ† Щ‡Ш°Щ‡ Ш§Щ„ШЄШ¬ШІШ¦Ш© Щ…ШіШЄШ®ШЇЩ…Ш© Щ„ЩЂloop back.\n"
"Щ‚Щ… ШЁШҐШІШ§Щ„Ш© Ш§Щ„ЩЂloopback ШЈЩ€Щ„Ш§"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "ШЈЩЉЩ† ШЄШ±ЩЉШЇ ШЁШ¬Щ‡ЩЉШІ Ш§Щ„Ш¬Щ‡Ш§ШІ%sШџ"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Ш¬Ш§Ш±ЩЉ Ш­ШіШ§ШЁ Ш±Щ€Ш§ШЁШ· Щ†ШёШ§Щ… Щ…Щ„ЩЃШ§ШЄ FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ш¬Ш§Ш±ЩЉ ШЄШєЩЉЩЉШ± Ш§Щ„Ш­Ш¬Щ…"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Щ‡Ш°Ш§ Ш§Щ„ШЄЩ‚ШіЩЉЩ… ШєЩЉШ± Щ‚Ш§ШЁЩ„ Щ„ШЄШєЩЉЩЉШ± Ш§Щ„Ш­Ш¬Щ…"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш№Щ„Щ‰ Щ‡Ш°Щ‡ Ш§Щ„ШЄШ¬ШІШ¦Ш© ЩЉШ¬ШЁ Ш­ЩЃШёЩ‡Ш§ Ш§Ш­ШЄЩЉШ§Ш·ЩЉШ§"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "ШЁШ№ШЇ ШЄШєЩЉЩЉШ± Ш­Ш¬Щ… Ш§Щ„ШЄШ¬ШІШ¦Ш© %s, ЩЃШҐЩ† ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш№Щ„Щ‰ Щ‡Ш°Щ‡ Ш§Щ„ШЄШ¬ШІШ¦Ш© ШіШЄЩЃЩ‚ШЇ"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Ш§Ш®ШЄШ± Ш§Щ„Ш­Ш¬Щ… Ш§Щ„Ш¬ШЇЩЉШЇ"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Ш§Щ„Ш­Ш¬Щ… Ш§Щ„Ш¬ШЇЩЉШЇ ШЁШ§Щ„Щ…ЩЉШєШ§ШЁШ§ЩЉШЄ: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "ШЈЩЉ Щ‚Ш±Шµ ШЄШ±ЩЉШЇ Щ†Щ‚Щ„Щ‡Шџ"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Ш§Щ„Щ‚Ш·Ш§Ш№"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "ШЈЩЉ Щ‚Ш·Ш§Ш№ ШЄШ±ЩЉШЇ Щ†Щ‚Щ„Щ‡Шџ"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Щ†Щ‚Щ„"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Ш¬Ш§Ш±ЩЉ Щ†Щ‚Щ„ Ш§Щ„ШЄШ¬ШІШ¦Ш©..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Ш§Ш®ШЄШ± RAID Щ…Щ€Ш¬Щ€ШЇ Щ„Щ„Ш§Ш¶Ш§ЩЃШ©"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "Ш¬ШЇЩЉШЇ"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Ш§Ш®ШЄШ± LVM l,Ш¬Щ€ШЇ Щ„Щ„Ш§Ш¶Ш§ЩЃШ©"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Ш§ШіЩ… LVMШџ"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Щ‡Ш°Щ‡ Ш§Щ„ШЄШ¬ШІШ¦Ш© Щ„Ш§ ЩЉЩ…ЩѓЩ† Ш§ШіШЄШ®ШЇШ§Щ…Щ‡Ш§ Щ„ЩЂloopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Ш§ШіЩ… Щ…Щ„ЩЃ Loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Ш§Ш№Ш· Ш§ШіЩ… Щ…Щ„ЩЃ"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Щ‡Ш°Ш§ Ш§Щ„Щ…Щ„ЩЃ Щ…ШіШЄШ®ШЇЩ… Щ…Щ† loopback ШЈШ®Ш±Щ‰, Ш§Ш®ШЄШ± Щ…Щ„ЩЃШ§ ШўШ®Ш±"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ш§Щ„Щ…Щ„ЩЃ Щ…Щ€Ш¬Щ€ШЇ Щ…ШіШЁЩ‚Ш§, Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ…Щ‡Шџ"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ Ш§Щ„ШЄШ¬Щ‡ЩЉШІ"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Щ…ШЄЩ†Щ€Ш№Ш©"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "Щ€Ш­ШЇШ©"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "Ш§Щ„Щ…ШіШЄЩ€Щ‰"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "Ш­Ш¬Щ… chunk"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "ЩѓЩ† Ш­Ш°Ш±Ш§: Щ‡Ш°Щ‡ Ш§Щ„Ш№Щ…Щ„ЩЉШ© Ш®Ш·ЩЉШ±Ш©"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "ШЈЩЉ Щ†Щ€Ш№ Щ…Щ† Ш§Щ„ШЄШ¬ШІШ¦Ш©Шџ"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© %s ЩЉШ¬ШЁ ШЈЩ† ШЄЩЏШ«ШЁЩ‘ШЄ. Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ«ШЁЩЉШЄЩ‡Ш§Шџ"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1744,7 +1957,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1752,51 +1965,51 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ш¬ШЇЩ€Щ„ Ш§ШЄШЄЩ‚ШіЩЉЩ… Щ„Щ„Щ‚Ш±Шµ %s ШіЩЉШЄЩ… ЩѓШЄШ§ШЁШЄЩ‡ Ш§Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "ШіШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Ш§Ш№Ш§ШЇШ© Ш§Щ„ШЄШґШєЩЉЩ„ Щ‚ШЁЩ„ ШЈЩ† ЩЉШЄЩ… ШЄЩЃШ№ЩЉЩ„ Ш§Щ„ШЄШ№ШЇЩЉЩ„Ш§ШЄ"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "ШЁШ№ШЇ ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„ШЄЩ‚ШіЩЉЩ… %s, ЩЃШҐЩ† ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© Ш№Щ„Щ‰ Ш§Щ„ШЄШ¬ШІШ¦Ш© ШіШЄЩЃЩ‚ШЇ"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШЄЩ‡ЩЉШ¦Ш©"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ш¬Ш§Ш±ЩЉ ШЄЩ‡ЩЉШ¦Ш© Щ…Щ„ЩЃ loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Ш¬Ш§Ш±ЩЉ ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„ШЄШ¬ШІШ¦Ш© %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Ш®ШЁШЎ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Ш§Щ†Щ‚Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ‰ ШЄШ¬ШІШ¦Ш© Ш¬ШЇЩЉШЇШ©"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1805,116 +2018,116 @@ msgstr ""
"Ш§Щ„ШЇЩ„ЩЉЩ„ %s ЩЉШ­ШЄЩ€ЩЉ Щ…ШіШЁЩ‚Ш§ Ш№Щ„Щ‰ ШЁШ№Ш¶ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Ш¬Ш§Ш±ЩЉ Щ†Щ‚Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ‰ Ш§Щ„ШЄШ¬ШІШ¦Ш© Ш§Щ„Ш¬ШЇЩЉШЇШ©"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Ш¬Ш§Ш±ЩЉ Щ†ШіШ® %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Ш¬Ш§Ш±ЩЉ Ш§ШІШ§Щ„Ш© %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "Ш§Щ„ШЄШ¬ШІШ¦Ш© %s Щ…Ш№Ш±Щ€ЩЃШ© Ш§Щ„ШўЩ† ШЁШ§Щ„ШҐШіЩ… %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Ш§Щ„Ш¬Щ‡Ш§ШІ: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ш­Ш±ЩЃ ШіЩ€Ш§Щ‚Ш© DOS: %s (Щ…Ш¬Ш±ШЇ ШЄШ®Щ…ЩЉЩ†)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Ш§Щ„Щ†Щ€Ш№: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ш§Щ„Ш§ШіЩ…: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Ш§Щ„ШЁШЇШ§ЩЉШ©: Щ‚Ш·Ш§Ш№ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Ш§Щ„Ш­Ш¬Щ…: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s Щ‚Ш·Ш§Ш№"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ш§Щ„Ш§ШіШ·Щ€Ш§Щ†Ш© %d Ш§Щ„Щ‰ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Щ…Ш¬Щ‡ШІ\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "ШєЩЉШ± Щ…Ш¬Щ‡ШІ\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Щ…Ш­Щ…Щ„\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Ш§Щ„Щ…ШіШЄЩ€Щ‰ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Ш­Ш¬Щ… Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "ШЈЩ‚Ш±Ш§Шµ RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Ш§ШіЩ… Щ…Щ„ЩЃ Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1922,7 +2135,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1930,62 +2143,57 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Ш§Щ„Ш­Ш¬Щ…: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ш§Щ„Щ‡Щ†ШЇШіШ©: %s Ш§ШіШ·Щ€Ш§Щ†Ш©, %s Ш±ШЈШі, %s Щ‚Ш·Ш§Ш№\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Щ…Ш№Щ„Щ€Щ…Ш§ШЄ: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "ШЈЩ‚Ш±Ш§Шµ LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Щ†Щ€Ш№ Ш¬ШЇЩ€Щ„ Ш§Щ„ШЄЩ‚ШіЩЉЩ…: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "Ш№Щ„Щ‰ bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Ш§Щ„Ш®ЩЉШ§Ш±Ш§ШЄ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Щ…ЩЃШЄШ§Ш­ ШЄШґЩЃЩЉШ± Щ†ШёШ§Щ… Ш§Щ„Щ…Щ„ЩЃШ§ШЄ"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Ш§Ш®ШЄШ± Щ…ЩЃШЄШ§Ш­ ШЄШґЩЃЩЉШ± Щ†ШёШ§Щ… Ш§Щ„Щ…Щ„ЩЃШ§ШЄ"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Щ…ЩЃШЄШ§Ш­ Ш§Щ„ШЄШґЩЃЩЉШ± Щ‡Ш°Ш§ ШЁШіЩЉШ· Ш¬ШЇШ§ (ЩЉШ¬ШЁ ШЈЩ† ЩЉЩѓЩ€Щ† %d Ш­Ш±ЩЃШ§ Ш№Щ„Щ‰ Ш§Щ„ШЈЩ‚Щ„)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Щ…ЩЃШ§ШЄЩЉШ­ Ш§Щ„ШЄШґЩЃЩЉШ± ШєЩЉШ± Щ…ШЄШ·Ш§ШЁЩ‚Ш©"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Щ…ЩЃШ§ШЄШ­ Ш§Щ„ШЄШґЩЃЩЉШ±"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Щ…ЩЃШ§ШЄШ­ Ш§Щ„ШЄШґЩЃЩЉШ± (Щ…Ш±Ш© ШЈШ®Ш±Щ‰)"
@@ -2036,23 +2244,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "Ш§ШЁШ­Ш« ЩЃЩЉ ШЈШ¬Щ‡ШІШ© Ш§Щ„Ш®Ш§ШЇЩ…"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ШЄШ¬Щ‡ЩЉШІ %s Щ‚ШЇ ЩЃШґЩ„"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Щ„Ш§ ШЈШ№Ш±ЩЃ ЩѓЩЉЩЃ ШЈШ¬Щ‡ШІ %s ЩЃЩЉ Ш§Щ„Щ†Щ€Ш№ %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2069,313 +2277,317 @@ msgstr "Щ…Ш№ /usr"
msgid "server"
msgstr "Ш®Ш§ШЇЩ…"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Щ„Ш§ ШЄЩ€Ш¬ШЇ Щ…ШіШ§Ш­Ш© ЩѓШ§ЩЃЩЉШ© Щ„Щ„ШЄШ­ШЇЩЉШЇ Ш§Щ„ШўЩ„ЩЉ"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Щ„Ш§ ШґЩЉШ¦ Щ„Щ„Ш№Щ…Щ„"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " ЩЃШЄШ­Ш© Ш§Щ„Ш®Ш·ШҐ %s Щ„Щ„ЩѓШЄШ§ШЁШ© :%s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Щ„ЩЉШі Щ„ШЇЩЉЩѓ ШЈЩЉЩ‘ ЩЃЩ€Ш§ШµЩ„ ! "
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generic"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Card mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Ш­Щ…Щ„ Ш§Щ„ШҐШ№ШЇШ§ШЇШ§ШЄ"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "ШєЩЉЩ‘Ш± Ш§Щ„Щ†Щ€Ш№"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Ш®Ш±Щ€Ш¬"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Щ…ШіШ§Ш№ШЇШ©"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Щ…ШіШ§Ш№ШЇШ©"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Щ…ШіШ§Ш№ШЇШ©/_Ш­Щ€Щ„ Ш§Щ„ШЁШ±Щ†Ш§Щ…Ш¬..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Щ€Ш­ШЇШ©"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Card mem (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Ш§Щ„ШєШ§ШЎ"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Щ€Ш­ШЇШ©"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Ш§Щ„Щ€ШµЩЃ"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Ш§Ш®ШЄШ± Щ…Щ„ЩЃ"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway device"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 buttons"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ш®Ш±Щ€Ш¬"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Щ…ШіШ§Ш№ШЇШ©"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Щ…ШіШ§Ш№ШЇШ©"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Щ…ШіШ§Ш№ШЇШ©/_Ш­Щ€Щ„ Ш§Щ„ШЁШ±Щ†Ш§Щ…Ш¬..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚ Щ…Щ† Ш§Щ„ШЈЩ‚Ш±Ш§Шµ Ш§Щ„ШµЩ„ШЁШ©"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Ш№Ш±Ш¶ Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Ш§Щ„Ш№ШЄШ§ШЇ"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "ШҐШ№ШЇШ§ШЇ Ш§Щ„ЩЃШЈШ±Ш©"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Ш§Ш№Ш±Ш¶ Ш§Щ„Щ…Ш№Щ„Щ€Щ…Ш§ШЄ"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "ШҐШ№ШЇШ§ШЇ Ш§Щ„ЩЃШЈШ±Ш©"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Щ†ШЄШёШ±"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d Ш«Щ€Ш§Щ†"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§ШІШ§Щ„Ш© Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
+msgid "Card model :"
+msgstr "Card mem (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ШєЩЉЩ‘Ш± Ш§Щ„Щ†Щ€Ш№"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ш­Щ…Щ„ Ш§Щ„ШҐШ№ШЇШ§ШЇШ§ШЄ"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3406,7 +3618,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3414,7 +3626,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3434,26 +3646,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS Щ„Ш§ ШЄШіШ·ЩЉШ№ Ш§ ШіШЄШ№Щ…Ш§Щ„ Щ‡Ш° Ш§ Ш§Щ„ШЁШ±Щ†Ш§Щ…Ш¬ Щ…Ш№"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3483,7 +3695,7 @@ msgid ""
"Continue anyway?"
msgstr "Ш§ШіШЄЩ…Ш±Щ‘ ШЁШЈЩЉЩ‘Ш© Ш­Ш§Щ„"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
@@ -3644,12 +3856,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3657,12 +3869,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr ""
@@ -3672,7 +3884,7 @@ msgstr ""
msgid "Entering step `%s'\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3680,150 +3892,150 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Щ‚ШЁЩ€Щ„"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3833,17 +4045,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr ""
@@ -4016,104 +4228,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Ш±Ш¬Ш§ШЎ, Ш§Ш®ШЄШ± Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "ШЄШ±Щ‚ЩЉШ©"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ„ШєШ© Щ†Щ€Ш№ Ш§Щ„ЩЃШЈШ±Ш©."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4124,135 +4336,135 @@ msgid ""
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ш§Ш®ШЄШ± Ш§Щ„Ш­ШІЩ… Ш§Щ„ШЄЩЉ ШіШЄЩЏШ«ШЁЩ‘ЩЋШЄ"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4268,32 +4480,32 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4332,7 +4544,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4344,175 +4556,185 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Ш®Ш§ШЇЩ… NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШµЩ‘Щ€ШЄ ISA Щ‡Щ„ Ш№Щ†ШЇЩѓ Ш№Щ†ШЇ"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Ш§Щ„ЩЃШЈШ±Ш©"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Ш·Ш§ШЁШ№Ш©"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
-msgid "LDAP"
-msgstr ""
-
#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "NIS"
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
+msgid "LDAP"
msgstr ""
#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
+msgid "NIS"
msgstr ""
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ Ш®Ш·Щ€Ш· Windows"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Ш®Ш§ШЇЩ… LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ Ш®Ш·Щ€Ш· Windows"
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Ш®Ш§ШЇЩ… NTP"
+msgid "Authentication Windows Domain"
+msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
#: ../../install_steps_interactive.pm_.c:1142
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domain name"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4530,19 +4752,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Ш§Щ„Щ…ШЇШ®Щ„ Ш§Щ„Щ…Ш±Щ† Ш§Щ„Ш«Щ‘Ш§Щ†ЩЉ"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "ШЄШ®Ш·ЩЉ"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4558,7 +4780,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4567,28 +4789,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "ШўШіЩЃ , Щ„Ш§ Щ…ШЇШ®Щ„ Щ…Ш±Щ† Щ…ШЄШ§Ш­"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "ШЈШЇШ®Щ„ Щ‚Ш±Шµ Щ…Ш±Щ† ШЁШ§Щ„ШЇЩ‘Ш§Ш®Щ„ %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr " ШҐЩ†ШґШ§ШЎ Щ‚Ш±Шµ Ш§Щ„Ш§ Щ‚Щ„Ш§ Ш№ "
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr " bootloader ШҐШ№ШЇШ§ШЇ "
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4596,25 +4818,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr " aboot Щ‡Щ„ ШЄШ±ЩЉШЇ ШЈЩ† ШЄШіШЄШ®ШЇЩ… "
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "bootloader Ш§Щ„ШЄЩ‘Ш±ЩѓЩЉШЁ "
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4625,24 +4847,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4661,16 +4883,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4679,15 +4901,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr ""
@@ -4713,393 +4935,456 @@ msgstr "consolehelper missing"
msgid "Choose a file"
msgstr "ШҐШ®ШЄШ± Щ…Щ„ЩЃ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Щ…ШЄЩ‚ШЇЩ…"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<-ШіШ§ШЁЩ‚ "
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Ш§Щ„ШЄШ§Щ„ЩЉ"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ш§Ш®ШЄЩЉШ§Ш±Щѓ ? (default %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Button `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§Щ„Ш¶ШєШ· Ш№Щ„Щ‰ Щ‡Ш°Ш§ Ш§Щ„ШІШ±Шџ "
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ш§Ш®ШЄЩЉШ§Ш±Щѓ ? (default `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "ШҐШ№Ш§ШЇШ© ШЄШіЩ„ЩЉЩ…"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ш§Щ„ШЄШґЩЉЩѓЩЉШ© (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Ш§Щ„ШЈЩ„Щ…Ш§Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Ш§Щ„ШҐШіШЁШ§Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Ш§Щ„ЩЃЩ†Щ„Щ†ШЇЩЉШ©"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ш§Щ„ЩЃШ±Щ†ШіЩЉШ©"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Ш§Щ„Щ†Ш±Щ€ЩЉШ¬ЩЉШ©"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Ш§Щ„ШЁЩ€Щ„Щ†ШЇЩЉШ©"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ш§Щ„Ш±Щ€ШіЩЉШ©"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Ш§Щ„ШіЩ€ЩЉШЇЩЉШ©"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­ Ш§Щ„ШЁШ±ЩЉШ·Ш§Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­ Ш§Щ„ШЈЩ…Ш±ЩЉЩѓЩЉШ©"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Ш§Щ„ШЈЩ„ШЁШ§Щ†ЩЉШ©Щ‘"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Ш§Щ„ШЈШ±Щ…ЩЉЩ†ЩЉШ© (Щ‚ШЇЩЉЩ…)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Ш§Щ„ШЈШ±Щ…ЩЉЩ†ЩЉШ© (ШўЩ„Ш© ЩѓШ§ШЄШЁШ©)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Ш§Щ„ШЈШ±Щ…ЩЉЩ†ЩЉШ©Щ‘ (ШµЩ€ШЄЩЉ)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Ш§Щ„ШЈШ°Ш±ШЁЩЉШ¬Ш§Щ†ЩЉШ© (Щ„Ш§ШЄЩЉЩ†ЩЉ)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Ш§Щ„ШЁЩ„Ш¬ЩЉЩѓЩЉШ©"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "ШЄЩ…ЩѓЩЉЩ†"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Ш§Щ„ШЁЩ„ШєШ§Ш±ЩЉШ© (ШµЩ€ШЄЩЉШ©)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Ш§Щ„ШЁЩ„ШєШ§Ш±ЩЉШ© (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Ш§Щ„ШЁШ±Ш§ШІЩЉЩ„ЩЉШ©Щ‘ (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Ш§Щ„ШҐШіШЄЩ€Щ†ЩЉШ©"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Ш§Щ„ШЁЩЉЩ„Ш§Ш±Щ€ШіЩЉШ©"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Ш§Щ„ШіЩ€ЩЉШіШ±ЩЉШ© (ШЄШµЩ…ЩЉЩ… ШЈЩ„Щ…Ш§Щ†ЩЉ)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Ш§Щ„ШіЩ€ЩЉШіШ±ЩЉШ© (ШЄШµЩ…ЩЉЩ… ЩЃШ±Щ†ШіЩЉ) "
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ш§Щ„ШЄШґЩЉЩѓЩЉШ© (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr " Ш§Щ„ШЈЩ„Щ…Ш§Щ†ЩЉШ©Щ‘ (no dead keys)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Ш§Щ„ШЇЩ†Щ…Ш§Ш±ЩѓЩЉШ©"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Щ†Ш±Щ€ЩЉШ¬ЩЉШ©Щ‘) "
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ШіЩ€ЩЉШЇЩЉШ©)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Ш§Щ„ШҐШіШЄЩ€Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Ш§Щ„Ш¬Щ€Ш±Ш¬ЩЉШ© (Ш§Щ„ШЄШµЩ…ЩЉЩ… Ш§Щ„Ш±Щ€ШіЩЉ)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Ш§Щ„Ш¬Щ€Ш±Ш¬ЩЉШ©Щ‘ (Ш§Щ„ШЄШµЩ…ЩЉЩ… Ш§Щ„Щ„Ш§ШЄЩЉЩ†ЩЉ)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Ш§Щ„ЩЉЩ€Щ†Ш§Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ш§Щ„Щ…Ш¬Ш±ЩЉШ© Ш§Щ„Щ‡Щ†ШєШ§Ш±ЩЉШ©"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Ш§Щ„ЩѓШ±Щ€Ш§ШЄЩЉШ©"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Ш§Щ„Ш№ШЁШ±ЩЉШ©"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Ш§Щ„Ш№ШЁШ±ЩЉШ© (ШµЩ€ШЄЩЉШ©)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Ш§Щ„ШҐЩЉШ±Ш§Щ†ЩЉЩ‘Ш©"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Ш§Щ„ШўЩЉШіЩ„Ш§Щ†ШЇЩЉШ©"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Ш§Щ„ШҐЩЉШ·Ш§Щ„ЩЉШ©"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Ш§Щ„ЩЉШ§ШЁШ§Щ†ЩЉШ© 106 Щ…ЩЃШ§ШЄЩЉШ­"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­ Ш§Щ„ЩѓЩ€Ш±ЩЉШ©"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Ш§Щ„ШЈЩ…Ш±ЩЉЩѓЩЉШ© Ш§Щ„Щ„Ш§ШЄЩЉЩ†ЩЉШ©"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Ш§Щ„Щ„Ш§ШЄЩЃЩЉШ©"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Ш§Щ„Щ„Щ‘ЩЉШЄЩ€Ш§Щ†ЩЉШ©Щ‘ AZERTY ( Щ‚ШЇЩЉЩ… ) "
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Ш§Щ„Щ„Щ‘ЩЉШЄЩ€Ш§Щ†ЩЉЩ‘Ш© AZERTY ( Ш¬ШЇЩЉШЇ ) "
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ш§Щ„Щ„Щ‘ЩЉШЄЩ€Ш§Щ†ЩЉШ©Щ‘ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " Ш§Щ„Щ„Щ‘ЩЉШЄЩ€Ш§Щ†ЩЉШ©Щ‘ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Ш§Щ„Щ„Ш§ШЄЩЃЩЉШ©"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Ш§Щ„Щ…Щ‚ШЇЩ€Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Ш§Щ„ШµЩ‘Ш±ШЁЩЉШ©Щ‘ (cyrillic)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Ш§Щ„Щ‡Щ€Щ„Щ†ШЇЩЉЩ‘Ш©"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Ш§Щ„ШЁЩ€Щ„Щ†ШЇЩЉШ© (qwerty layout)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Ш§Щ„ШЁЩ€Щ„Щ†ШЇЩЉШ© (qwertz layout)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Ш§Щ„ШЁШ±ШЄШєШ§Щ„ЩЉШ©"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Ш§Щ„ЩѓЩ†ШЇЩЉЩ‘Ш© (ЩѓЩЉШЁЩЉЩѓ)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Ш§Щ„Ш±Щ‘Щ€Щ…Ш§Щ†ЩЉЩ‘Ш© (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Ш§Щ„Ш±Щ‘Щ€Щ…Ш§Щ†ЩЉШ©Щ‘ (qwertz)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Ш§Щ„Ш±Щ‘Щ€ШіЩЉШ©Щ‘ (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Ш§Щ„ШіЩ„Щ€ЩЃЩЉЩ†ЩЉШ©"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Ш§Щ„ШіЩ„Щ€ЩЃШ§ЩѓЩЉШ© (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Ш§Щ„ШіЩ„Щ€ЩЃШ§ЩѓЩЉШ© (QWERTZ)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Ш§Щ„ШµЩ‘Ш±ШЁЩЉШ©Щ‘ (cyrillic)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Ш§Щ„ШЄШ§Щ…ЩЉЩ„"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Ш§Щ„ШЄШ§Щ…ЩЉЩ„ (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Ш§Щ„ШЄШ§Щ…ЩЉЩ„ (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­ Ш§Щ„ШЄЩ‘Ш§ЩЉЩ„Ш§Щ†ШЇЩЉЩ‘Ш©"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Щ„Щ€Ш­Ш© Щ…ЩЃШ§ШЄЩЉШ­ Ш§Щ„Ш·Щ‘Ш§Ш¬ЩЉЩѓЩЉЩ‘Ш©"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Ш§Щ„ШЄЩ‘Ш±ЩѓЩЉЩ‘ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Ш§Щ„ШЄЩ‘Ш±ЩѓЩЉЩ‘ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ш§Щ„ШЈЩ€ЩѓШ±Ш§Щ†ЩЉШ©"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "( "
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Ш§Щ„ЩЃЩЉШЄЩ†Ш§Щ…ЩЉЩ‘ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "( ЩЉЩ€ШєШіЩ„Ш§ЩЃЩЉЩ‘ ( Ш§Щ„Щ„Щ‘Ш§ШЄЩЉЩ†ЩЉЩ‘Ш© "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Щ…ЩЃШЄШ§Ш­ Alt key"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "Щ…ЩЃШЄШ§Ш­ CapsLock"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Right \"Windows\" key"
@@ -5108,37 +5393,37 @@ msgstr "Right \"Windows\" key"
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Ш±Щ‚Щ… Ш§Щ„ШЄЩ‘Щ„ЩЉЩЃЩ€Щ† "
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "ШЄШ¬Щ‡ЩЉШІ Ш§Щ„ШЄШ¬ШІШ¦Ш§ШЄ"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5241,51 +5526,43 @@ msgstr "Щ€Щ„Ш§ Щ€Ш§Ш­ШЇ"
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Ш®ШЄШЁШ± Ш§Щ„ЩЃШЈШ±Ш©"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! Ш­Ш±Щ‘Щѓ "
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "ШҐЩ†ШЄЩ‡Ш§ШЎ"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Ш§Щ„ШЄШ§Щ„ЩЉ ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<-ШіШ§ШЁЩ‚ "
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Щ‡Щ„ Щ‡Ш°Ш§ ШµШ­ЩЉШ­ ? "
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Ш§Щ„Щ…Ш№Щ„Щ€Щ…Ш§ШЄ"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Expand Tree"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Collapse Tree"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5305,6 +5582,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "use dhcp"
@@ -5330,7 +5611,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Ш§Ш®ШЄШ± Ш§Щ„ШіЩ‘Ш·Ш­ Ш§Щ„ШЁЩЉЩ†ЩЉЩ‘ Щ„Щ„ШґШЁЩѓШ© "
@@ -5343,7 +5624,7 @@ msgstr ""
msgid "no network card found"
msgstr "Щ„Ш§ ШЁШ·Ш§Щ‚Ш© ШґШЁЩѓШ© Щ€Ш¬ШЇШЄ "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Ш§ Ш№ШЇШ§ШЇ ШґШЁЩѓШ©"
@@ -5355,7 +5636,7 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Host Ш§ШіЩ… "
@@ -5383,7 +5664,7 @@ msgstr ""
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5489,43 +5770,43 @@ msgstr ""
msgid "Dialup options"
msgstr "Dialup options"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr ""
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Ш±Щ‚Щ… Ш§Щ„ШЄЩ‘Щ„ЩЉЩЃЩ€Щ† "
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domain name"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "( Ш®Ш§ШЇЩ… Ш§ Ш§Щ„ШЈЩ€Щ‘Щ„ ( Ш§Ш®ШЄЩЉШ§Ш±ЩЉЩ‘ "
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr ""
@@ -5617,13 +5898,13 @@ msgstr ""
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Щ€Ш¶Ш№ЩЉШ© Ш§Щ„Ш®ШЁЩЉШ±"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr ""
@@ -5725,7 +6006,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -5733,49 +6014,49 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP address"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatic IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Ш§ШЁШЇШЈ Ш№Щ†ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5783,40 +6064,40 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Ш§Щ„Ш®Ш§ШЇЩ… DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxies Ш§Ш№ШЇШ§ШЇ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr ""
@@ -5828,7 +6109,7 @@ msgstr "Ш§Ш№ШЇШ§ШЇ Internet "
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr ""
@@ -5854,43 +6135,43 @@ msgstr ""
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Card mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Card IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Card IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Card IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr ""
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr ""
@@ -5898,28 +6179,28 @@ msgstr ""
msgid "Choose your country"
msgstr "ШҐШ®ШЄШ± ШЁЩ„ШЇЩѓ"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "ШіШ±Ш№Ш© Ш§Щ„ШҐШЄШµШ§Щ„"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Ш§Щ„Щ€Щ‚ШЄ Ш§Щ„ШЈЩ‚ШµЩ‰ Щ„Щ„Ш§ШЄШµШ§Щ„ (ШЁШ§Щ„Ш«Щ€Ш§Щ†ЩЉ)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Account Password"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -5952,7 +6233,7 @@ msgstr ""
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -5995,7 +6276,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6023,7 +6304,7 @@ msgstr "Ш·Ш§ШЁШ№Ш© ШЁШ№ЩЉШЇШ©"
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr ""
@@ -6039,7 +6320,7 @@ msgstr ""
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr ""
@@ -6047,125 +6328,129 @@ msgstr ""
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Ш§Щ„Ш·Ш§ШЁШ№Ш§ШЄ Ш§Щ„Щ…Ш­Щ„ЩЉШ©"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Ш§Щ„Ш·Ш§ШЁШ№Ш§ШЄ Ш§Щ„ШЁШ№ЩЉШЇШ©"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ш№Щ„Щ‰ Ш®Ш§ШЇЩ… CUPS \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr ""
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr ""
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr " CUPS Ш§Ш№ШЇШ§ШЇШ§ШЄ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Ш§Щ„Ш®Ш§ШЇЩ… CUPS Ш­ШЇЩ‘ШЇ"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6176,7 +6461,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6186,32 +6471,32 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "Ш№Щ†Щ€Ш§Щ† IP Щ„Ш®Ш§ШЇЩ… CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Ш§Щ„ШЁЩ€Ш§ШЁШ©"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "ШЄЩ‡ЩЉШ¦Ш© CUPS ШўЩ„ЩЉШ©"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "ШЈШ¶ЩЃ Ш·Ш§ШЁШ№Ш© Ш¬ШЇЩЉШЇШ©"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6224,35 +6509,67 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Ш·Ш§ШЁШ№Ш© Щ…Ш­Щ„ЩЉШ©"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "ШЄШ­Щ‚Щ‚ Щ…Щ† Ш§Щ„Ш·Ш§ШЁШ№Ш§ШЄ ШўЩ„ЩЉШ§"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Ш·Ш§ШЁШ№Ш© Щ…Ш­Щ„ЩЉШ©"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6266,51 +6583,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
+#: ../../printerdrake.pm_.c:307
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "ШЄЩ… Ш§Щ„ШЄШ­Щ‚Щ‚ Щ…Щ† %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Ш·Ш§ШЁШ№Ш© ШґШЁЩѓШ© (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6318,44 +6634,36 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Щ„Щ… ЩЉШЄЩ… Ш§ЩЉШ­Ш§ШЇ Ш·Ш§ШЁШ№Ш© Щ…Ш­Щ„ЩЉШ©!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Ш·Ш§ШЁШ№Ш© Щ…Ш­Щ„ЩЉШ©"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
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:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6363,7 +6671,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6371,103 +6679,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Ш§Щ„Щ…Щ†ЩЃШ° Ш§Щ„Щ…Щ€ШµЩ„Ш© ШҐЩ„ЩЉЩ‡ Ш·Ш§ШЁШ№ШЄЩѓ."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "ШҐШ№ШЇШ§ШЇ ЩЉШЇЩ€ЩЉ"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "ШЄШ±ЩѓЩЉШЁ Ш·Ш±Щ€ШЇ ..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "ШЄШ±ЩѓЩЉШЁ Ш·Ш±Щ€ШЇ ..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "ШЄЩ… Ш§Щ„ШЄШ­Щ‚Щ‚ Щ…Щ† %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Ш¬Ш§Ш±ЩЉ ШЁШЇШЎ Ш§Щ„ШґШЁЩѓШ©..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш·ШЁШ§Ш№Ш© Ш№Щ„Щ‰ Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6475,35 +6761,46 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Щ…Ш¬Щ…Щ€Ш№Ш© Ш§Щ„Ш№Щ…Щ„"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "ШЄШ­Щ‚Щ‚ ШўЩ„ЩЉ"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6527,7 +6824,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6536,7 +6833,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6544,11 +6841,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6556,80 +6853,102 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
+#: ../../printerdrake.pm_.c:978
+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 ""
+
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Ш§ШіЩ… Щ…ШіШЄШ¶ЩЉЩЃ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr ""
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Ш§ШіЩ… Щ…ШіШЄШ¶ЩЉЩЃ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ш§Щ„Щ…ЩѓШ§Щ†"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6644,24 +6963,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "ШЄЩ… Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„Щ†Щ‘Щ…Щ€Ш°Ш¬ ЩЉШЇЩ€ЩЉЩ‘Щ‹Ш§"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "ШҐШ®ШЄЩЉШ§Ш± Щ€Ш­ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Щ…Ш§ Щ‡Щ€ Щ†Щ€Ш№ Ш§Щ„Ш·Ш§ШЁШ№Ш© Щ„ШЇЩЉЩѓШџ"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -6670,17 +6989,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "ШҐШ№ШЇШ§ШЇ OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6690,11 +7009,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "ШҐШ№ШЇШ§ШЇ Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6702,7 +7021,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -6715,7 +7034,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -6725,22 +7044,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -6749,11 +7068,11 @@ msgstr ""
"Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ№ЩЉЩЉЩ† Щ‡Ш°Щ‡ Ш§Щ„Ш·Ш§ШЁШ№Ш© (\"%s\")\n"
"ЩѓШ·Ш§ШЁШ№Ш© Ш§ЩЃШЄШ±Ш§Ш¶ЩЉШ©Шџ"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6761,39 +7080,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "ШҐШ·ШЁШ№"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6803,21 +7122,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Ш·Ш§ШЁШ№Ш© Ш®Ш§Щ…"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6826,15 +7145,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -6843,7 +7162,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -6851,41 +7170,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6895,7 +7214,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -6904,45 +7223,45 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш·ШЁШ§Ш№Ш©/Ш§Щ„Щ…ШіШ­ Ш№Щ„Щ‰ \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш·ШЁШ§Ш№Ш©/Ш§Щ„Щ…ШіШ­ Ш№Щ„Щ‰ \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш·ШЁШ§Ш№Ш©/Ш§Щ„Щ…ШіШ­ Ш№Щ„Щ‰ \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш·ШЁШ§Ш№Ш© Ш№Щ„Щ‰ Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "ШҐШєЩ„Ш§Щ‚"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Щ‚Ш§Ш¦Щ…Ш© Ш®ЩЉШ§Ш±Ш§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -6951,9 +7270,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -6964,17 +7283,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Щ†Щ‚Щ„ ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6984,51 +7303,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7036,56 +7355,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Ш¬Ш§Ш±ЩЉ ШЁШЇШЎ Ш§Щ„ШґШЁЩѓШ©..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Щ„Щ… ЩЉШЄЩ… ШЄШ­ШЇЩЉШЇ Щ€ШёЩЉЩЃЩЉШ© Ш§Щ„ШґШЁЩѓШ©"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7093,11 +7412,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7107,31 +7426,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "Щ…Ш±ШЄЩЃШ№"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7146,11 +7465,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7164,63 +7483,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "ШЈЩЉ Щ†ШёШ§Щ… Ш·ШЁШ§Ш№Ш© ШЄШ±ЩЉШЇ ШЈЩ† ШЄШіШЄШ®ШЇЩ…Шџ"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ш¬Ш§Ш±ЩЉ ШҐШ№ШЇШ§ШЇ Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Ш¬Ш§Ш±ЩЉ ШҐШ№ШЇШ§ШЇ Ш§Щ„ШЄШ·ШЁЩЉЩ‚Ш§ШЄ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
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; "
@@ -7228,39 +7547,35 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "ШЄШєЩЉЩЉШ± Щ†ШёШ§Щ… Ш§Щ„Ш·ШЁШ§Ш№Ш©"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ш®Ш±Щ€Ш¬"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ¬Ш±ШЁШ© ШҐШ№ШЇШ§ШЇ Ш·Ш§ШЁШ№Ш© ШЈШ®Ш±Щ‰Шџ"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "ШЄШ№ШЇЩЉЩ„ Ш§Ш№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -7269,100 +7584,100 @@ msgstr ""
"Ш§Щ„Ш·Ш§ШЁШ№Ш© %s\n"
"Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ№ШЇЩЉЩ„ ШЄЩ„Щѓ Ш§Щ„Ш·Ш§ШЁШ№Ш©Шџ"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Щ†Щ€Ш№ Щ€ШµЩ„Ш© Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Ш§Ш№Ш±ЩЃ ЩѓЩЉЩЃ ШЄШіШЄШ®ШЇЩ… Щ‡Ш°Щ‡ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§ШІШ§Щ„Ш© Ш§Щ„Ш·Ш§ШЁШ№Ш© Ш§Щ„Щ‚ШЇЩЉЩ…Ш© \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§ШІШ§Щ„Ш© Ш§Щ„Ш·Ш§ШЁШ№Ш© \"%s\" ..."
@@ -7409,7 +7724,7 @@ msgid ""
msgstr ""
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../proxy.pm_.c:79
@@ -7457,33 +7772,6 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../security/msec.pm_.c:144
-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 ""
-
-#: ../../security/msec.pm_.c:150
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ Щ…ШЄЩ‚ШЇЩ…Ш©"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7716,7 +8004,7 @@ msgstr "ШҐЩ†ШЄШ±Щ†ШЄ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Щ†ШёШ§Щ…"
@@ -7828,7 +8116,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Щ…Ш±ЩѓШІ ШЄШ­ЩѓЩ… Mandrake"
@@ -7927,195 +8215,195 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "ШЄШ±ЩѓЩЉШЁ Ш·Ш±Щ€ШЇ ..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ЩЉШ±Ш¬Щ‰ ШЄШіШ¬ЩЉЩ„ Ш§Щ„Ш®Ш±Щ€Ш¬ Ш«Щ… Ш§ШіШЄШ®ШЇЩ… Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ЩЉШ±Ш¬Щ‰ Ш§Ш№Ш§ШЇШ© ШЄШіШ¬ЩЉЩ„ Ш§Щ„ШЇШ®Щ€Щ„ Ш§Щ„Щ‰ %s Щ„ШЄЩ†ШґЩЉШ· Ш§Щ„ШЄШєЩЉЩЉШ±Ш§ШЄ"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
" Щ„Ш§ ЩЉЩ…ЩѓЩ† ШЈЩ† ШЈЩ‚Ш±ШЈ Ш¬ШЇЩ€Щ„ ЩЃШ§ШµЩ„Щѓ Щ‡Щ€ ЩЉЩЃШіШЇ ШЈЩЉШ¶Щ‹Ш§ ШіЩ€ЩЃ ШЈШ­Ш§Щ€Щ„ ШЈЩ† ШЈШіШЄЩ…Ш±Щ‘ ЩЃЩ€Ш§ШµЩ„ ШіЩЉЩ‘Ш¦Ш© "
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Щ†Щ‚Щ„ ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш©"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Ш®Ш§ШЇЩ… Щ‚Щ€Ш§Ш№ШЇ ШЁЩЉШ§Щ†Ш§ШЄ"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Ш®Ш§ШЇЩ… Щ‚Щ€Ш§Ш№ШЇ ШЁЩЉШ§Щ†Ш§ШЄ"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Ш§Ш¶ЩЃ Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP Ш§Щ„Ш№Щ…ЩЉЩ„"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Щ…ШіШ§Ш№ШЇШ©"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
#, fuzzy
msgid "No kernel selected!"
msgstr "Щ„Щ… ЩЉШЄЩ… Ш§ЩЉШ¬Ш§ШЇ ШЁШ·Ш§Щ‚Ш© ШЄЩ„ЩЃШ§ШІ!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "ШєЩЉШ± Щ…ШЄШµЩ„"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "ШҐЩ„ШєШ§ШЎ"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "ШЄЩ… Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ЩѓЩ„"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Ш§Ш¶ЩЃ Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP Ш§Щ„Ш№Щ…ЩЉЩ„"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШҐШ№ШЇШ§ШЇ..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "ШҐШ№ШЇШ§Ш© Ш§Щ„ШҐШ№ШЇШ§ШЇ"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "ШЈШЇШ®Щ„ Щ‚Ш±Шµ Щ…Ш±Щ† ШЁШ§Щ„ШЇЩ‘Ш§Ш®Щ„ %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "ШўШіЩЃ , Щ„Ш§ Щ…ШЇШ®Щ„ Щ…Ш±Щ† Щ…ШЄШ§Ш­"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Ш®Ш·ШЈ ! "
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "ШЈШЇШ§Ш© Ш§Ш№ШЇШ§ШЇ Ш§Щ„Щ…Ш«ШЁЩ‘ШЄ Ш§Щ„ШўЩ„ЩЉ"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8130,21 +8418,21 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "ШҐШ№ШЇШ§ШЇ Ш§Щ„Ш®Ш·Щ€Ш§ШЄ Ш§Щ„ШўЩ„ЩЉШ©"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr ""
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8152,37 +8440,50 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "ШЄШ«ШЁЩЉШЄ ШўЩ„ЩЉ"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "ШЈШІЩ„ Ш§Щ„Щ…Ш§ШЇШ© Ш§Щ„ШЈШ®ЩЉШ±Ш©"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8190,7 +8491,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8198,31 +8499,94 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Ш§Ш¬Щ…Ш§Щ„ЩЉ Ш§Щ„ШЄЩ‚ШЇЩ…"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+msgid "No changes to backup!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8230,229 +8594,293 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr "Ш§Ш±ШіШ§Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш№Щ† Ш·Ш±ЩЉЩ‚ FTP"
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ†ШёШ§Щ… Щ‚ШЁЩ„:"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ЩѓЩ„ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Ш§Щ„Ш°ЩЉЩ† ШЄШ±ЩЉШЇ ШЄШ¶Щ…ЩЉЩ†Щ‡Щ… ЩЃЩЉ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ…Ш§ШЇШ© Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш©"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Ш§Щ„Щ…ШіШЄШ®ШЇЩ…Щ€Щ†"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ш§ШіШЄШ®ШЇЩ… Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ Щ„Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "ЩЃШ¶Щ„Ш§ ШЈШЇШ®Щ„ Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ ШЈЩ€ Ш№Щ†Щ€Ш§Щ† IP."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "ЩЃШ¶Щ„Ш§Щ‹ ШЈШЇШ®Щ„ Ш§Щ„ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩЉЩ‡ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Ш±Ш¬Ш§ШЎ ШЈШЇШ®Щ„ Ш§ШіЩ… Ш§Щ„ШЇШ®Щ€Щ„"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Ш±Ш¬Ш§ШЎ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "ШЄШ°ЩѓЩ‘Ш± ЩѓЩ„Щ…Ш© Ш§Щ„ШіЩ‘Ш±Щ‘ Щ‡Ш°Щ‡ "
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "ШҐЩ„Щ‰ Ш§Щ„Щ…ШіШ§Ш№ШЇ CD/DVDROM Ш§Щ„Ш§ШіШЄШ№Щ…Ш§Щ„ "
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ…ШіШ§Ш­Ш© Ш§Щ„Щ‚Ш±Шµ Ш§Щ„Щ…ШЇЩ…Ш¬"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-" Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄШЄШ¶Щ…Щ‘Щ† \n"
-"Ш±ЩѓЩ‘ШЁ Ш§Щ„Ш¬ШЇШ± Ш№Щ„Щ‰ Щ‚Ш±ШµЩѓ Ш§Щ„Щ…ШЇЩ…Ш¬"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "ЩЃШ¶Щ„Ш§ Щ‚Щ… ШЁШ§Щ„ШЄШЈШґЩЉШ± Щ‡Щ†Ш§ Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШіШЄШ®ШЇЩ… Щ€ШіЩЉШ· CDRW"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Ш§Ш®ШЄШ± Щ…Щ„ЩЃ"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "ЩЃШ¶Щ„Ш§Щ‹ ШЈШЇШ®Щ„ Ш§Щ„ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩЉЩ‡ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Ш§Щ„ШґШЁЩѓШ©"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Ш§Щ„Щ†Щ€Ш№"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "ЩѓЩ„Щ‘ ШіШ§Ш№Ш© "
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "ЩЉЩ€Щ…ЩЉЩ‘Щ‹Ш§ "
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "ШЈШіШЁЩ€Ш№ЩЉЩ‘Ш§"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "ШґЩ‡Ш±ЩЉШ§"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Ш§ШіШЄШ®ШЇЩ… Ш§Щ„Щ…Ш±Ш§Щ‚ШЁ"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -8460,7 +8888,7 @@ msgstr ""
"ЩЃШ¶Щ„Ш§ Ш§Ш®ШЄШ± Ш§Щ„ЩЃШЄШ±Ш© \n"
"Щ…Ш§ ШЁЩЉЩ† ЩѓЩ„ Ш№Щ…Щ„ЩЉШ© Щ†ШіШ® Ш§Ш­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -8468,66 +8896,78 @@ msgstr ""
"Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ±\n"
"Щ€ШіЩЉШ· Ш§Щ„Щ†ШіШ® Ш§Щ„Ш§Ш­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Щ…Ш§Ш°Ш§ "
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "ШЈЩЉЩ†"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Щ…ШЄЩ‰ "
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ ШЈЩѓШ«Ш±"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЈЩЉЩ† ШЄШ±ЩЉШЇ Ш§Щ„Щ†ШіШ® Ш§Щ„Ш§Ш­ШЄЩЉШ§Ш·ЩЉ."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "Ш№Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ‘Щ„ШЁ"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "Ш№ШЁШ± Ш§Щ„ШґЩ‘ШЁЩѓШ©"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ…Ш§ ШЄШ±ЩЉШЇ Щ†ШіШ®Щ‡ Ш§Ш­ШЄЩЉШ§Ш·ЩЉШ§Щ‹"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Щ†ШёШ§Щ… Ш§Щ„Щ…ШіШ§Ш№ШЇ"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Щ…ШіШЄШ®ШЇЩ…Щ€ Ш§Щ„Щ…ШіШ§Ш№ШЇ"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Ш§Ш®ШЄШ±Ш§Щ„Щ…ШіШЄШ®ШЇЩ… ЩЉШЇЩ€ЩЉЩ‘Щ‹Ш§"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -8535,7 +8975,7 @@ msgstr ""
"\n"
"Щ…ШµШ§ШЇШ± Ш§Щ„Щ…ШіШ§Ш№ШЇ :\n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -8543,7 +8983,7 @@ msgstr ""
"\n"
"-Щ…Щ„ЩЃЩ‘Ш§ШЄ Ш§Щ„Щ†Щ‘ШёШ§Щ… :\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -8551,7 +8991,7 @@ msgstr ""
"\n"
"-Щ…Щ„ЩЃЩ‘Ш§ШЄ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -8559,7 +8999,7 @@ msgstr ""
"\n"
"-Ш§Щ„Щ…Щ„ЩЃЩ‘Ш§ШЄ Ш§Щ„ШЈШ®Ш±Щ‰:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -8568,22 +9008,32 @@ msgstr ""
"\n"
"- Ш§Ш­ЩЃШЇ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ‘Щ„ШЁ Ш№Щ„Щ‰ Ш§Щ„Ш·Щ‘Ш±ЩЉЩ‚ :%s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Ш¬Щ‡Ш§ШІ Ш§Щ„ЩЃШЈШ±Ш©: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -8592,12 +9042,12 @@ msgstr ""
"\n"
"-FTP Щ€ Ш№Щ„Щ‰ host Ш§Ш­ЩЃШЇ Ш№Щ„Щ‰ : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -8606,14 +9056,14 @@ msgstr ""
"\n"
"-FTP Щ€ Ш№Щ„Щ‰ host Ш§Ш­ЩЃШЇ Ш№Щ„Щ‰ : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -8621,19 +9071,19 @@ msgstr ""
"\n"
"- Ш®ЩЉШ§Ш±Ш§ШЄ:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -8642,217 +9092,213 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Ш§Ш¶ШєШ· Щ…Щ€Ш§ЩЃЩ‚ Щ„Ш§ШіШЄШ№Ш§ШЇШ© Щ…Щ„ЩЃШ§ШЄ Ш§Ш®Ш±Щ‰"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Ш§Щ„Ш°ЩЉЩ† ШіЩЉШЄЩ… Ш§ШіШЄШ№Ш§ШЇШЄЩ‡Щ…"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ†ШёШ§Щ… Щ‚ШЁЩ„:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЄШ§Ш±ЩЉШ® Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Ш§ШіШЄШ®ШЇЩ… Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ Щ„Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "Щ€ШµЩ„Ш© FTP"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Щ€ШµЩ„Ш© ШўЩ…Щ†Ш©"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Ш§ШіШЄШ№ШЇ Щ…Щ† Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "ЩЃШ¶Щ„Ш§Щ‹ ШЈШЇШ®Щ„ Ш§Щ„ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩЉЩ‡ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Ш§Ш®ШЄШ± Щ€ШіЩЉШ· ШўШ®Ш± Щ„Щ„Ш§ШіШЄШ№Ш§ШЇШ© Щ…Щ†Щ‡"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Щ€ШіЩЉШ· ШўШ®Ш±"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Ш§ШіШЄШ№ШЇ Ш§Щ„Щ†Щ‘ШёШ§Щ…"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "ШЈШ№ШЇ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† "
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Ш§ШіШЄШ№ШЇ ШўШ®Ш±"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "Ш§Ш®ШЄШ± Щ…ШіШ§Ш± Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ© (ШЁШЇЩ„Ш§Щ‹ Щ…Щ† / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Щ‚Щ… ШЁЩ†ШіШ® Ш§Ш­ШЄЩЉШ§Ш·ЩЉ Ш¬ШЇЩЉШЇ ЩЃШЁЩ„ Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ© (ЩЃЩ‚Ш· Щ„Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ© Ш§Щ„Щ…ШЄШЇШ±Ш¬Ш©)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "ШЈШІЩ„ ШЈШЇЩ„Ш© Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Щ‚ШЁЩ„ Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Ш§ШіШЄШ№ШЇ ЩѓЩ„ Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ© Щ…Ш®ШµШµШ©"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Ш§Щ„ШіШ§ШЁЩ‚"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ш­ЩЃШё"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Ш§ШЁЩ†ЩЉ Ш§Щ„Щ†ШіШ®Ш© Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉШ©"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Ш§Щ„ШЄШ§Щ„ЩЉ"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ш§Щ„Ш­ШІЩ…Ш© %s ЩЉШ¬ШЁ ШЈЩ† ШЄЩЏШ«ШЁЩ‘ШЄ. Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄШ«ШЁЩЉШЄЩ‡Ш§Шџ"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± ШЄШ§Ш±ЩЉШ® Ш§Щ„ШҐШіШЄШ№Ш§ШЇШ©..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ€ШіЩЉШ· Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„Щ…Ш·Щ„Щ€ШЁ Щ†ШіШ®Щ‡Ш§ Ш§Ш­ШЄЩЉШ§Ш·ЩЉШ§..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -8860,75 +9306,59 @@ msgstr ""
"Щ„Щ… ЩЉШЄЩ… Ш§ЩЉШ¬Ш§ШЇ Щ…Щ„ЩЃ ШЄЩ‡ЩЉШ¦Ш© \n"
"ЩЃШ¶Щ„Ш§ Ш§Ш¶ШєШ· Щ…Ш№Ш§Щ„Ш¬ Щ„ШЈЩ€ Щ…ШЄЩ‚ШЇЩ…."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "ШЄШ­ШЄ Ш§Щ„ШЄШ·Щ€ЩЉШ± ... Ш§Щ†ШЄШёШ± ЩЃШ¶Щ„Ш§"
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Ш§Щ†ШіШ® Щ…Щ„ЩЃШ§ШЄ ШЈШ®Ш±Щ‰"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Ш§Ш¬Щ…Ш§Щ„ЩЉ Ш§Щ„ШЄЩ‚ШЇЩ…"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "Ш§Ш±ШіШ§Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш№Щ† Ш·Ш±ЩЉЩ‚ FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Ш±ШіШ§Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„ШЄЩЉ ШіШЄШ¶Щ…Щ† ЩЃЩЉ Ш§Щ„Щ‚Ш±Шµ."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Ш±Ш¬Ш§ШЎ ШЈШЇШ®Щ„ ШіШ±Ш№Ш© ШіЩ€Ш§Щ‚Ш© ЩѓШЄШ§ШЁШ© Ш§Щ„ШЈЩ‚Ш±Ш§Шµ"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "ЩЃШ¶Щ„Ш§ Ш§Ш®ШЄШ± Ш§ШіЩ… Ш¬Щ‡Ш§ШІ ЩѓШЄШ§ШЁШ© Ш§Щ„ШЈЩ‚Ш±Ш§Шµ (Щ…Ш«Ш§Щ„: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "ЩЃШ¶Щ„Ш§ ШЄШЈЩѓШЇ ШЁШЈЩ†Щѓ ШЄШ±ЩЉШЇ ШЄШ¶Щ…ЩЉЩ† ШҐЩ‚Щ„Ш§Ш№ Ш§Щ„ШЄШ«ШЁЩЉШЄ ЩЃЩЉ Щ‚Ш±ШµЩѓ Ш§Щ„Щ…ШЇЩ…Ш¬."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Щ‚Щ… ШЁШ§Щ„Щ†ШіШ® Ш§Щ„ШўЩ† Щ…Щ† Щ…Щ„ЩЃ Ш§Щ„ШЄЩ‡ЩЉШ¦Ш©"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Ш§Ш№Ш±Ш¶ ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Щ…Ш№Ш§Щ„Ш¬"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "ШҐШ№ШЇШ§ШЇ Щ…ШЄЩ‚ШЇЩ…"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Щ‚Щ… ШЁШ§Щ„Щ†ШіШ® Ш§Щ„ШҐШ­ШЄЩЉШ§Ш·ЩЉ Ш§Щ„ШўЩ†"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -8939,7 +9369,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -8960,7 +9390,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8969,7 +9399,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -8993,7 +9423,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9010,21 +9440,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9038,19 +9468,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Ш¬Щ…ЩЉШ№ Ш§Щ„Ш­Щ‚Щ€Щ‚ Щ…Ш­ЩЃЩ€ШёШ© (C) 2001 MandrakeSoft Щ…Щ† ШЇЩ€ШЁЩ€Щ† ШіЩЉШЁШ§ШіШЄЩЉШ§Щ† <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9083,7 +9513,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9123,7 +9553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9134,7 +9564,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9147,7 +9577,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9186,94 +9616,121 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "ЩЃШґЩ„ ШЄШ«ШЁЩЉШЄ %s. ШёЩ‡Ш± Ш§Щ„Ш®Ш·ШЈ Ш§Щ„ШЄШ§Щ„ЩЉ:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "ШЈШЇЩ€Ш§ШЄ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "Ш№Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ‘Щ„ШЁ"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Ш§ШіШЄШґШ§Ш±Ш§ШЄ Mandrake"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Ш§Щ„ЩЃШЈШ±Ш©"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Ш·Ш§ШЁШ№Ш© ШЁШ№ЩЉШЇШ©"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr ""
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Щ…Ш№Ш§Щ„Ш¬ ШҐШ№ШЇШ§ШЇ Ш§Щ„ШґШЁЩѓШ©"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Ш§Щ„ШЄШ­Щ‚Щ‚"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr ""
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Щ†ШЄШёШ±"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9285,148 +9742,148 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Щ…Ш§ ШЁШ№ШЇ Ш§ШІШ§Щ„Ш© Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Ш§ШіШЄШ№Ш§ШЇШ©"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Щ…Ш§ ШЁШ№ШЇ Ш§ШІШ§Щ„Ш© Ш§Щ„ШЄШ«ШЁЩЉШЄ"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ШіШЄЩѓЩ€Щ† Щ„Щ‚Ш·Ш§ШЄ Ш§Щ„ШґШ§ШґШ© Щ…Щ€Ш¬Щ€ШЇШ© ШЁШ№ШЇ Ш§Щ„ШЄШ«ШЁЩЉШЄ ЩЃЩЉ %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Ш§Ш№ШЇШ§ШЇШ§ШЄ Ш§Щ„ШґШЁЩѓШ© (%d Щ…Щ€Ш§Ш¦Щ…Ш§ШЄ)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Ш§Щ„ШЄШґЩѓЩЉЩ„:"
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Ш§Ш­Ш°ЩЃ Ш§Щ„ШЄШґЩѓЩЉЩ„..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Ш§Щ„ШЄШґЩѓЩЉЩ„ Ш§Щ„Щ…Ш·Щ„Щ€ШЁ Ш­Ш°ЩЃЩ‡:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "ШЄШґЩѓЩЉЩ„ Ш¬ШЇЩЉШЇ..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Щ„ШҐШіЩ… Ш§Щ„ШЄШґЩѓЩЉЩ„ Ш§Щ„Ш°ЩЉ ШіШЄШ№Щ…Щ„Щ‡ (Ш§Щ„ШЄШґЩѓЩЉЩ„ Ш§Щ„Ш¬ШЇЩЉШЇ ЩЉШЄЩ… Ш№Щ…Щ„Щ‡ ЩѓЩ†ШіШ®Ш© Щ…Щ† Ш§Щ„ШЄШґЩѓЩЉЩ„ Ш§Щ„Ш­Ш§Щ„ЩЉ) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ :"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Ш§Щ„ШЇШ®Щ€Щ„ Ш§Щ„Щ‰ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Ш§Щ„Щ†Щ€Ш№:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Ш§Щ„ШЁЩ€Ш§ШЁШ©:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Ш§Щ„Щ€Ш§Ш¬Щ‡Ш©:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Ш§Щ„Ш­Ш§Щ„Ш©:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Ш§Щ„Ш§Щ†ШЄШёШ§Ш± Щ…Щ† ЩЃШ¶Щ„Щѓ"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "ШҐШ№ШЇШ§ШЇ Ш§Щ„ШЇШ®Щ€Щ„ Ш§Щ„Щ‰ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "ШҐШ№ШЇШ§ШЇ LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Ш§Щ„Щ…Ш­Ш±Щѓ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Ш§Щ„Щ€Ш§Ш¬Щ‡Ш©"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Ш§Щ„ШЁШ±Щ€ШЄЩ€ЩѓЩ€Щ„"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Ш§Щ„Ш­Ш§Щ„Ш©"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "ШҐШ№ШЇШ§ШЇ Ш§Щ„ШґШЁЩѓШ© Ш§Щ„Щ…Ш­Щ„ЩЉШ©..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Ш§Щ†Щ‚Ш± Щ‡Щ†Ш§ Щ„ШЄШґШєЩЉЩ„ Ш§Щ„Щ…Ш№Ш§Щ„Ш¬ ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Ш§Щ„Щ…Ш№Ш§Щ„Ш¬..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "ШЄШ·ШЁЩЉЩ‚"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "ЩЉШ±Ш¬Щ‰ Ш§Щ„ШҐЩ†ШЄШёШ§Ш±... Ш¬Ш§Ш±ЩЉ ШЄШ·ШЁЩЉЩ‚ Ш§Щ„ШҐШ№ШЇШ§ШЇШ§ШЄ"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Щ…ШЄЩ‘ШµЩ„ "
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "ШєЩЉШ± Щ…ШЄШµЩ„"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Ш§ШЄШµЩ„..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Ш§Щ‚Ш·Ш№ Ш§Щ„ШҐШЄШµШ§Щ„..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr "ШЄШ­Ш°ЩЉШ±, ШЄЩ… Ш§ЩЉШ¬Ш§ШЇ Ш§ШЄШµШ§Щ„ ШҐЩ†ШЄШ±Щ†ШЄ ШўШ®Ш±, Ш±ШЁЩ…Ш§ ЩЉЩѓЩ€Щ† ЩЉШіШЄШ®ШЇЩ… ШґШЁЩѓШЄЩѓ"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -9434,36 +9891,36 @@ msgstr ""
"Щ„Щ… ШЄЩ‚Щ… ШЁШЄЩ‡ЩЉШ¦Ш© ШЈЩЉ Щ€Ш§Ш¬Щ‡Ш§ШЄ.\n"
"Щ‚Щ… ШЁШЄЩ‡ЩЉШ¦ШЄЩ‡Щ… ШЈЩ€Щ„Ш§ Ш№Щ† Ш·Ш±ЩЉЩ‚ Ш§Щ„Ш¶ШєШ· Ш№Щ„Щ‰ 'ШЄЩ‡ЩЉШ¦Ш©'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "ШҐШ№ШЇШ§ШЇ LAN"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Ш§Щ„Щ…Ш­Щ€Щ‘Щ„ %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "ШЁШ±Щ€ШЄЩ€ЩѓЩ€Щ„ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "ЩЉШЄЩ… ШЁШЇШЎЩ‡ Ш№Щ†ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP Ш§Щ„Ш№Щ…ЩЉЩ„ "
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Щ‚Щ… ШЁШ§Щ„ШЄЩ†ШґЩЉШ· Ш§Щ„ШўЩ†"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "Щ‚Щ… ШЁШҐШІШ§Щ„Ш© Ш§Щ„ШЄЩ†ШґЩЉШ· Ш§Щ„ШўЩ†"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -9471,7 +9928,7 @@ msgstr ""
"Щ„Щ… ЩЉШЄЩ… ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© ШЁШ№ШЇ.\n"
"Щ‚Щ… ШЁШЄШґШєЩЉЩ„ Щ…Ш№Ш§Щ„Ш¬ Ш§Щ„ШЄЩ‡ЩЉШ¦Ш© ЩЃЩЉ Ш§Щ„Щ†Ш§ЩЃШ°Ш© Ш§Щ„Ш±Ш¦ЩЉШіЩЉШ©"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -9479,121 +9936,121 @@ msgstr ""
"Щ„ЩЉШіШЄ Щ„ШЇЩЉЩѓ ШЈЩЉ Ш§ШЄШµШ§Щ„Ш§ШЄ ШҐЩ†ШЄШ±Щ†ШЄ.\n"
"Щ‚Щ… ШЁШ№Щ…Щ„ Ш§ШЄШµШ§Щ„ ШЈЩ€Щ„Ш§ ШЁШ§ШіШЄШ®ШЇШ§Щ… 'ШЄЩ‡ЩЉШ¦Ш©'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Щ†Щ€Ш№ Ш§Щ„Ш№Щ„Ш§Щ‚Ш©"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameters"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet Card"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP Ш§Щ„Ш№Щ…ЩЉЩ„"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "Ш§Щ„Ш§ШіШЄШ®ШЇШ§Щ…: ШЇШ±ЩЉЩѓ Щ„Щ„Ш§Щ‚Ш±Ш§Шµ Ш§Щ„Щ…Ш±Щ†Ш©\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-Щ…ШЄЩ†Щ€Ш№-Ш«Ш§ШЁШЄ-Щ€ШіШ·-Ш±-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Ш§ШіЩ… Ш§Щ„Щ€Ш­ШЇШ©"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Ш­Ш¬Щ…"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "ШЇШ±ЩЉЩѓ Щ„Щ„Ш§Щ‚Ш±Ш§Шµ Ш§Щ„Щ…Ш±Щ†Ш©"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "ШµЩ†Ш№ Щ‚Ш±Шµ Щ…Ш±Щ† Щ„ШЁШЇШЎ Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "Ш§Щ„Щ…Ш±Ш¬Ш№"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Ш®Ш·ШЈ ЩЃЩ‰ ШЇШ±ЩЉЩѓ Щ„Ш№Щ…Щ„ Щ‚Ш±Шµ ШЁШЇШЎ Ш§Щ„Щ†ШёШ§Щ…: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Ш§ШµШЇШ§Ш±Ш© Ш§Щ„Щ„ШЁ"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Ш№Ш§Щ…"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Щ…Щ†Ш·Щ‚Ш© Ш§Щ„Ш®ШЁШ±Ш§ШЎ"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd Ш§Щ„Ш®ШµШ§Ш¦Шµ Ш§Щ„Ш§Ш®ШЄЩЉШ§Ш±ЩЉШ©"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Ш§Ш¶Ш§ЩЃШ© Щ€Ш­ШЇШ©"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "Ш§Ш¬ШЁШ§Ш±"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "Ш§Ш°Ш§ Ш§Ш­ШЄШ¬ШЄЩ‡"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "SCSI Ш§Щ‡Щ…Щ„ Щ€Ш­ШЇШ§ШЄ Ш§Щ„"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "RAID Ш§Щ‡Щ…Щ„ Щ€Ш­ШЇШ§ШЄ Ш§Щ„"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Ш§ШІШ§Щ„Ш© Щ€Ш­ШЇШ©"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Ш§Щ„Щ†Ш§ШЄШ¬"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Ш¬Щ‡ШІ Ш§Щ„Щ‚Ш±Шµ"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "ШЄШЈЩѓШЇ Щ…Щ† Щ€Ш¬Щ€ШЇ Ш§Щ„Щ€ШіЩЉШ· Щ„Щ„Щ€Ш­ШЇШ© %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -9602,12 +10059,12 @@ msgstr ""
"Щ„Ш§ ЩЉЩ€Ш¬ШЇ Щ€ШіШ· ШЈЩ€ Ш±ШЁЩ…Ш§ ЩЉЩѓЩ€Щ† Ш§Щ„Щ€ШіШ· Щ…Ш­Щ…ЩЉ Щ…Щ† Ш§Щ„Щ‚Ш±Ш§ШЎШ© Щ„Щ„Ш¬Щ‡Ш§ШІ %s.\n"
"ЩЃШ¶Щ„Ш§Щ‹ Ш§ШЇШ®Щ„ Щ€ШіШ· ЩЃЩ‰ Ш§Щ„Щ€Ш­ШЇШ©."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "ШЄШ№Ш°Ш± ШЄЩ†ЩЃЩЉШ°: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -9618,99 +10075,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Ш§ШЁШ­Ш« ЩЃЩЉ Ш§Щ„Ш®Ш·Щ€Ш· Ш§Щ„Щ…Ш«ШЁШЄШ©"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "ШЈШІЩ„ Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„Ш®Ш·Щ€Ш· Ш§Щ„Щ…Ш«ШЁШЄШ©"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "ШЄШ­Щ„ЩЉЩ„ ЩѓЩ„ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "Щ„Ш§ ШЄЩ€Ш¬ШЇ Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "Ш§Щ†ШЄЩ‡Щ‰"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "Щ„Щ… ШЈШЄЩ…ЩѓЩ† Щ…Щ† Ш§ЩЉШ¬Ш§ШЇ ШЈЩЉ Ш®Ш·Щ€Ш· ЩЃЩЉ ШЄШ¬ШІШ¦Ш§ШЄЩѓ Ш§Щ„Щ…Ш­Щ…Щ„Ш©"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "ШЈШ№ШЇ Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„Ш®Ш·Щ€Ш· Ш§Щ„ШµШ­ЩЉШ­Ш©"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "Щ„Щ… ШЈШЄЩ…ЩѓЩ† Щ…Щ† ШҐЩЉШ¬Ш§ШЇ ШЈЩЉ Ш®Ш·.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Ш§ШЁШ­Ш« Ш№Щ† Ш§Щ„Ш®Ш·Щ€Ш· ЩЃЩЉ Ш§Щ„Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„Щ…Ш«ШЁШЄШ©"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Щ†Щ‚Щ„ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "ШЄШ«ШЁЩЉШЄ Ш®Ш·Щ€Ш· True Type"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "Ш±Ш¬Ш§ШЎ Ш§Щ†ШЄШёШ± ШЈШ«Щ†Ш§ШЎ Ш№Щ…Щ„ЩЉШ© ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "ШЄЩ… ШЄШ«ШЁЩЉШЄ Ш®Ш·Щ€Ш· True Type"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "ШЄШ­Щ€ЩЉЩ„ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "ШЁЩ†Ш§ШЎ type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript referencing"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ШЄШ­Щ€ЩЉЩ„ Ш®Ш·Щ€Ш· ttf"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "ШЄШ­Щ€ЩЉЩ„ Ш®Ш·Щ€Ш· pfm"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "ШЈШЁШ·Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Щ…Ш¤Щ‚ШЄШ©"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "ШЈШ№ШЇ ШЄШґШєЩЉЩ„ XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "ШЈШЁШ·Щ„ Щ…Щ„ЩЃШ§ШЄ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9719,107 +10176,111 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Ш§ШіШЄЩЉШ±Ш§ШЇ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ Ш®Ш·Щ€Ш· Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Ш§Ш®Ш°ЩЃ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ Щ…ШЄЩ‚ШЇЩ…Ш©"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Ш§Ш®ШЄШ± Ш§Щ„ШЄШ·ШЁЩЉЩ‚Ш§ШЄ Ш§Щ„ШЄЩЉ ШіШЄШЇШ№Щ… Ш§Щ„Ш®Ш·Щ€Ш· :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Ш·Ш§ШЁШ№Ш§ШЄ Ш№Ш§ШЇЩЉШ© (Generic)"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Ш§Ш®ШЄШ± Щ…Щ„ЩЃ ШЈЩ€ ШЇЩ„ЩЉЩ„ Ш§Щ„Ш®Ш·Щ€Ш· Щ€ Ш§Ш¶ШєШ· 'Ш§Ш¶Ш§ЩЃШ©'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Ш«ШЁЩ‘ШЄ Ш§Щ„Щ‚Ш§Ш¦Щ…Ш©"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "Ш§Ш¶ШєШ· Щ‡Щ†Ш§ ШҐШ°Ш§ ЩѓЩ†ШЄ Щ…ШЄШЈЩѓШЇШ§."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "ШҐШ¶ШєШ· Щ‡Щ†Ш§ ШҐШ°Ш§ Щ„Щ… ШЄЩѓЩ† Щ…ШЄШЈЩѓШЇШ§."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "ШЄЩ… Ш§ШІШ§Щ„Ш© Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ЩѓЩ„"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "ШЄЩ… Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ЩѓЩ„"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Ш§ШІЩ„ Ш§Щ„Щ‚Ш§Ш¦Щ…Ш©"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Ш§Щ„ШҐШ®ШЄШЁШ§Ш±Ш§ШЄ Ш§Щ„ШЈЩ€Щ„ЩЉШ©"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Ш§Щ†ШіШ® Ш§Щ„Ш®Ш·Щ€Ш· Ш§Щ„Щ‰ Щ†ШёШ§Щ…Щѓ"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Ш«ШЁЩ‘ШЄ Щ€ Ш­Щ€Щ‘Щ„ Ш§Щ„Ш®Ш·Щ€Ш·"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Щ…Ш§ ШЁШ№ШЇ Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "ШЈШІЩ„ Ш§Щ„Ш®Ш·Щ€Ш· Щ…Щ† Ш§Щ„Щ†ШёШ§Щ…"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Щ…Ш§ ШЁШ№ШЇ Ш§ШІШ§Щ„Ш© Ш§Щ„ШЄШ«ШЁЩЉШЄ"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Щ…ШґШ§Ш±ЩѓШ© Ш§Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "ШўШіЩЃЩ€Щ†, Щ†Ш­Щ† Щ†ШЇШ№Щ… Ш§ШµШЇШ§Ш±Ш§ШЄ Ш§Щ„Щ†Щ€Ш§Ш© 2.4"
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Щ…ШґШ§Ш±ЩѓШ© Ш§Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Щ…Щ…ЩѓЩ†Ш© Ш­Ш§Щ„ЩЉШ§"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9827,31 +10288,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "ШЄШ№Ш·ЩЉЩ„"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Ш§Щ‡Щ…Ш§Щ„"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "ШҐШ№ШЇШ§Ш© Ш§Щ„ШҐШ№ШЇШ§ШЇ"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Ш¬Ш§Ш±ЩЉ ШЄШ№Ш·ЩЉЩ„ Ш§Щ„Ш®Щ€Ш§ШЇЩ…..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Щ…ШґШ§Ш±ЩѓШ© Ш§ШЄШµШ§Щ„ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ ШєЩЉШ± Щ…Щ…ЩѓЩ‘ЩЋЩ†Ш© Ш§Щ„ШўЩ†."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Щ…ШґШ§Ш±ЩѓШ© Ш§Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9859,19 +10320,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "ШЄЩ…ЩѓЩЉЩ†"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Ш¬Ш§Ш±ЩЉ ШЄЩ…ЩѓЩЉЩ† Ш§Щ„Ш®Щ€Ш§ШЇЩ…..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Щ…ШґШ§Ш±ЩѓШ© ШҐШЄШµШ§Щ„ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Щ…Щ…ЩѓЩ‘ЩЋЩ†Ш© Ш§Щ„ШўЩ†."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9881,31 +10342,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© %s (ШЁШ§ШіШЄШ®ШЇШ§Щ… Ш§Щ„Щ€Ш­ШЇШ© %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Щ„Ш§ Щ…Ш­Щ€Щ‘Щ„ Ш§Щ„ШґЩ‘ШЁЩѓШ© Ш№Щ„Щ‰ Щ†ШёШ§Щ…Щѓ"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "ШіШ·Ш­ ШЁЩЉЩ†ЩЉЩ‘ Щ„Щ„ШґШЁЩѓШ© "
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9915,17 +10376,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Щ€Ш§Ш¬Щ‡Ш© Ш§Щ„ШґШЁЩѓШ© Щ…Ш№ШЇЩ‘Ш© Щ…ШіШЁЩ‚Ш§!"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9935,15 +10396,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Ш§Ш№ШЇШ§Ш© ШЄЩ‡ЩЉШ¦Ш© ШўЩ„ЩЉШ©"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "ШЈШёЩ‡Ш± ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© Ш§Щ„Ш­Ш§Щ„ЩЉШ©"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9960,7 +10421,7 @@ msgstr ""
"ШµЩЃШ© Ш§Щ„ЩЂIP: %s\n"
"Ш§Щ„Щ…ШґШєЩ„: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9972,33 +10433,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "ШґШЁЩѓШ© Щ…Ш­Щ„ЩЉШ© Щ…Щ† Ш§Щ„ЩЃШ¦Ш© C"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "Ш№Щ†Щ€Ш§Щ† IP Щ„Ш®Ш§ШЇЩ… DHCP (Щ‡Ш°Ш§)"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "ШҐШ№Ш§ШЇШ© ШҐШ№ШЇШ§ШЇ Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© Щ€ Ш®Ш§ШЇЩ… DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Ш§Щ„ШґШЁЩѓШ© Ш§Щ„Щ…Ш­Щ„ЩЉШ© Щ„Щ… ШЄЩ†ШЄЩ‡ ШЁЩЂ`0', Ш¬Ш§Ш±ЩЉ Ш§Щ„Ш®Ш±Щ€Ш¬."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ШЄЩ… Ш§ЩЉШ¬Ш§ШЇ ШЄШ№Ш§Ш±Ш¶ ЩЃЩЉ Ш№Щ†Щ€Ш§Щ† Ш§Щ„ШґШЁЩѓШ© Ш§Щ„Щ…Ш­Щ„ЩЉШ© Ш§Щ„Щ…ШЁШЇШ¦ЩЉ ЩЃЩЉ Ш§Щ„ШҐШ№ШЇШ§ШЇ Ш§Щ„Ш­Ш§Щ„ЩЉ Щ„ЩЂ%s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "ШЄЩ… Ш§ЩѓШЄШґШ§ЩЃ ШҐШ№ШЇШ§ШЇ Щ„Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10006,20 +10467,20 @@ msgstr ""
"ШЄШ­Ш°ЩЉШ±! ШЄЩ… ШҐЩЉШ¬Ш§ШЇ ШҐШ№ШЇШ§ШЇ Ш¬ШЇШ§Ш± Щ†Ш§Ш±ЩЉ Щ…Щ€Ш¬Щ€ШЇ Щ…ШіШЁЩ‚Ш§. Ш±ШЁЩ…Ш§ ШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Ш§ШµЩ„Ш§Ш­ ЩЉШЇЩ€ЩЉ ШЁШ№ШЇ "
"Ш§Щ„ШЄШ«ШЁЩЉШЄ."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШҐШ№ШЇШ§ШЇ..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ш¬Ш§Ш±ЩЉ ШҐШ№ШЇШ§ШЇ Ш§Щ„Щ†ШµЩ€Шµ Ш§Щ„ШЁШ±Щ…Ш¬ЩЉШ© Щ€ ШЄШ«ШЁЩЉШЄ Ш§Щ„ШЁШ±Щ…Ш¬ЩЉШ§ШЄ Щ€ ШЁШЇШЎ Ш§Щ„Ш®ШЇЩ…Ш§ШЄ..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "ЩѓШ§Щ†ШЄ Щ‡Щ†Ш§Щѓ Щ…ШґШ§ЩѓЩ„ ЩЃЩЉ ШЄШ«ШЁЩЉШЄ Ш§Щ„Ш­ШІЩ…Ш© %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10029,23 +10490,23 @@ msgstr ""
"ЩЉЩ…ЩѓЩ†Щѓ Ш§Щ„ШўЩ† Щ…ШґШ§Ш±ЩѓШ© Ш§ШЄШµШ§Щ„ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Щ…Ш№ Ш§Щ„ШЈШ¬Щ‡ШІШ© Ш§Щ„ШЈШ®Ш±Щ‰ ЩЃЩЉ ШґШЁЩѓШЄЩѓ Ш§Щ„Щ…Ш­Щ„ЩЉШ© ШЁШ§ШіШЄШ®ШЇШ§Щ… "
"ШҐШ№ШЇШ§ШЇ Ш§Щ„ШґШЁЩѓШ© Ш§Щ„ШЈЩ€ШЄЩ€Щ…Ш§ШЄЩЉЩѓЩЉ (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "ШЄЩ… Ш№Щ…Щ„ Ш§Щ„ШЄЩ†ШµЩЉШЁ, Щ€ Щ„ЩѓЩ†Щ‡ ШєЩЉШ± Щ…Щ…ЩѓЩ‘ЩЋЩ† Ш§Щ„ШўЩ†"
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "ШЄЩ… Ш№Щ…Щ„ Ш§Щ„ШЄЩ†ШµЩЉШЁ, Щ€ Щ‡Щ€ Щ…Щ…ЩѓЩ‘ЩЋЩ† Ш§Щ„ШўЩ†."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Щ„Щ… ЩЉШЄЩ… Ш§Ш№ШЇШ§ШЇ ШЈЩЉ Щ…ШґШ§Ш±ЩѓШ© Ш§ШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Щ…ШґШ§Ш±ЩѓШ© ШҐШЄШµШ§Щ„ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10060,20 +10521,13 @@ msgstr ""
"\n"
"Ш§Ш¶ШєШ· Ш№Щ„Щ‰ ШЄЩ‡ЩЉШ¦Ш© Щ„ШЄШґШєЩЉЩ„ Щ…Ш№Ш§Щ„Ш¬ Ш§Щ„ШҐШ№ШЇШ§ШЇ."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Щ…Ш±ЩѓШІ Ш§Щ„ШЄЩ‘Ш­ЩѓЩ‘Щ… "
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Ш§Ш®ШЄШ± Ш§Щ„ШЈШЇШ§Ш© Ш§Щ„ШЄЩЉ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ…Щ‡Ш§"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10082,67 +10536,71 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "ЩѓЩ†ШЇШ© (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "Ш§Щ„Щ€Щ„Ш§ЩЉШ§ШЄ Ш§Щ„Щ…ШЄЩ‘Ш­ШЇШ© Ш§Щ„ШЈЩ…Ш±ЩЉЩѓЩЉЩ‘Ш© (broadcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "Ш§Щ„Щ€Щ„Ш§ЩЉШ§ШЄ Ш§Щ„Щ…ШЄЩ‘Ш­ШЇШ© Ш§Щ„ШЈЩ…Ш±ЩЉЩѓЩЉЩ‘Ш© (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "Ш§Щ„Щ€Щ„Ш§ЩЉШ§ШЄ Ш§Щ„Щ…ШЄЩ‘Ш­ШЇШ© Ш§Щ„ШЈЩ…Ш±ЩЉЩѓЩЉЩ‘Ш© (cable-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Ш§Щ„ШµЩЉЩ† (broadcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Ш§Щ„ЩЉШ§ШЁШ§Щ† (broadcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Ш§Щ„ЩЉШ§ШЁШ§Щ† (cable)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "ШЈЩ€Ш±Щ€ШЁЩ‘Ш§ Ш§Щ„ШґЩ‘Ш±Щ‚ЩЉЩ‘Ш©"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "ЩЃШ±Щ†ШіШ§ [ШіЩЉЩѓШ§Щ…]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "ШЈЩЉШ±Щ„Щ†ШЇШ§"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "ШЈЩ€Ш±Щ€ШЁЩ‘Ш§ Ш§Щ„ШєШ±ШЁЩЉЩ‘Ш©"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "ШЈЩ€ШіШЄШ±Ш§Щ„ЩЉШ§"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Щ†ЩЉЩ€ШІЩЉЩ„Щ†ШЇШ§ "
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Ш¬Щ†Щ€ШЁ ШЈЩЃШ±ЩЉЩ‚ЩЉШ§ "
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Ш§Щ„ШЈШ±Ш¬Щ†ШЄЩЉЩ† "
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -10150,35 +10608,35 @@ msgstr ""
"ЩЃШ¶Щ„Ш§Щ‹,\n"
"Ш§Ш·ШЁШ№ tv norm Ш§Щ„Ш®Ш§Шµ ШЁЩѓ Щ€ ШЁЩ„ШЇЩѓ"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Ш§Щ„Щ…Щ†Ш·Щ‚Ш© :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Ш¶ЩЉШ· Щ‚Щ†Щ€Ш§ШЄ Ш§Щ„ШЄЩ„ЩЃШ§ШІ ЩЃЩЉ ШЄЩ‚ШЇЩ… ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Ш¬Ш§Ш±ЩЉ Ш¶ШЁШ· Щ‚Щ†Щ€Ш§ШЄ Ш§Щ„ШЄЩ„ЩЃШ§ШІ"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "ЩѓШ§Щ† Щ‡Щ†Ш§Щѓ Ш®Ш·ШЈ ШЈШ«Щ†Ш§ШЎ Ш¶ШЁШ· Щ‚Щ†Щ€Ш§ШЄ Ш§Щ„ШЄЩ„ЩЃШ§ШІ"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "XawTV ШєЩЉШ± Щ…Ш«ШЁШЄ!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Щ†ШЄЩ…Щ†Щ‰ Щ„Щѓ ЩЉЩ€Щ…Ш§Щ‹ ШіШ№ЩЉШЇШ§Щ‹!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Ш§Щ„ШўЩ† ЩЉЩ…ЩѓЩ†Щѓ ШЄШґШєЩЉЩ„ XawTV (ЩЃЩЉ Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© Ш§Щ„Ш±ШіЩ€Щ…ЩЉШ©!) !\n"
@@ -10210,11 +10668,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Ш§Щ„Ш§ШіШЄШ№Щ…Ш§Щ„: keyboarddrake [--expert][Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Щ…Щ† ЩЃШ¶Щ„Щѓ Ш§Ш®ШЄШ± ШЄШµЩ…ЩЉЩ… Щ„Щ€Ш­Ш© Щ…ЩЃШ§ШЄЩЉШ­Щѓ"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ ШЈЩ† ЩЉЩ‚Щ€Щ… ШІШ± BackSpace ШЁШ№Щ…Щ„ Щ€ШёЩЉЩЃШ© ШІШ± Delete ЩЃЩЉ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±Шџ"
@@ -10238,7 +10696,7 @@ msgstr "Щ„Щ… ШЈШЄЩ…ЩѓЩ† Щ…Щ† ШЁШЇШЎ Ш§Щ„ШЄШ±Щ‚ЩЉШ© Ш§Щ„Ш­ЩЉШ© !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ШЄЩ… Ш№Щ…Щ„ Ш§Щ„ШЄШєЩЉЩЉШ±, Щ€ Щ„ЩѓЩ† Щ„ЩЉШЄЩ… ШЄЩЃШ№ЩЉЩ„Щ‡ ЩЉШ¬ШЁ Ш№Щ„ЩЉЩѓ Ш§Щ„Ш®Ш±Щ€Ш¬"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -10346,22 +10804,25 @@ msgstr "Ш§Щ„ШЄЩ‚Щ€ЩЉЩ…"
msgid "Content of the file"
msgstr "Щ…Ш­ШЄЩ€ЩЉШ§ШЄ Ш§Щ„Щ…Щ„ЩЃ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "ШЄЩ†ШЁЩЉШ© Ш§Щ„ШЁШ±ЩЉШЇ/SMS"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "ЩЉШ±Ш¬Щ‰ Ш§Щ„ШҐЩ†ШЄШёШ§Ш±, Ш¬Ш§Ш±ЩЉ ШЄШ­Щ„ЩЉЩ„ Ш§Щ„Щ…Щ„ЩЃ: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "ШЄЩ‡ЩЉШ¦Ш© ШЄЩ†ШЁЩЉЩ‡ Ш§Щ„ШЁШ±ЩЉШЇ/SMS"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -10369,120 +10830,121 @@ msgstr ""
"\n"
"Щ‡Щ†Ш§ ШіЩЉЩ…ЩѓЩ†Щѓ Ш§Щ„ШҐШ№ШЇШ§ШЇ \n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domain name"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Ш®Ш§ШЇЩ… Ш§Щ„ШЁШ±ЩЉШЇ Postfix, Ш®Ш§ШЇЩ… Ш§Щ„ШЈШ®ШЁШ§Ш± Inn"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr " Ш§Щ„Ш®Ш§ШЇЩ… NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Ш§Щ„Ш®ШЇЩ…Ш§ШЄ"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Ш§Щ„Ш®ШЇЩ…Ш§ШЄ"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш®ШЇЩ…Ш§ШЄ"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "ШіЩ€ЩЃ ШЄШіШЄЩ„Щ… ШЄЩ†ШЁЩЉЩ‡Ш§Щ‹ ШҐШ°Ш§ ЩѓШ§Щ†ШЄ ШЈШ­ШЇ Ш§Щ„Ш®ШЇЩ…Ш§ШЄ Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш© ШєЩЉШ± Ш№Ш§Щ…Щ„Ш©."
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "Ш­Щ…Щ„ Ш§Щ„ШҐШ№ШЇШ§ШЇШ§ШЄ"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "ШіЩ€ЩЃ ШЄШіШЄЩ„Щ… ШЄЩ†ШЁЩЉЩ‡Ш§ Ш§Ш°Ш§ ЩѓШ§Щ† Ш§Щ„ШЄШ­Щ…ЩЉЩ„ ШЈШ№Щ„Щ‰ Щ…Щ† Щ‡Ш°Щ‡ Ш§Щ„Щ‚ЩЉЩ…Ш©"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„ШЄЩ†ШЁЩЉЩ‡"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "ШЈШ№ШЇЩ‘ Ш§Щ„Ш·Ш±ЩЉЩ‚Ш© Ш§Щ„ШЄЩЉ ШіЩЉЩ†ШЁЩ‡Щѓ Ш§Щ„Щ†ШёШ§Щ… ШЁЩ‡Ш§"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Ш±Ш¬Ш§ШЎ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Ш­ЩЃШё ШЁШҐШіЩ….."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "ЩЃШ¶Щ„Ш§Щ‹, Ш§Ш®ШЄШ± Щ†Щ€Ш№ Ш§Щ„ЩЃШЈШ±Ш© Ш§Щ„Ш®Ш§ШµШ© ШЁЩѓ."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "no serial_usb found\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Щ…Ш­Ш§ЩѓШ§Ш© Ш§Щ„ШІШ± Ш§Щ„Ш«Ш§Щ„Ш«Шџ"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "Ш¬Ш§Ш±ЩЉ Щ‚Ш±Ш§ШЎШ© ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш© ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Ш¬Ш§Ш±ЩЉ Ш§Щ„ШЄШ­Щ‚Щ‚ Щ…Щ† Ш§Щ„ШЈШ¬Щ‡ШІШ© ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s found on %s Щ€ЩЃЩ‘Щ‚ ШЁЩЉЩ†Щ‡ "
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Ш§Ш®ШЄШ± Ш¬Щ‡Ш§ШІ Ш§Щ„Щ…ШіШ­ Ш§Щ„Ш¶Щ€Ш¦ЩЉ"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Щ‡Ш°Ш§ %s Ш§Щ„Щ…Ш§ШіШ­ Ш§Щ„Ш¶Щ‘Щ€Ш¦ЩЉЩ‘ ШєЩЉШ± Щ…ШЇШ№Щ‘Щ…"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "Ш§Ш®ШЄШ± Ш§Щ„Ш¬Щ‡Ш§ШІ "
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -10492,7 +10954,7 @@ msgstr ""
"Ш§Щ„Щ…Ш§ШіШ­ Ш§Щ„Ш¶Щ€Ш¦ЩЉ %s ЩЉШ¬ШЁ Ш§Ш№ШЇШ§ШЇЩ‡ Ш№Щ† Ш·Ш±ЩЉЩ‚ PrinterDrake.\n"
"ЩЉЩ…ЩѓЩ† ШЄШґШєЩЉЩ„ PrinterDrake Щ…Щ† Щ…Ш±ЩѓШІ Ш§Щ„ШЄШ­ЩѓЩ… ЩЃЩЉ Щ‚ШіЩ… Ш§Щ„Ш№ШЄШ§ШЇ."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -10515,15 +10977,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "ШҐШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "ШЈШ№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -10535,7 +10997,7 @@ msgstr ""
"Щ„Щ‚ШЇ Щ‚Щ…ШЄ ШЁШҐШ№ШЇШ§ШЇ Ш¬ШЇШ§Ш± Щ†Ш§Ш±ЩЉ Щ…ШіШЁЩ‚Ш§.\n"
"Ш§Ш¶ШєШ· ШЄЩ‡ЩЉШ¦Ш© Щ„ШЄШєЩЉЩЉШ± ШЈЩ€ ШҐШІШ§Щ„Ш© Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -10784,48 +11246,48 @@ msgstr "Щ„Ш§ ЩЉЩ…ЩѓЩ† ШЈЩ† ЩЉЩ†ЩЃШЄШ­ %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "%sЩ„Щ„ЩѓШЄШ§ШЁШ© %sЩ„Ш§ ЩЉЩ…ЩѓЩ† ШЈЩ† ЩЉЩ†ЩЃШЄШ­ \n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Щ„Ш§, Щ„Ш§ ШЈШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Щ†Ш№Щ… ШЈШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Щ„Ш§, Щ„Ш§ ШЈШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Щ†Ш№Щ… ШЈШ­ШЄШ§Ш¬ NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Щ„Ш§ ШЄШ­ЩЃШё"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "ШҐШ­ЩЃШё Щ€ Ш§Ш®Ш±Ш¬"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Щ…Ш№Ш§Щ„Ш¬ ШҐШ№ШЇШ§ШЇ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Щ„Ш§ (Ш§Щ…Щ†Ш№ Щ‡Ш°Ш§ Щ…Щ† Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Ш№Щ† Ш·Ш±ЩЉЩ‚ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Щ†Ш№Щ… (Ш§ШіЩ…Ш­ Щ„Щ‡Ш°Ш§ Щ…Щ† Ш®Щ„Ш§Щ„ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "ЩЉШ±Ш¬Щ‰ Ш§Щ„ШҐЩ†ШЄШёШ§Ш±... Ш¬Ш§Ш±ЩЉ Ш§Щ„ШЄШЈЩѓШЇ Щ…Щ† Ш§Щ„Ш­ШІЩ… Ш§Щ„Щ…Ш«ШЁШЄШ©"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -10834,6 +11296,10 @@ msgstr ""
"ЩЃШґЩ„ ШЄШ«ШЁЩЉШЄ Ш§Щ„Ш­ШІЩ… Ш§Щ„Ш¶Ш±Щ€Ш±ЩЉШ©: %s Щ€ Bastille.\n"
" Ш­Ш§Щ€Щ„ ШЄШ«ШЁЩЉШЄЩ‡Щ… ЩЉШЇЩ€ЩЉШ§Щ‹."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Щ€ЩЉШЁ/FTP"
@@ -10883,6 +11349,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "ШЈШЇЩ€Ш§ШЄ ШµЩ€ШЄЩЉШ©: Щ…ШґШєЩ„Ш§ШЄ mp3 ШЈЩ€ midi, Щ…Ш§ШІШ¬Ш§ШЄ ШµЩ€ШЄ, Ш§Щ„Ш®"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "ЩѓШЄШЁ Щ€ Щ…Ш°ЩѓШ±Ш§ШЄ 'ЩѓЩЉЩЃ ШЈШ№Щ…Щ„' Ш­Щ€Щ„ Щ„ЩЉЩ†ЩѓШі Щ€ Ш§Щ„ШЁШ±Ш§Щ…Ш¬ Ш§Щ„Ш­Ш±Ш©"
@@ -10970,10 +11440,6 @@ msgid "Office Workstation"
msgstr "Щ…Ш­Ш·Ш© Ш№Щ…Щ„ Щ…ЩѓШЄШЁЩЉШ©"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Ш®Ш§ШЇЩ…"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, Ш§Щ„Ш®"
@@ -11038,6 +11504,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Ш№Щ…Щ„Ш§ШЎ Щ„ШЁШ±Щ€ШЄЩ€ЩѓЩ€Щ„Ш§ШЄ Щ…Ш®ШЄЩ„ЩЃШ© Щ…Ш«Щ„ ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "ШЁЩ€Ш§ШЁШ© Ш§Щ†ШЄШ±Щ†ШЄ"
@@ -11069,6 +11539,66 @@ msgstr "Щ€ШіШ§Ш¦Ш· Щ…ШЄШ№ШЇШЇШ© - Щ†ШіШ® ШЈЩ‚Ш±Ш§Шµ"
msgid "Scientific Workstation"
msgstr "Щ…Ш­Ш·Ш© Ш№Щ…Щ„ Ш№Щ„Щ…ЩЉШ©"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Ш®ЩЉШ§Ш±Ш§ШЄ"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Ш§Щ„ШЈЩ…Щ†"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Щ‚Ш§Ш¦Щ…Ш© Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„ШЄЩЉ ШіШЄШ¶Щ…Щ† ЩЃЩЉ Ш§Щ„Щ‚Ш±Шµ."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Ш±Ш¬Ш§ШЎ Ш§Ш®ШЄШ± Щ…ШіШ§Ш­Ш© Ш§Щ„Щ‚Ш±Шµ Ш§Щ„Щ…ШЇЩ…Ш¬"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Ш±Ш¬Ш§ШЎ ШЈШЇШ®Щ„ ШіШ±Ш№Ш© ШіЩ€Ш§Щ‚Ш© ЩѓШЄШ§ШЁШ© Ш§Щ„ШЈЩ‚Ш±Ш§Шµ"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "ЩЃЩЉЩ…Ш§ Щ…Ш¶Щ‰ CDRW Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ,ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄЩ…Ш­Щ€ "
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "ЩЃШ¶Щ„Ш§ Ш§Ш®ШЄШ± Ш§ШіЩ… Ш¬Щ‡Ш§ШІ ЩѓШЄШ§ШЁШ© Ш§Щ„ШЈЩ‚Ш±Ш§Шµ (Щ…Ш«Ш§Щ„: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "ЩЃШ¶Щ„Ш§ ШЄШЈЩѓШЇ ШЁШЈЩ†Щѓ ШЄШ±ЩЉШЇ ШЄШ¶Щ…ЩЉЩ† ШҐЩ‚Щ„Ш§Ш№ Ш§Щ„ШЄШ«ШЁЩЉШЄ ЩЃЩЉ Щ‚Ш±ШµЩѓ Ш§Щ„Щ…ШЇЩ…Ш¬."
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ " Щ…Щ† ЩЃШ¶Щ„Щѓ ЩЃШ­Шµ ШҐШ°Ш§ ШЈШ±ШЇШЄ ШЈЩ† ШЄШЄШ¶Щ…Щ‘Щ† \n"
+#~ "Ш±ЩѓЩ‘ШЁ Ш§Щ„Ш¬ШЇШ± Ш№Щ„Щ‰ Щ‚Ш±ШµЩѓ Ш§Щ„Щ…ШЇЩ…Ш¬"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "Ш®Ш§ШЇЩ… NTP"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "ШЄШ±ЩѓЩЉШЁ Ш·Ш±Щ€ШЇ ..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "ШЄШ±ЩѓЩЉШЁ Ш·Ш±Щ€ШЇ ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Щ…Ш±ЩѓШІ Ш§Щ„ШЄЩ‘Ш­ЩѓЩ‘Щ… "
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Ш§Ш®ШЄШ± Ш§Щ„ШЈШЇШ§Ш© Ш§Щ„ШЄЩЉ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ…Щ‡Ш§"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "ШЈШ№ШЇЩ‘ Ш§Щ„Ш·Ш±ЩЉЩ‚Ш© Ш§Щ„ШЄЩЉ ШіЩЉЩ†ШЁЩ‡Щѓ Ш§Щ„Щ†ШёШ§Щ… ШЁЩ‡Ш§"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "no serial_usb found\n"
+
#~ msgid "Graphics card identification: %s\n"
#~ msgstr "Щ…Ш№Ш±ЩЃ ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©: %s\n"
@@ -11154,9 +11684,6 @@ msgstr "Щ…Ш­Ш·Ш© Ш№Щ…Щ„ Ш№Щ„Щ…ЩЉШ©"
#~ msgid "Setting security level"
#~ msgstr "Ш¬Ш§Ш±ЩЉ Ш¶ШЁШ· Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
-#~ msgid "Graphics card"
-#~ msgstr "ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШ§ШґШ©"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ш§Ш®ШЄШ± ШЁШ·Ш§Щ‚Ш© ШґШ§ШґШ©"
@@ -11230,9 +11757,6 @@ msgstr "Щ…Ш­Ш·Ш© Ш№Щ…Щ„ Ш№Щ„Щ…ЩЉШ©"
#~ "ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© Ш№Щ„Щ‰ Ш§Щ„Щ€ШіШ· '%s' ШіЩЉШЄЩ… Щ…Ш­Щ€Щ‡Ш§.\n"
#~ "Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ±ЩЉШЇ Ш§Щ„Щ…ШЄШ§ШЁШ№Ш©, Ш§Ш¶ШєШ· Щ…Щ€Ш§ЩЃЩ‚. "
-#~ msgid "unknown"
-#~ msgstr "ШєЩЉШ± Щ…Ш№Ш±Щ€ЩЃ"
-
#~ msgid "Select a module or write his name:"
#~ msgstr "Ш§Ш®ШЄШ§Ш± Ш§Щ„Щ€Ш­ШЇШ© ШЈЩ€ Ш§ЩѓШЄШЁ Ш§ШіЩ…Щ‡Ш§:"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 502ff3346..e21ba8371 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -60,11 +60,11 @@ msgstr "Bir X vericisi seçin"
msgid "X server"
msgstr "X verici"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Г‡oxlu BaЕџlД±q quraЕџdД±rД±lmasД±"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,44 +72,44 @@ msgstr ""
"Sizin sisteminiz Г§oxlu baЕџlД±q quraЕџdД±rmasД±nД± dЙ™stЙ™klЙ™yir.\n"
"NЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree quraЕџdД±rД±lmasД±"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "NecЙ™ bir XFree qurДџusunu istЙ™yirsiniz?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "BГјtГјn baЕџlД±qlarД± ayrД± ayrД± quraЕџdД±r"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Xinerama ifadЙ™lЙ™rini iЕџlЙ™t"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "TЙ™kcЙ™ \"%s\" kartД±nД± qur (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +121,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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, 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:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -145,7 +145,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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,11 +154,57 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "XГјsusi"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Ekran kartД±"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Rezolyusiya"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Seçənəklər"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Oldu"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Г‡Д±x"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -171,32 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "XГјsusi"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Гњmumi"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Geri al"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -214,11 +256,11 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "ГњfГјqi yenilЙ™mЙ™ sГјr'Й™ti"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Ећaquli yenilЙ™mЙ™ sГјr'Й™ti"
@@ -242,57 +284,42 @@ msgstr "16 milyon rЙ™ng (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4 milyard rЙ™ng (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Rezolyusiyalar"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Rezolyusiya"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya və rəng dərinliyini seçin"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Ekran kartД±: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
+#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "LЙ™Дџv et"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Oldu"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
@@ -301,71 +328,71 @@ msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
msgid "Test of the configuration"
msgstr "QurДџularД±n sД±naДџД±"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura dГјzГјlГјЕџГј: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Siçan növü: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Ећaquli DaramasД±: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun ГњfГјqi YenilЙ™mЙ™si: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Ekran kartД±: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Ekran kartД± yaddaЕџД±: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "RЙ™ng dЙ™rinliyi: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sГјrГјcГј: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -374,166 +401,183 @@ 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?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "ISDN bağlantınızın növü nədir?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Açılış qisminin ilk sektoru"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yГјklЙ™yicisini haraya qurmaq istЙ™yirsiniz?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "MЙ™tn menyulu LILO"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Wİndowsdan açıl (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Açılış yükləyici quruluşu"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (köhnə BIOSlarda işləməz)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "BЙ™sit"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "bЙ™sit"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Parol (tЙ™krar)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "mЙ™hdudlaЕџdД±r"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Гњmumi yaddaЕџ miqdarД± (%d MB tapД±ldД±)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "BirdЙ™n artД±q profilЙ™ icazЙ™ ver"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "YaddaЕџ miqdarД±nД± Mb cinsindЙ™n verin"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Parollar uyДџun gЙ™lmir"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Д°nit Д°smarД±cД±"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "ЖЏsas OS"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -542,7 +586,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -550,155 +594,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:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ЖЏlavЙ™ et"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "QurtardД±"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "TЙ™kmillЙ™Еџdir"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Ne cГјr bir giriЕџ istЙ™yirsiniz?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "DigЙ™r sistemlЙ™r (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "DigЙ™r sistemlЙ™r (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "DigЙ™r sistemlЙ™r (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "ЖЏks"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Sonuna Й™lavЙ™ et"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "CЙ™dvЙ™l"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "E'tibarsД±z"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ЖЏsas"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd böyüklüyü"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVД°deo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "GiriЕџi sil"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "BoЕџ etiket qЙ™bul edilЙ™ bilmЙ™z"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Bu etiket istifadЙ™ edilmЙ™z"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara ГјzГј tapД±ldД±"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "BaЕџqa var?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara üzü var?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "BЙ™li"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -709,17 +754,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:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modul seçənəkləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "HansД± %s sГјrГјcГјsГј sД±nansД±n?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -736,15 +781,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:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -753,56 +798,56 @@ msgstr ""
"%s modulunun yГјklЙ™nmЙ™si iflas etdi.\n"
"YenidЙ™n baЕџqa bir parametr ilЙ™ sД±namaq istЙ™yirsiniz?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s artД±q Й™lavЙ™ edilmiЕџdir)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "XahiЕџ edirik bir istifadЙ™Г§i adД± alД±n"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -811,32 +856,32 @@ msgstr ""
"Bir istifadЙ™Г§i girin\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "HЙ™qiqi adД±"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "QabД±q"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Avtomatik GiriЕџ"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -845,59 +890,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:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "HamД±sД±"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS baЕџlayД±r"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -906,42 +951,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "KrakerlЙ™rЙ™ xoЕџgЙ™lmiЕџsiniz"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "ZЙ™if"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "YГјksЙ™k"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "YГјksЙ™k"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "ЕћГјbhЙ™ci"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -952,7 +997,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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -960,7 +1005,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:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -969,13 +1014,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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -990,7 +1035,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:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1000,32 +1045,49 @@ msgstr ""
"tamamilЙ™ qapalД±dД±r.\n"
"TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™si indi Й™n ГјstdЙ™dir."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Seçənəklər"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Təhlükəsizlik səviyyəsini seçin"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1050,7 +1112,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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gЙ™lmissiniz!"
@@ -1064,7 +1126,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:915
+#: ../../bootloader.pm_.c:938
#, 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"
@@ -1079,7 +1141,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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1093,7 +1155,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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmЙ™k ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1108,84 +1170,180 @@ 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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Masa ГњstГј"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "BaЕџlama Menyusu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fayl/_Г‡Д±x"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle KateqoriyasД±ndan Monitor"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle Monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "ЖЏnЙ™nЙ™vi Monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "ЖЏnЙ™nЙ™vi Gtk+ Monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Açılışda Auroranı başlat"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub modu"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot modu"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Sistemi qur"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "XЙ™ta"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "NoVД°deo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Quruluş sinifini seçin"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1194,43 +1352,70 @@ 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Paket seçkilərini saxla"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriЕџ istЙ™mirЙ™m"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
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:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
+#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
+#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
+#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
+#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq üçün açıla bilmir: %s"
@@ -1275,69 +1460,119 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "Screenshots will be available after install in %s"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "FransД±zca"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belçika dili"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Almanca"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Yunanca"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norveçcə"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "İsveçcə"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Д°talyanca"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "serial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "yeni"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Verici"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Bağlama nöqtəsi"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Verici"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Bağlama nöqtəsi: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Seçənəklər: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "ЖЏvvЙ™lcЙ™ datanД±zД±n yedЙ™yini alД±n"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "DiqqЙ™tlЙ™ Oxuyun!"
@@ -1350,15 +1585,6 @@ msgstr ""
"Aboot istifadЙ™ etmЙ™yi istЙ™yirsinizsЙ™, boЕџ disk sahЙ™si (2048 sektor bЙ™sdir.)\n"
"buraxmayД± unutmayД±n."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "XЙ™ta"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Sehirbaz"
@@ -1385,7 +1611,7 @@ msgid "Please click on a partition"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "ЖЏtraflД±"
@@ -1414,13 +1640,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "BoЕџ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "DigЙ™r"
@@ -1428,12 +1654,12 @@ msgstr "DigЙ™r"
msgid "Filesystem types:"
msgstr "Fayl sistemi növü:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Növ"
@@ -1443,7 +1669,7 @@ msgstr "Növ"
msgid "Use ``%s'' instead"
msgstr "YerinЙ™ ``%s'' iЕџlЙ™t"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Sil"
@@ -1451,7 +1677,7 @@ msgstr "Sil"
msgid "Use ``Unmount'' first"
msgstr "ЖЏvvЙ™lcЙ™ ``AyД±r'-Д± iЕџlЙ™t"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1459,111 +1685,111 @@ msgstr ""
"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
"silinЙ™cЙ™kdir"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Qeyd etmЙ™dЙ™n Г‡Д±x"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Avtomatik ayД±r"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "HamД±sД±nД± tЙ™mizlЙ™"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Daha Г‡ox"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1571,11 +1797,11 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmЙ™k istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "XЙ™bЙ™rdarlД±q"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1583,131 +1809,114 @@ msgstr ""
"Disket sГјrГјcГјyЙ™ bir disket yerlЙ™Еџdirin\n"
"Bu disketdЙ™ki bГјtГјn mЙ™'lumatlar yox olacaqdД±r"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../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/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Seçənəklər"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Böyüklüyünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "DaЕџД±"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "ЕћЙ™killЙ™ndir"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "BaДџla"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "RAIDЙ™ Й™lavЙ™ et"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "LVMЙ™ Й™lavЙ™ et"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "AyД±r"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "RAIDdЙ™n ayД±r"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "LVMdЙ™n ayД±r"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "RAIDi dЙ™yiЕџdir"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Loopback üçün istifadə et"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "BaЕџlanДџД±Г§ sektoru: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Bağlama nöqtəsi: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "XГјsusiyyЙ™tlЙ™r: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Bölmə növünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "HansД± dili istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1716,139 +1925,144 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"ЖЏvvЙ™lcЙ™ loopback-Д± lЙ™Дџv edin."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "%s avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi uclarД± hesaplanД±r"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Böyüklüyü dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
"silinЙ™cЙ™kdir"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Yeni böyüklük seçin"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "HansД± diskЙ™ daЕџД±maq istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "HansД± sektora daЕџД±maq istЙ™yirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "DaЕџД±nД±r"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Bölmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM adД±?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Loopback fayl adД±: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "HЙ™qiqi adД±"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl baЕџqa bir loopback tЙ™rЙ™findЙ™n istifadЙ™dЙ™dir, baЕџqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardД±r. Д°ЕџlЙ™dilsin?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "avadanlД±q"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "sЙ™viyyЙ™"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "parça böyüklüyü"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "DiqqЙ™tlД± olun: bu Й™mЙ™liyyat tЙ™hlГјkЙ™lidir."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Bu paket yenilЙ™nmЙ™lidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1860,7 +2074,7 @@ msgstr ""
"ehtiyacД±nД±z yoxdur vЙ™ ya LILO istifadЙ™sini sД±nayarsД±nД±z, ancaq LILO iЕџlЙ™mЙ™yЙ™ "
"bilЙ™r."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1872,7 +2086,7 @@ msgstr ""
"istЙ™yirsinizsЙ™, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1883,132 +2097,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"Й™lavЙ™ etmЙ™yi unutmayД±n"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
"silinЙ™cЙ™kdir"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "ЕћЙ™killЙ™ndirilir"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "AvadanlД±q: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sГјrГјcГј hЙ™rfi: %s (sadЙ™cЙ™ tЙ™xmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Növ: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "BaЕџlanДџД±c: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Böyüklüyü: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dЙ™n silindr %d-yЙ™\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "ЕћЙ™killЙ™ndirilmiЕџ\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "ЕћЙ™killЙ™ndirilmЙ™miЕџ\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "BaДџlД±\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2017,7 +2231,7 @@ msgstr ""
"Loopback faylД±:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2025,27 +2239,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılışı üçün)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "SЙ™viyyЙ™ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça böyüklüyü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-disklЙ™ri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylД± adД±: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2056,7 +2270,7 @@ msgstr ""
"Bəlkə də bu bir Sürücü bölməsidir.\n"
"Onda bunu ele belЙ™cЙ™ buraxД±n.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2067,64 +2281,59 @@ msgstr ""
"Bu, ikili açılış üçün xüsusi\n"
"Bootstrap-dД±r.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Böyüklük: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "GeometriyasД±: %s silindr, %s baЕџ, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "MЙ™'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-disklЙ™ri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nö'li\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Seçənəklər: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol Г§ox sadЙ™dir (en az %d xarakter boyunda olmalД±dД±r)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyДџun gЙ™lmir"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2178,23 +2387,23 @@ msgstr "NIS sahЙ™si"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrД±lД±rkЙ™n xЙ™ta oldu: %s"
@@ -2211,33 +2420,33 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2246,26 +2455,26 @@ msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardД±r.\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2273,259 +2482,263 @@ msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Heç disk bölməniz yoxdur!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Гњmumi"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Kart mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "ЕћЙ™killЙ™ndirilir"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Bölmə növünü Dəyişdir"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Г‡Д±x"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Kömək"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Kömək"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Kömək/_Haqqında..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Siçan"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Kart mem (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "LЙ™Дџv et"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Siçan"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Д°zah"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "TanД±tma"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Fayl seç"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Keçit avadanlığı"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 dГјymЙ™li"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Г‡Д±x"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "AvadanlД±q mЙ™'lumatД±na bax"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Siçan qurğuları"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Siçan qurğuları"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapД±sД±nda tapД±ldД±"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Xahiş edirik gözləyin"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Гњmumi"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Avtomatik yoxla"
+msgid "Card model :"
+msgstr "Kart mem (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Bölmə növünü Dəyişdir"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ЕћЙ™killЙ™ndirilir"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3917,7 +4130,7 @@ msgstr ""
"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
"Й™mЙ™liyyatД± lЙ™Дџv edЙ™ bilЙ™rsiniz."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3925,7 +4138,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3954,20 +4167,20 @@ msgstr ""
"\n"
"Bu vericilЙ™ri qurmaq istЙ™yirsiniz?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "NД°S domeyni olmadan translasiya iЕџlЙ™dilЙ™ bilmЙ™z"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT ЕџЙ™klindЙ™ deyildir"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3975,7 +4188,7 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilЙ™ baЕџladД±n."
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s faylД± oxunurkan xЙ™ta oldu"
@@ -4014,7 +4227,7 @@ msgstr ""
"Bir swap sahЙ™niz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
@@ -4196,12 +4409,12 @@ msgstr ""
"Bir xЙ™ta oldu, fЙ™qЙ™t necЙ™ dГјzЙ™ldilЙ™cЙ™yini bilmirЙ™m.\n"
"Davam edin, riski sizЙ™ aitdir!"
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4213,12 +4426,12 @@ msgstr ""
"ЖЏvvЙ™ldЙ™n Linuks qurulu bir sistemdЙ™ \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadЙ™ edЙ™rЙ™k Cd-Rom'u yoxlayД±n.\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "%s SisteminЙ™ XoЕџgЙ™lmiЕџsiniz"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disket sГјrГјcГј yoxdur"
@@ -4228,7 +4441,7 @@ msgstr "Disket sГјrГјcГј yoxdur"
msgid "Entering step `%s'\n"
msgstr "BaЕџlanДџД±c addД±mД± `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4241,78 +4454,78 @@ msgstr ""
"dЙ™CDROMdan baЕџlatdД±ДџД±nД±z zaman,\n"
" 'F1'Й™ basД±n vЙ™ 'text' yazaraq enter'Й™ basД±n."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
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:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "XЙ™talД± paket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "BuraxД±lД±Еџ: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Böyüklüyü: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "ЖЏhЙ™miyyЙ™t: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "AЕџaДџД±dakД± paketlЙ™r qurulacaqdД±r"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "AЕџaДџД±dakД± paketlЙ™r sistemdЙ™n silinЙ™cЙ™klЙ™r"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazД±mlД± bir paketdir, sistemdЙ™n Г§Д±xardД±la bilmЙ™z"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdЙ™n Г§Д±xarda bilmЙ™zsД±nД±z. ArtД±q qurulmuЕџdur."
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4320,77 +4533,77 @@ msgstr ""
"Bu paket yenilЙ™nmЙ™lidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdЙ™n Г§Д±xarda bilmЙ™zsiniz. YenilЙ™nmЙ™lidir"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "DisketЙ™ qeyd et"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan Г§Д±x"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "TЙ™xmini olaraq hesaplanД±r"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Qalan mГјddЙ™t"
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "QЙ™bul Et"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "RЙ™dd Et"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4404,17 +4617,17 @@ msgstr ""
"\"%s\" adlД± Cd-Romu sГјrГјcГјnГјzЙ™ taxД±n vЙ™ OLDU'ya basД±n.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "YenЙ™ dЙ™ davam edЙ™k?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "PaketlЙ™ri istЙ™rkЙ™n bir xЙ™ta oldu:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
@@ -4733,108 +4946,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Bütün mövcud klaviaturaların siyahısı"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "HansД± qurulum sinifini istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Qurulum/GГјncЙ™llЙ™mЙ™"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Bu bir qurulum mu, yoxsa gГјncЙ™llЙ™mЙ™midir?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Tövsiyə edilən"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "GГјncЙ™llЙ™mЙ™"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Siçan Qapısı"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "DГјymЙ™ emulyasiyasД±"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "DГјymЙ™ 2 emulyasiyasД±"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "DГјymЙ™ 3 emulyasiyasД±"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE qapД±larД± qurulur"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri üçün bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4853,7 +5066,7 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4861,78 +5074,78 @@ msgstr ""
"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
"Г–zГјnГјz davam edЙ™ bilЙ™rsiniz."
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
"baЕџlatmalД±sД±nД±z."
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "XЙ™talД± bloklar sД±nansД±nmД±?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Bölmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylД± yaradД±lД±r vЙ™ ЕџЙ™killЙ™ndirilir"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "GГјncЙ™llЙ™nЙ™cЙ™k paketlar tapД±lД±r"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Bu paketi sistemdЙ™n Г§Д±xarda bilmЙ™zsД±nД±z. ArtД±q qurulmuЕџdur."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "GГјncЙ™llЙ™nЙ™cЙ™k paketlar tapД±lД±r"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4940,59 +5153,59 @@ msgid ""
msgstr ""
"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "DisketЙ™ qeyd et"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
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:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -5012,11 +5225,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlД± Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Qurulum hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5025,21 +5238,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Qurulum sonrasД± qurДџular"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5109,7 +5322,7 @@ msgstr ""
"USA\n"
"ГјnvanД±na yazД±nД±z."
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5121,185 +5334,194 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, 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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Sisteminiz hansД± mЙ™qsЙ™dlЙ™ istifadЙ™ edilЙ™cЙ™k?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Г‡ap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "BaЕџqa var?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "MГјndЙ™ricat"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Г‡ap Edici"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN kartД±"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "SЙ™s kartД±"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV kartД±"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "NIS istifadЙ™ et"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "\"Windows\"u sil"
+msgid "Windows Domain"
+msgstr "NIS sahЙ™si"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Yerli Г‡ap Edici"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS sahЙ™si"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS Verici"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "TanД±tma"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS sahЙ™si"
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS Verici"
+msgid "Authentication Windows Domain"
+msgstr "TanД±tma"
#: ../../install_steps_interactive.pm_.c:1142
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "SahЙ™(domain) adД±"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5330,19 +5552,19 @@ msgstr ""
"yerlЙ™Еџdirin\n"
"vЙ™ \"OLDU\" basД±n."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Д°lk disket sГјrГјcГј"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Д°kinci disket sГјrГјcГј"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "NЙ™zЙ™rЙ™ Alma"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5372,7 +5594,7 @@ msgstr ""
"vЙ™ \"OLDU\" basД±n.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5381,28 +5603,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "BaДџД±ЕџlayД±n, disket sГјrГјcГј yoxdur"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, 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:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5410,11 +5632,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5422,16 +5644,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:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yГјklЙ™yicini qur"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5448,17 +5670,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:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5468,7 +5690,7 @@ msgstr ""
"\n"
"HЙ™qiqЙ™tЙ™n dЙ™ Г§Д±xmaq istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5494,15 +5716,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:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5516,15 +5738,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmЙ™k istЙ™yЙ™ bilЙ™rsiniz axД±.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "AvtomatlaЕџdД±rД±lmД±Еџ"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "TЙ™krarla"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5552,405 +5774,468 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "ЖЏtraflД±"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- ЖЏvvЙ™lki"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "SonrakД± ->"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "XЙ™talД± tЙ™rcih, tЙ™krar sД±nayД±n\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Seçənəklər: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Г‡ex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Д°spanca"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "FincЙ™"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "FransД±zca"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Д°ngiliz (UK) klaviaturasД±"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturasД±"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "ErmenicЙ™ (yazД± maЕџД±nД±)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "ErmenicЙ™ (fonetik)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "AzЙ™rbaycanca (latД±n)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "fЙ™allaЕџdД±r"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "ErmenicЙ™ (fonetik)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniya dili"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "İsveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "İsveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Г‡ex dili (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Almanca (Г¶lГј dГјymЙ™lЙ™r olmasД±n)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "GГјrcГј dili (\"Rus\" sД±rasД±)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "GГјrcГј dili (\"LatД±n\" sД±rasД±)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "XД±rvatca"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Д°srail"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Д°srail (Fonetik)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Д°zlandiya dili"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Д°talyanca"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Yaponca 106 dГјymЙ™li"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Koreya klaviaturasД±"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "LatД±n Amerika dili"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Yeri"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "AzЙ™rbaycanca (kiril)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sД±rasД±)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sД±rasД±)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "FransД±zca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "SlovencЙ™"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "AzЙ™rbaycanca (kiril)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "CЙ™dvЙ™l"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "TГјrkcЙ™ (Й™nЙ™nЙ™vi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "TГјrkcЙ™ (mГјasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturasД± (beynЙ™lmilЙ™l)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latД±n/kiril)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5959,37 +6244,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "DairЙ™vi baДџlama %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "MЙ™ntiqi ciltlЙ™ri birinci olaraq sil\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefon nömrəsi"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Bölmə şəkilləndirilməsi"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -6092,51 +6377,43 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "TЖЏKЖЏRД° OYNADIN!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "SonrakД± ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- ЖЏvvЙ™lki"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "DoДџrudur?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "MЙ™'lumat"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Ağacı Aç"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "AДџacД± Qapat"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Otaq vЙ™ grup sД±ralamasД± arasД±nda gЙ™z"
@@ -6159,6 +6436,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "dhcp istifadЙ™ et"
@@ -6186,7 +6467,7 @@ msgstr ""
"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu baДџlantД± ЕџЙ™klini qura bilmЙ™rЙ™m."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Şəbəkə ara üzünü seçin"
@@ -6199,7 +6480,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
@@ -6214,7 +6495,7 @@ msgstr ""
"MЙ™sЙ™lЙ™n``kompГјteradД±.sahЙ™adД±.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Ev sahibi adД±"
@@ -6242,7 +6523,7 @@ msgstr "ISDN bağlantınızın növü nədir?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6364,43 +6645,43 @@ msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
msgid "Dialup options"
msgstr "Çevirməli şəbəkə seçənəkləri"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "BaДџlantД± adД±"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefon nömrəsi"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "GiriЕџ adД±"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skript Й™saslД±"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal Й™saslД±"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "SahЙ™(domain) adД±"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
@@ -6513,13 +6794,13 @@ msgstr "Qurulacaq profili seçin"
msgid "Use auto detection"
msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "AvadanlД±qlar tanД±nД±r..."
@@ -6633,7 +6914,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6645,50 +6926,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:298
+#: ../../network/network.pm_.c:299
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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "%s ЕџЙ™bЙ™kЙ™ avadanlД±ДџД± qurulur"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (sГјrГјcГј %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ГјnvanД±"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "AvtomatlaЕџdД±rД±lmД±Еџ IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Açılışda başladılır"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6699,40 +6980,40 @@ 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:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "VЙ™kil vericilЙ™r quraЕџdД±rД±lmasД±"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP vЙ™kil verici"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP vЙ™kil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "VЙ™kil verici ftp://... olmalД±dД±r."
@@ -6744,7 +7025,7 @@ msgstr "Д°nternet qurДџularД±"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Д°nternete giriЕџi indi sД±namaq istЙ™yirsiniz?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "BaДџlantД±nД±z sД±nanД±r..."
@@ -6772,43 +7053,43 @@ msgstr "BaДџlantД± quraЕџdД±rД±lmasД±"
msgid "Please fill or check the field below"
msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kart IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Sizin şəxsi telefon nömrəniz"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Д°nternet xidmЙ™t vericinizin adД± (mЙ™sЙ™lЙ™n azeronline.com)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "İXM telefon nömrəsi"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Dns xidmətcisi 1 (arzuya görə)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Dns xidmətcisi 2 (arzuya görə)"
@@ -6817,30 +7098,30 @@ msgstr "Dns xidmətcisi 2 (arzuya görə)"
msgid "Choose your country"
msgstr "Klaviaturanızı seçin"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "YД±Дџma modu"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Hesab GiriЕџi (istifadЙ™Г§i adД±)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6877,7 +7158,7 @@ msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
msgid "Error writing to file %s"
msgstr "%s faylД±na yazarkЙ™n xЙ™ta oldu"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6923,7 +7204,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6952,7 +7233,7 @@ msgstr "Uzaq Г‡ap Edici"
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq Г§ap edici vericisi(lpd)"
@@ -6972,7 +7253,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Г‡ap Edici Vericisi"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Г‡ap Edici avadanlД±ДџД± URI"
@@ -6981,112 +7262,112 @@ msgstr "Г‡ap Edici avadanlД±ДџД± URI"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Г‡ap Edici"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylД±na yazarkЙ™n xЙ™ta oldu"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (ЖЏsas)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Г‡ap ediciniz nЙ™ ЕџЙ™kildЙ™ baДџlД±dД±r?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -7097,17 +7378,21 @@ msgstr ""
"BuradakД± hЙ™r Г§ap edici avtomatik tapД±lacaqdД±r.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7118,7 +7403,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7128,36 +7413,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "QapД±"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Г‡ap Edicisiz"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7170,37 +7455,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Yerli Г‡ap Edici"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Yerli Г‡ap Edici"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7214,53 +7530,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "QapД±larД± sД±na"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapД±ldД±"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7268,43 +7581,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Yerli Г‡ap Edici"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Yerli Г‡ap Edici"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
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:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7312,7 +7616,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7320,83 +7624,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "QuraЕџdД±rma"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7406,31 +7665,51 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adД±nД±nД± vermЙ™lisiniz."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "UzaqdakД± ev sahibi adД±"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "UzaqdakД± ev sahibi adД±"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "UzaqdakД± ev sahibi adД±"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s tapД±ldД±"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "BaДџlantД±nД±z baЕџladД±lД±r..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7443,35 +7722,46 @@ msgstr ""
"IP ГјnvanД±, Г§ap edicinin paylaЕџdД±rma adД±, iЕџlЙ™mЙ™ grupu, istifadЙ™Г§i adД± vЙ™ \n"
"parol verilmЙ™lidir."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "SMB verici adД±"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "PaylaЕџdД±rma adД±"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Д°Еџ qrupu"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7495,7 +7785,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7504,7 +7794,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7512,11 +7802,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare Г‡ap Edici QurДџularД±"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7528,88 +7818,109 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Г‡ap Edici Vericisi"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Г‡ap Edici QurДџularД±"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+msgid ""
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
"mümkünsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Г‡ap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Г‡ap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Г‡ap edici adД±"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7624,28 +7935,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "DoДџrudur?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Г‡ap Edici BaДџlantД±sД±"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "NЙ™ cГјr bir Г§ap ediciniz var?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7654,18 +7965,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7675,12 +7986,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7688,7 +7999,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7701,7 +8012,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7711,34 +8022,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Г‡ap edicini sД±namaq istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "QapД±larД± sД±na"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7746,45 +8057,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "BЙ™li, hЙ™r iki sД±naq sЙ™hifЙ™sini dЙ™ Г§ap et"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Г‡ap Edici"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7800,7 +8111,7 @@ msgstr ""
"\n"
"DГјz mГј iЕџlЙ™yir?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7810,16 +8121,16 @@ msgstr ""
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
"DГјz mГј iЕџlЙ™yir?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Г‡ap Edicisiz"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7828,15 +8139,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7845,7 +8156,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7853,41 +8164,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7897,7 +8208,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7906,46 +8217,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Qapat"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7954,9 +8265,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7967,19 +8278,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7989,51 +8300,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8041,61 +8352,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Г‡ap edici adД± tЙ™kcЙ™ hЙ™rf, rЙ™qЙ™m vЙ™ alt xЙ™tt daxil edЙ™ bilЙ™r"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Г‡ap Edicisiz"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "BaДџlantД±nД±z baЕџladД±lД±r..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "ЕћЙ™bЙ™kЙ™ni qur"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayД±b"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8103,12 +8414,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8118,34 +8429,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "YГјksЙ™k"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "ЕћГјbhЙ™ci"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8160,12 +8471,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8179,70 +8490,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Г‡ap Edicini Qur"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Г‡ap Edicini Qur"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir Г§ap edici qurmaq istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Г‡ap Edici"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8253,7 +8564,7 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8263,141 +8574,137 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "ЕћЙ™bЙ™kЙ™ni qur"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Г‡Д±x"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Г‡ap Edici BaДџlantД±sД±"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Yerli Г‡ap Edici"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ЕћЙ™bЙ™kЙ™ni yenidЙ™n baЕџlatmaq istЙ™yirsiniz?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
@@ -8449,8 +8756,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "VЙ™kil verici ftp://... olmalД±dД±r."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8501,44 +8808,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-" but very sensitive: it must not be used for a machine "
-"connected to others\n"
-" or to the Internet. There is no password access."
-msgstr ""
-"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
-"asand\n"
-"iЕџlЙ™dilЙ™cЙ™k, ancaq xЙ™talara qarЕџД± da hЙ™ssaiyyЙ™ti dЙ™ artacaqdД±r. Д°nternetЙ™ \n"
-"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Bu tЙ™hlГјkЙ™sizlik sЙ™viyyЙ™siylЙ™ sistemin bir verici olaraq istifadЙ™si "
-"mГјmkГјndГјr. \n"
-"TЙ™hlГјkЙ™sizlik, birdЙ™n Г§ox alД±cД±nД±n baДџlanmasД±na icazЙ™ verЙ™cЙ™k ЕџЙ™kildЙ™ "
-"artД±rД±lmД±ЕџdД±r. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Seçənəklə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"
@@ -8850,7 +9119,7 @@ msgstr "Д°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -8973,7 +9242,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Д°darЙ™ MЙ™rkЙ™zi"
@@ -9072,21 +9341,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
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:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "\"%s\"a(Й™) tЙ™krar girin vЙ™ dЙ™yiЕџikliklЙ™ri fЙ™allaЕџdД±rД±n"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9094,177 +9363,177 @@ msgstr ""
"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
"XЙ™sЙ™rli hissЙ™lЙ™ri dГјzЙ™ltmЙ™yЙ™ cЙ™hd edЙ™cЙ™m"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Databeyz"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Databeyz"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS Verici"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS Verici"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_YardД±m"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "BaДџlД± deyil"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Sil"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Fayl seç"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "QuraЕџdД±rД±lД±r..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "yenidЙ™n quraЕџdД±r"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disket sГјrГјcГј yoxdur"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "XЙ™ta"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Qurulum sonrasД± qurДџular"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9279,23 +9548,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9303,40 +9572,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "TЙ™briklЙ™r!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Qurulum"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9344,7 +9626,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9352,34 +9634,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "QapД±larД± sД±na"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9387,737 +9733,800 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylД± oxunurkan xЙ™ta oldu"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, 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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+msgid "Please check if you are using a DVDR device"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup_.c:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Növ"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Г‡Й™rx"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Г‡Й™rx"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurДџularД±"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, 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:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "DigЙ™r"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "XГјsusi"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- ЖЏvvЙ™lki"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "SonrakД± ->"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Xahiş edirik siçanınızı seçin"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurДџularД±"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10128,7 +10537,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10149,7 +10558,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10158,7 +10567,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10182,7 +10591,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10199,21 +10608,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10227,17 +10636,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10254,7 +10663,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10294,7 +10703,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10305,7 +10714,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10318,7 +10727,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10357,95 +10766,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s qurulumu iflas etdi. Olan xЙ™ta:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol VasitЙ™lЙ™ri"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Д°darЙ™ MЙ™rkЙ™zi"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "Usta"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Siçan"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Uzaq Г‡ap Edici"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "PaylaЕџdД±rma adД±"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Г‡ap Edici"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД± SehirbazД±"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "TanД±tma"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Xahiş edirik gözləyin"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10457,148 +10893,148 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Qurulumdan Г§Д±x"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "QapД±"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan Г§Д±x"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД± (%d adapter)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Profili sil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "SilinЙ™cЙ™k profil:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Yeni profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Ev sahibi adД±:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Д°nternet imkanД±"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Növ: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Keçit:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Ara Гјz"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Hal:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "İnternet keçişini Qur..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "SГјrГјcГј"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Ara Гјz"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Hal:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Yerli ЕћЙ™bЙ™kЙ™ni QuraЕџdД±r..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Sehirbaz..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "ЖЏlavЙ™ Et"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "BaДџlandД±"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "BaДџlД± deyil"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "BaДџlan..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "BaДџlantД±nД± KЙ™s..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10606,44 +11042,44 @@ msgstr ""
"Qurulu ara ГјzГјnГјz yoxdure.\n"
"ЖЏvvЙ™lcЙ™ onlarД± 'QuraЕџdД±r'a basaraq qurun"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "%s Adapteri: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Açılış Protokolu"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Açılışda başladılır"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP alД±cД±sД±"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "FЙ™al"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "FЙ™al"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -10651,121 +11087,121 @@ msgstr ""
"Heç İnternet bağlantınız yoxdur.\n"
"ЖЏvvЙ™lcЙ™ onlarД± 'QuraЕџdД±r'a basaraq qurun"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Д°nternet baДџlantД±sД± quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Д°nternet BaДџlantД±sД± QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Bağlantı növü:"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "ParametrlЙ™r"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Keçit"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Eternet KartД±"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "istifadЙ™ qaydasД±: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modul adД±"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Böyüklük"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "açılış disketi yaradılması"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "Й™sas"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy xЙ™tasД±: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Г§Й™yirdЙ™k buraxД±lД±ЕџД±"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Гњmumi"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "UstalarД±n SahЙ™si"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrdin arzuya baДџlД± olan arqumentlЙ™ri"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Modul Й™lavЙ™ et"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "zorla"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "lazД±m olarsa"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "scsi modulları keç"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "raid modulları keç"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Modulu Г§Д±xart"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "NЙ™ticЙ™"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Diski yarat"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10774,12 +11210,12 @@ msgstr ""
"%s avadanlД±ДџД±nda medya yoxdur.\n"
"XahiЕџ edirik. birini taxД±n."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilЙ™ bilmir: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10790,104 +11226,104 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "QurtardД±"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Qurulum hazД±rlanД±r"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "mЙ™hdudlaЕџdД±r"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "mЙ™hdudlaЕџdД±r"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10896,121 +11332,126 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Bağlama nöqtəsi"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Д°Еџ Yeri"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "DayandД±r"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Г‡ap Edici"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Fayl seç"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Uzaq Г‡ap Edici"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Д°nit Д°smarД±cД±"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Qurulum"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Qurulumdan Г§Д±x"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11022,31 +11463,31 @@ msgstr ""
"\n"
"NЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "passivlЙ™Еџdir"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "yenidЙ™n quraЕџdД±r"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "VericilЙ™r baДџlanД±r..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11058,19 +11499,19 @@ msgstr ""
"\n"
"NЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "fЙ™allaЕџdД±r"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "XidmЙ™tlЙ™r fЙ™allaЕџdД±rД±lД±r..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11086,21 +11527,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
"ehtiyacД±nД±z var."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Гњz %s (%s modulu iЕџlЙ™dilir)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Ara Гјz %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11108,11 +11549,11 @@ msgstr ""
"SisteminizdЙ™ ЕџЙ™bЙ™kЙ™ kartД± tapД±la bilmЙ™yib.AvadanlД±ДџД± quran vasitЙ™ni iЕџЙ™ "
"salД±n."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11127,18 +11568,18 @@ msgstr ""
"\n"
"Yerli ЕћЙ™bЙ™kЙ™ adapterinizi qurmaq ГјzЙ™rЙ™yЙ™m?"
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayД±b"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11148,17 +11589,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11169,7 +11610,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11181,33 +11622,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quДџusunda dЙ™yЙ™sЙ™n bir LAN Гјnvan Г§axД±ЕџmasД± tapД±ldД±!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11215,20 +11656,20 @@ msgstr ""
"DiqqЙ™t! Var olan Firewall qurДџusu tapД±ldД±. YГјklЙ™mЙ™dЙ™n sonra bir az Й™l "
"gЙ™zdirЙ™ bilЙ™rsiniz."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "QuraЕџdД±rД±lД±r..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "SkriptlЙ™ qurulur, proqram tЙ™'minatД± qurulur, xidmЙ™tlЙ™r baЕџladД±lД±r..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkЙ™n xЙ™ta oldu"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11239,23 +11680,23 @@ msgstr ""
"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
"iЕџlЙ™dilir."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "QuraЕџdД±rma artД±q qurtarД±bdД±r, amma fЙ™aliyyЙ™ti dayandД±rД±lД±b."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "QuraЕџdД±rma artД±q qurtarД±bdД±r vЙ™ fЙ™aliyyЙ™tdЙ™dir."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11270,20 +11711,13 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Д°darЙ™ MЙ™rkЙ™zi"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "İstifadə edəcəyiniz vasitəni seçin"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11292,108 +11726,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "FransД±zca (Kanada/Quebec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "FransД±zca"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Д°zlandiya dili"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11417,11 +11855,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "istifadЙ™ qaydasД±: keyboarddrake [--expert] [klavatura]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Konsolda BackSpace'in Silmə funksyasını görməyini istəyirmisiniz?"
@@ -11445,7 +11883,7 @@ msgstr "TЙ™kmillЙ™ЕџdirmЙ™ iЕџi baЕџlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -11557,148 +11995,149 @@ msgstr "TЙ™qvim"
msgid "Content of the file"
msgstr "Fayl mЙ™zmunu"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "SahЙ™(domain) adД±"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix mЙ™ktub vericisi, Inn xЙ™bЙ™r vericisi"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "avadanlД±q"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Г‡ap Edici Vericisi"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "avadanlД±q"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "ЕћЙ™killЙ™ndirilir"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "QuraЕџdД±rma"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "FЙ™rqli qeyd et..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_USB avadanlД±ДџД± tapД±lmadД±\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "3 dГјymЙ™ emulasiyasД±"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "AvadanlД±qlar tanД±nД±r..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "QapД±larД± sД±na"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Ekran kartınızı seçin"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Açılış avadanlığı"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11706,7 +12145,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11726,15 +12165,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Firewall quraЕџdД±rД±lmasД±"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Firewall quraЕџdД±rД±lmasД±"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11746,7 +12185,7 @@ msgstr ""
"Firewall qurДџularД±nД± artД±q qurtarmД±sД±nД±z.\n"
"Qur-a tД±qlayaraq firewall qurДџularД±n silin ya da tЙ™kmillЙ™Еџdirin."
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11997,56 +12436,60 @@ msgstr "%s açıla bilmir: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Yazmaq üçün %s açıla bilmir: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Firewall quraЕџdД±rД±lmasД±"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Verici, Veb/FTP"
@@ -12097,6 +12540,10 @@ msgstr ""
"SЙ™s ilЙ™ Й™laqЙ™dЙ™r vasitЙ™lЙ™r: mp3 vЙ™ ya midi Г§alДџД±Г§Д±lar, qarД±ЕџdД±rД±Г§Д±lar, vs."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linuks vЙ™ pulsuz proqram tЙ™'minatД±larД± Kitablar vЙ™ HowtolarД±"
@@ -12184,10 +12631,6 @@ msgid "Office Workstation"
msgstr "Д°Еџ Yeri StansiyasД±"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Verici"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
@@ -12250,6 +12693,10 @@ msgid "Clients for different protocols including ssh"
msgstr "SSH daxil bir Г§ox protokollarД±n alД±cД±larД±"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "İnternet keçişı"
@@ -12281,6 +12728,108 @@ msgstr "Multimedya - CD YandД±rma"
msgid "Scientific Workstation"
msgstr "Elmi iЕџ stansiyasД±"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid ""
+#~ "This level is to be used with care. It makes your system more easy to "
+#~ "use,\n"
+#~ " but very sensitive: it must not be used for a machine "
+#~ "connected to others\n"
+#~ " or to the Internet. There is no password access."
+#~ msgstr ""
+#~ "Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
+#~ "asand\n"
+#~ "iЕџlЙ™dilЙ™cЙ™k, ancaq xЙ™talara qarЕџД± da hЙ™ssaiyyЙ™ti dЙ™ artacaqdД±r. "
+#~ "Д°nternetЙ™ \n"
+#~ "bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Bu tЙ™hlГјkЙ™sizlik sЙ™viyyЙ™siylЙ™ sistemin bir verici olaraq istifadЙ™si "
+#~ "mГјmkГјndГјr. \n"
+#~ "TЙ™hlГјkЙ™sizlik, birdЙ™n Г§ox alД±cД±nД±n baДџlanmasД±na icazЙ™ verЙ™cЙ™k ЕџЙ™kildЙ™ "
+#~ "artД±rД±lmД±ЕџdД±r. "
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Seçənəklər"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "TЙ™hlГјkЙ™sizlik"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Klaviatura quruluşunu seçiniz."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Xahiş edirik siçanınızı seçin"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "VЙ™kil verici ftp://... olmalД±dД±r."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "\"Windows\"u sil"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "CЙ™dvЙ™l"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NIS Verici"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Uzaq Г‡ap Edici"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "%s paketi qurulur"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "%s paketi qurulur"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "%s paketi qurulur"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+
+#~ msgid "Control Center"
+#~ msgstr "Д°darЙ™ MЙ™rkЙ™zi"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "İstifadə edəcəyiniz vasitəni seçin"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "serial_USB avadanlД±ДџД± tapД±lmadД±\n"
+
#~ msgid "Choose options for server"
#~ msgstr "X verici üçün seçənəkləri göstərin"
@@ -12345,9 +12894,6 @@ msgstr "Elmi iЕџ stansiyasД±"
#~ msgid "Setting security level"
#~ msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#~ msgid "Graphics card"
-#~ msgstr "Ekran kartД±"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seçin"
@@ -12424,6 +12970,3 @@ msgstr "Elmi iЕџ stansiyasД±"
#~ msgid "Percentage of packages to install"
#~ msgstr "Qurulacaq paketlЙ™rin faizi"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Təhlükəsizlik səviyyəsini seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index e808ec713..250f86846 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-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -57,55 +57,55 @@ msgstr "Абярыце X сервер"
msgid "X server"
msgstr "X сервер"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
#, fuzzy
msgid "Multi-head configuration"
msgstr "чытанне настройкi"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Пазначце памер вiдэапамяцi"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Настройка XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Канфiгураваць маю карту"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Сервер XFree86 %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s з падтрымкай 3D-паскарэння"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,11 +150,57 @@ msgstr ""
"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Па выбару"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Вiдэакарта"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Манiтор"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Памеры экрану"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Опцыi"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ок"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Выхад"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -167,32 +213,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Абярыце манiтор"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Манiтор"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Па выбару"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Агульны"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Адкат"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -215,11 +257,11 @@ msgstr ""
"вы можаце сапсаваць манiтор.\n"
"Калi вы сумняваецеся, абярыце кансерватыўныя настройкi."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Часціня гарызантальный разгорткi"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Часціня вертыкальнай разгорткi"
@@ -243,57 +285,42 @@ msgstr "16 мiльёнаў колераў (24 бiты)"
msgid "4 billion colors (32 bits)"
msgstr "4 мiлiярда колераў (24 бiты)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Памеры экрану"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Памеры экрану"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Выбар памераў экрану i глыбiнi колеру"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Вiдэакарта: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
+#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Адмена"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ок"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
@@ -302,71 +329,71 @@ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
msgid "Test of the configuration"
msgstr "Праверка параметраў настройкi"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Тып клавiятуры: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Тып мышы: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Мыш: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Манiтор: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Часціня гар.разг. манiтору: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Часціня верт.разг. манiтору: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Вiдэакарта: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Вiдэапамяць: %s Кб\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Параметры глыбiнi колеру: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Памеры экрану: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Сервер XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Сервер XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Запуск X пры старце сiстэмы"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -375,168 +402,185 @@ msgstr ""
"Можна настроiць сiстэму для аўтаматычнага запуску X пасля старту сiстэмы.\n"
"Жадаеце, каб X стартаваў пры рэстарце?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Якi тып вашага ISDN злучэння?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Усталяванне SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Усталяванне LILO/GRUB"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Галоўныя опцыi пачатковага загрузчыку"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
#, fuzzy
msgid "Bootloader to use"
msgstr "Галоўныя опцыi пачатковага загрузчыку"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Усталяванне загрузчыку"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Загрузачная прылада"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (не працуе пры старых версiях BIOS)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Кампактна"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "кампактна"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Вiдэа-рэжым"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Пароль"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Абмежаванне опцыяў каманднага радка"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "абмежаванне"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Ачышчаць /tmp пры кожнай загрузцы"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Даступна шмат профiляў"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Пазначце памер RAM у Mб"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Паролi не супадаюць"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
#, fuzzy
msgid "Default OS?"
msgstr "Па дамаўленню"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -545,7 +589,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -553,157 +597,158 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Дадаць"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Зроблена"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
#, fuzzy
msgid "Modify"
msgstr "Змянiць RAID"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Якi тып пункта жадаеце дадаць?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Iншая АС (SunOS,...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Iншая АС (MacOS,...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Iншая АС (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Вобраз"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Далучыць"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Чытанне-запiс"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Таблiца"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Ненадзейна"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Метка"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Па дамаўленню"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Выдалiць запiс"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Вы павiнны мець раздзел swap"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Знойдзены %s %s iнтэрфейсы"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Цi ёсць у вас iншы?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Цi ёсць у вас %s iнтэрфейс?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Не"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Так"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Усталяванне драйверу для %s карты %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(модуль %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -714,17 +759,17 @@ msgstr ""
"Опцыi - у фармаце ``iмя=значэнне iмя2=значэнне2 ...''.\n"
"Напрыклад, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Опцыi модулю:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Якi драйвер %s паспрабаваць?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -741,15 +786,15 @@ msgstr ""
"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
"да спынення камп'ютэру, але яно нiчога не сапсуе."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Аўтапошук"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Пазначце параметры"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -758,56 +803,56 @@ msgstr ""
"Загрузка модулю %s не прайшла.\n"
"Жадаеце паспрабаваць з iншымi параметрамi?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Гэты пароль занадта просты"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Калi ласка, увядзiце iмя карыстальнiку"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Дадаць карыстальнiка"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -816,32 +861,32 @@ msgstr ""
"Увядзiце iмя карыстальнiку\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Прыняць карыстальнiка"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Уласнае iмя"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Iмя карыстальнiку:"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Абалонка:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Пiктаграма"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сiстэму"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -850,57 +895,57 @@ msgstr ""
"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальнiка:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Усё"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Дадаць карыстальнiка"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "Чакаецца"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -909,42 +954,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Сардэчна запрашаем у Crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Зусім слабы"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Стандартны"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Высокi"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Высокi"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Паранаiдальны"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -956,7 +1001,7 @@ msgstr ""
"на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
"паролем."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -964,7 +1009,7 @@ msgstr ""
"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
"таксама не рэкамендавана."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -974,13 +1019,13 @@ msgstr ""
"якi далучаны да Internet у якасцi клiенту. Даданыя новыя праверкi\n"
"бяспекi."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -994,7 +1039,7 @@ msgstr ""
"серверу. Узровень бяспекi дастаткова высокi для работы\n"
"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1003,27 +1048,44 @@ msgstr ""
"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
"Параметры бяспекi ўстаноўлены на максiмум."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Опцыi"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Узровень бяспекi"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Настройкi ўзроўня бяспекi"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Абярыце дадатковыя настройкi для сервера"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1035,158 +1097,282 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Працоўны стол"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Стартавае меню"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr ""
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
#, fuzzy
msgid "Boot Style Configuration"
msgstr "Настройка мадэму"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr "Файлы:\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
#, fuzzy
msgid "NewStyle Monitor"
msgstr "Манiтор"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
#, fuzzy
msgid "Traditional Monitor"
msgstr "Змянiць манiтор"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Рэжым злучэння"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Загрузачная прылада"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Усталяванне сiстэмы"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Памылка"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "Сервер XFree86 %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "гальштук"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Клас усталявання"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
#, fuzzy
msgid "Configure"
msgstr "Настройка X Window"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Асабiсты выбар пакетаў"
+
+#: ../../bootlook.pm_.c:270
+#, fuzzy
+msgid "Themes"
+msgstr "Дрэва"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
+#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
+#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
+#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
+#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1231,67 +1417,117 @@ msgstr "Дадаць раздзел немагчыма"
msgid "Screenshots will be available after install in %s"
msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Францыя"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Бельгiйскi"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Нямецкi"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Грэчаскi"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Нарвежскi"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Гл."
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Iтальянскi"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "паслядоўная"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Новы"
+
+#: ../../diskdrake/dav.pm_.c:57
+#, fuzzy
+msgid "Server"
+msgstr "сервер"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Кропка манцiравання"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "сервер"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Пункт манцiравання:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Опцыi: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Па-першае, зрабiце рэзервовую копiю вашых дадзеных"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Чытайце ўважлiва!"
@@ -1304,15 +1540,6 @@ msgstr ""
"Калi вы плануеце выкарыстоўваць boot вобласць, тады размясцiце яе\n"
" не далей за 2048 сектароў ад пачатку дыска"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Памылка"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Майстар стварэння"
@@ -1338,7 +1565,7 @@ msgid "Please click on a partition"
msgstr "Націсніце на раздзел"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Падрабязнасцi"
@@ -1367,13 +1594,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Пуста"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Іншыя"
@@ -1381,12 +1608,12 @@ msgstr "Іншыя"
msgid "Filesystem types:"
msgstr "Тыпы файлавых сiстэмаў:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Стварыць"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Тып"
@@ -1396,7 +1623,7 @@ msgstr "Тып"
msgid "Use ``%s'' instead"
msgstr "Выкарыстоўвайце ``%s'' замест"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Знiшчыць"
@@ -1404,84 +1631,84 @@ msgstr "Знiшчыць"
msgid "Use ``Unmount'' first"
msgstr "Спачатку зрабiце ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Абярыце дзеянне"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Стварэнне новага раздзелу"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Рэжым эксперту"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Звычайны рэжым"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Адкат"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Сапраўды працягваць?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Выйсцi без захавання"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Выйсцi без запiсу таблiцы раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Размеркаваць аўтаматычна"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Ачысцiць усё"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Перанос"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Iнфармацыя"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Усе першасныя раздзелы выкарыстаны"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Дадаць раздзел немагчыма"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1489,35 +1716,35 @@ msgstr ""
"Каб зрабiць больш разделаў, выдалiце адзiн i стварыце пашыраны раздзел "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Запiс таблiцы раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Дадатковая таблiца раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Дадатковая таблiца раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Дадатковая таблiца раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Аўтаманцiраванне зменных назапашвальнікаў"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Абярыце файл"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1525,11 +1752,11 @@ msgstr ""
"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
"Працягваць далей?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Увага!"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1537,132 +1764,115 @@ msgstr ""
"Устаўце дыскету ў дыскавод\n"
"Усе дадзеныя на гэтай дыскеце будуць страчаны"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Паспрабуем выратаваць таблiцу раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Iнфармацыя"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Кропка манцiравання"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Опцыi"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Змяненне памераў"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Перанос"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Фарматаванне"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Манцiраванне"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Дадаць да RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Дадаць да LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Разманцiраваць"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Выдалiць з RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Выдалiць з LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Змянiць RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Выкарыстоўваць для вiртуальнай файлавай сiстэмы"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Стварэнне новага раздзелу"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Пачатковы сектар:"
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Памер у Мб:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Тып файлавай сiстэмы:"
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Пункт манцiравання:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Параметры: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Фарматаванне вiртуальнага раздзелу %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Змянiць тып раздзелу"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1671,137 +1881,142 @@ msgstr ""
"вiртуальнай файлавай сiстэмы.\n"
"Спачатку выдалiце вiртуальную сiстэму"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Падлік межаў файлавай сiстэмы FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Змяненне памераў"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Памеры якога раздзела вы жадаеце змянiць?"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Усе дадзеныя ў гэтым раздзеле павiнны быць зархiваваныя"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Выбар новых памераў"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Памер у Мб:"
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "На якi дыск перанесці?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Сектар"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "На якi сектар перанесці?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Пераносім"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Пераносіцца раздзел..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Абярыце iснуючы RAID для дадання"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "новы"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Выбярыце iснуючы LVM для дабаўлення"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Гэты раздзел не можа быць выкарыстаны пад вiртуальную файлавую сiстэму"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Вiртуальная файлавая сiстэма (loopback)"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Iмя вiртуальнага раздзелу"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Уласнае iмя"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Файл ужо выкарыстоўваецца iншай вiртуальнай сiстэмай. Калi ласка, \n"
"абярыце iншую назву"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Файл ужо iснуе. Выкарыстаць яго?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Опцыi модулю:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "прылада"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "узровень"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "памер блоку"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Будзьце уважлiвы. Гэтую аперацыю нельга адмянiць"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
#, fuzzy
msgid "What type of partitioning?"
msgstr "Якi тып друкаркi вы маеце?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1812,7 +2027,7 @@ msgstr ""
"Калі вы думаеце выкарыстоўваць LILO - тады гэта не будзе працаваць, LILO не "
"выкарыстоўваеца, тады /boot не патрэбны."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1824,7 +2039,7 @@ msgstr ""
"Калi будзе выкарыстоўвацца дыспечар загрузкi LILO, не запамятайце дадаць\n"
"раздзел /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1834,137 +2049,137 @@ msgstr ""
"Няма загрузчыку, якi б загрузiўся без /boot раздзела.\n"
"Дадайце раздел /boot, калi ласка."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Фарматаванне"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Фарматаванне вiртуальнага раздзелу %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Фарматаванне раздзелу %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid не працаздольны"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Памеры экрану: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Прылада:"
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Тып: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Iмя: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Пачатак: сектар %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Памер: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s сектараў"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Цылiндры з %d па %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Фарматаванне\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Не адфарматавана\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Заманцiравана\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1972,27 +2187,27 @@ msgstr ""
"Загрузачны раздзел па дамаўленню\n"
" (для загрузкi MS-DOS, а не для lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Узровень %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Памер фрагменту %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дыскi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Iмя файлу вiртуальнай файлавай сiстэмы: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2000,7 +2215,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2008,65 +2223,60 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Памер: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Iнфармацыя: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дыскi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тып таблiцы раздзелаў: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "на шыне %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Опцыi: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Тып файлавай сiстэмы:"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Паролi не супадаюць"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2120,23 +2330,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS сервер"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s памылка фарматавання %s"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "памылка разманцiравання %s: %s"
@@ -2153,34 +2363,34 @@ msgstr ""
msgid "server"
msgstr "сервер"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 16 Мб"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 32 Мб"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Пункт манцiравання павiнен пачынацца з /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2189,28 +2399,28 @@ msgstr ""
"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
"для гэтай кропкi манцiравання\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
"для гэтай кропкi манцiравання\n"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Памылка адкрыцця %s для запiсу: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2218,258 +2428,262 @@ msgstr ""
"Памылка: для стварэння новых файлавых сiстэмаў не знайдзены адпаведныя \n"
"прылады. Праверце абсталяванне для пошуку iмавернай прычыны."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Вы не стварылi анiякiх раздзелаў!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Аддалены прынтэр"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Агульны"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Адрасы памяці карты (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "фарматаванне"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Змянiць тып раздзелу"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Выхад"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr ""
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "Адмянiць"
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Порт мышы"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Адрасы памяці карты (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Адмена"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Порт мышы"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Апiсанне"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Аўтэнтыфiкацыя"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Абярыце файл"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Прылада-шлюз"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 кнопкi"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Выхад"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "Адмянiць"
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Аўтапошук"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Вызначэнне жорсткага дыску"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Гл. апiсанне абсталявання"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Настройка мышы"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Iнфармацыя"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Настройка мышы"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Дубляванне пункту манцiравання %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Калi ласка, пачакайце"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d секундаў"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Аддалены прынтэр"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Агульны"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Аўтапошук"
+msgid "Card model :"
+msgstr "Адрасы памяці карты (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Змянiць тып раздзелу"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "фарматаванне"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3657,7 +3871,7 @@ msgstr ""
"\n"
"Націсніце \"Адмена\" каб адмяніць аперацыю без страты дадзеных і раздзелаў"
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3665,7 +3879,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3685,26 +3899,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Памылка чытання файлу %s"
@@ -3742,7 +3956,7 @@ msgstr ""
"\n"
"Усё адно працягваць?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Вы павiнны мець раздзел swap"
@@ -3927,12 +4141,12 @@ msgstr ""
"Узнiкла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
"таму працягвайце на сваю рызыку."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Дубляванне пункту манцiравання %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3944,12 +4158,12 @@ msgstr ""
"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Дыскавод недаступны"
@@ -3959,7 +4173,7 @@ msgstr "Дыскавод недаступны"
msgid "Entering step `%s'\n"
msgstr "Пераход на крок `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3971,79 +4185,79 @@ msgstr ""
"праграму ўсталявання. Для гэтага нацiснiце `F1' у час загрузкi, а потым\n"
"набярыце `text' i нацiснiце <ENTER>."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Клас Усталявання"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Калi ласка, абярыце адзiн з класаў усталявання:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Выбар групы пакетаў"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Асабiсты выбар пакетаў"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Агульны памер: %d / %d Mб"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Дрэнны пакет"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Iмя: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Версiя: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Памер: %d Kб\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Значнасць: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Наступныя пакеты будуць даданы да сiстэмы"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Наступныя пакеты будуць выдалены"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4051,78 +4265,78 @@ msgstr ""
"Гэты пакет павiнен быць абноўлены\n"
"Вы ўпэўнены, што хочаце адмянiць вылучэнне?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Яго патрэбна абнавiць"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Усталёўка"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Захаванне на дыскету"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Асабiсты выбар пакетаў"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Выдалiць з сiстэмы"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Усталёўваем"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Чакаецца"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Засталося часу "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Падрыхтоўка ўсталяваньня"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d пакетаў"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Усталяванне пакету %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Прыняць"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Адказаць"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4138,17 +4352,17 @@ msgstr ""
"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
"Cd."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Усё роўна працягваць?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
@@ -4322,109 +4536,109 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Клавiятура"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Калi ласка, абярыце тып клавiятуры."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Якi клас усталявання вы жадаеце?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
#, fuzzy
msgid "Install/Update"
msgstr "Усталёўка"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Абярыце ўсталяванне цi абнаўленне"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Рэкамендавана"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Эксперт"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Асабiсты выбар пакетаў"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Порт мышы"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Настройка карт PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Настройка IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "няма даступных раздзелаў"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Абярыце пункты манцiравання"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4442,7 +4656,7 @@ msgstr ""
"\n"
"Цi жадаеце страцiць усе раздзелы?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4450,77 +4664,77 @@ msgstr ""
"DiskDrake не змог правiльна прачытаць таблiцу радзелаў.\n"
"Працягвайце толькi на сваю рызыку!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Каранёвы раздзел не знойдзены"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Каранёвы раздзел"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Якi радзел каранёвы (/) для вашай сiстэмы?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Каб мадыфiкацыя таблiцы раздзелаў здейснiлася, патрэбна перазагрузка."
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Выбар раздзелаў для фарматавання"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Праверыць на наяўнасць дрэнных блокаў?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Фарматавання раздзелаў"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Стварэнне i фарматаванне файла %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Не хапае месца ў буферы падкачкi (swap) для ўсталявання, павялiчце яго."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Прагляд даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Прагляд даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Пошук пакетаў для абнаўлення"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Пошук пакетаў для абнаўлення"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4528,61 +4742,61 @@ msgid ""
msgstr ""
"Ваша сiстэма не мае дастакова месца для ўсталявання цi абнаўлення (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Аднаўленне з дыскеты"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Аднаўленне з дыскеты"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Выбар групы пакетаў"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Захаванне на дыскету"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Выбар пакетаў для усталявання"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Чакайце"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4601,11 +4815,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom пазначаны \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Падрыхтоўка ўсталяваньня"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4614,21 +4828,21 @@ msgstr ""
"Усталяванне пакету %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Настройка пасля ўсталявання"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4706,7 +4920,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4718,190 +4932,200 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Выбар люстра для атрымання пакетаў"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Якi ваш часавы пояс?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS сервер:"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Аддалены сервер CUPS"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "No printer"
msgstr "Iмя друкаркi"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Цi ёсць у вас iншы?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
#, fuzzy
msgid "Mouse"
msgstr "Порт мышы"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Прынтэр"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
#, fuzzy
msgid "ISDN card"
msgstr "Унутраная ISDN карта"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
#, fuzzy
msgid "Sound card"
msgstr "Стандартны"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "Выкарыстоўваць NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Выдалiць Windows(TM)"
+msgid "Windows Domain"
+msgstr "Навуковыя прыкладанні"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Лакальны прынтэр"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Пароль для root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Няма паролю"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "сервер"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "Аўтэнтыфiкацыя NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS сервер:"
#: ../../install_steps_interactive.pm_.c:1138
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "Authentication Windows PDC"
+msgid "Authentication Windows Domain"
msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:1139
+#: ../../install_steps_interactive.pm_.c:1142
#, fuzzy
-msgid "Windows Domain"
-msgstr "Навуковыя прыкладанні"
+msgid "Domain Admin User Name"
+msgstr "Iмя дамену"
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1143
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS сервер:"
+msgid "Domain Admin Password"
+msgstr "Падцвердзiць пароль"
-#: ../../install_steps_interactive.pm_.c:1142
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4928,19 +5152,19 @@ msgstr ""
"Калi жадаеце стварыць загрузачны дыск зараз, устаўце дыскету ў першы\n"
"дыскавод i нацiснiце \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Першы дыскавод"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Другi дыскавод"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Прапусцiць"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4966,7 +5190,7 @@ msgstr ""
"Жадаеце стварыць загрузачны дыск зараз?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4975,28 +5199,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Выбачайце, але дыскавод недаступны"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Стварэнне загрузачнай дыскеты"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Падрыхтоўка загрузчыка"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5004,11 +5228,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5016,16 +5240,16 @@ msgstr ""
"Памылка ўсталявання аboot, \n"
"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Усталяванне загрузчыку"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5036,17 +5260,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5055,7 +5279,7 @@ msgstr ""
"Некаторыя крокi не завершаны.\n"
"Вы сапраўды жадаеце выйсцi зараз?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5087,16 +5311,16 @@ msgstr ""
"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5105,16 +5329,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Аўтаматычны"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
#, fuzzy
msgid "Replay"
msgstr "Перазагрузiць"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
#, fuzzy
msgid "Save packages selection"
msgstr "Асабiсты выбар пакетаў"
@@ -5143,406 +5367,470 @@ msgstr ""
msgid "Choose a file"
msgstr "Абярыце дзеянне"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr ""
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Тэкст"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Дрэнны выбар, паспрабуйце яшче\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ваш выбар? (змоўчанне %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ваш выбар? (змоўчанне %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Опцыi: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ваш выбар? (змоўчанне %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Чешскi (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Нямецкi"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Iспанскi"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Фiнскi"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Французскi"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Нарвежскi"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Польскi"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Рускi"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Швецкi"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UK клавiятура"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US клавiятура"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Iранскi"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Армянскi (стары)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Армянскi (typewriter)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Армянскi (фанетычны)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Азербайджанскі (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Бельгiйскi"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Таблiца"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Армянскi (фанетычны)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Балгарскi"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Бразiльскi (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Эстонскi"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Беларускі"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Швейцарскi (Нямецкая раскладка)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Швейцарскi (Французская раскладка)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Чешскi (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Нямецкi (няма заблакiраваных клавiш)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Дацкi"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Нарвежскi)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Эстонскi"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Грузiнскi (\"Руская\" раскладка)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Грузiнскi (\"Лацiнская\" раскладка)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Грэчаскi"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Мадьярскi"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Харвацкi"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Iўрыт"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Iўрыт (фанетычны)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iранскi"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Iсландскi"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Iтальянскi"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Японскi 106 клавiш"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Korean keyboard"
msgstr "UK клавiятура"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Лацiна-Амерыканскi"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Размеркаванне"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Лiтоўскi AZERTY (стары)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Лiтоўскi AZERTY (новы)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Лiтоўскi \"нумар радка\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Лiтоўскi \"фанетычны\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Размеркаванне"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Азербайджанскі (кірыліца)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Галандскi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Польскi (стандартная раскладка)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Польскi (qwertz раскладка)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Партугальскi"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Канадскi (Квебэк)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Рускi (Я-В-Е-Р-Т-И)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Рускi (Я-В-Е-Р-Т-И)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Рускi (Я-В-Е-Р-Т-И)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Славенскi"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Славацкi (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Славацкi (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Азербайджанскі (кірыліца)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:269
#, fuzzy
-msgid "Tamil"
-msgstr "Таблiца"
+msgid "Tamil (Unicode)"
+msgstr "i18n (добра)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Тайская клавiятура"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Тайская клавiятура"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Турэцкi (традыцыёная \"F\" мадэль)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Турэцкi (сучасная \"Q\" мадэль)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Украiнскi"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US клавiятура (мiжнародная)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Вьетнамскi \"нумар радка\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Азербайджанскі (latin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5551,37 +5839,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Манцiраванне дыску %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Нумар тэлефону"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Фарматаванне раздзелаў"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5687,53 +5975,45 @@ msgstr "няма"
msgid "No mouse"
msgstr "Няма мышы"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
#, fuzzy
msgid "To activate the mouse,"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "Рушце колам мышы!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
#, fuzzy
msgid "Finish"
msgstr "Фiнскi"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Далей ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Гэта дакладна?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Iнфармацыя"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Разгарнуць дрэва"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Згарнуць дрэва"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
@@ -5753,6 +6033,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr ""
@@ -5782,7 +6066,7 @@ msgstr ""
"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
"скарыстайце канфiгурацыйны iнструмэнт."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Пазначце сеткавы iнтэрфейс"
@@ -5797,7 +6081,7 @@ msgstr ""
msgid "no network card found"
msgstr "сеткавая карта не знойдзена"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Настройка сеткi"
@@ -5813,7 +6097,7 @@ msgstr ""
"напрыклад ``mybox.mylab.myco.com''.\n"
"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Iмя машыны"
@@ -5843,7 +6127,7 @@ msgstr "Якi тып вашага ISDN злучэння?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5965,44 +6249,44 @@ msgstr "Да якога паслядоўнага порту далучаны мадэм?"
msgid "Dialup options"
msgstr "Параметры камутаванага злучэння (Dialup)"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Iмя злучэння"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Нумар тэлефону"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Iмя (login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "на аснове скрыпту"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "на аснове тэрмiналу"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Iмя дамену"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Першы сервер DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Другi сервер DNS:"
@@ -6113,14 +6397,14 @@ msgstr "Абярыце асноўнага карыстальнiка:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Вызначэнне прыладаў..."
@@ -6230,7 +6514,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6238,7 +6522,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6248,43 +6532,43 @@ msgstr ""
"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
"натацыi (напрыклад, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Настройка сеткавай прылады %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Сервер XFree86: %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP адрас"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Маска сеткi"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Аўтаматычны IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Стварыць загр. дыск"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6296,40 +6580,40 @@ msgstr ""
"напрыклад ``mybox.mylab.myco.com''.\n"
"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS сервер"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Прылада-шлюз"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Настройка proxy кэшуючых сервераў"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy павiнен быць http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy павiнен быць ftp://..."
@@ -6341,7 +6625,7 @@ msgstr "Настройка злучэння з Iнтэрнэтам"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
#, fuzzy
msgid "Testing your connection..."
msgstr "Якi тып вашага ISDN злучэння?"
@@ -6372,44 +6656,44 @@ msgstr "Настройка далучэння да Iнтэрнэту"
msgid "Please fill or check the field below"
msgstr "Калi ласка, запоўнiце цi пазначце поле нiжэй"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ карты"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Адрасы памяці карты (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO карты"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 карты"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 карты"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Ваш асабiсты тэлефонны нумар"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Iмя правайдару, напрыклад правайдар.net"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Нумар тэлефону правайдара"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 правайдару"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 правайдару"
@@ -6419,30 +6703,30 @@ msgstr "DNS 2 правайдару"
msgid "Choose your country"
msgstr "Выбар клавiятуры"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Рэжым злучэння"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Iмя злучэння"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Iмя злучэння"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Iмя для ўваходу (iмя карыстальнiку)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Пароль для ўваходу"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6478,7 +6762,7 @@ msgstr "Дрэнны файл рэзервовай копii"
msgid "Error writing to file %s"
msgstr "Памылка запiсу ў файл %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6521,7 +6805,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6550,7 +6834,7 @@ msgstr "Аддалены прынтэр"
msgid "Printer on remote CUPS server"
msgstr "Аддалены сервер CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Аддалены сервер lpd"
@@ -6569,7 +6853,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Сервер друку"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI прынтэру"
@@ -6578,112 +6862,112 @@ msgstr "URI прынтэру"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Лакальны прынтэр"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Аддалены прынтэр"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Памылка запiсу ў файл %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(модуль %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP сервера SMB"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Па дамаўленню)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Выбар тыпу злучэння прынтэру"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Як прынтар далучаны?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6694,17 +6978,21 @@ msgstr ""
"на гэтай машыне, ён будзе знойдзены аўтаматычна.\n"
"Калі Вы не ўпэўнены, абярыце \"Аддалены сервер CUPS\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Настройка"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Аддалены сервер CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6715,7 +7003,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6725,36 +7013,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
#, fuzzy
msgid "CUPS server IP"
msgstr "IP сервера SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Порт"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Настройка мадэму"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Iмя друкаркi"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6767,37 +7055,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Лакальны прынтэр"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Аддалены прынтэр"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Лакальны прынтэр"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6811,53 +7130,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Аддалены прынтэр"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Аддалены прынтэр"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Праверка партоў"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Дубляванне пункту манцiравання %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6865,43 +7181,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI прынтэру"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Лакальны прынтэр"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Даступныя пакеты"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
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:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6909,7 +7216,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6917,83 +7224,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Да якога паслядоўнага порту далучаны мадэм?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI прынтэру"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Настройка"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Усталяванне пакету %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Усталяванне пакету %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Усталяванне пакету %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Опцыi аддаленага прынтэру lpd"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7003,31 +7265,51 @@ msgstr ""
"пазначыць iмя аддаленага сервера i iмя чаргi друку,\n"
"у якую аддалены сервер будзе адпраўляць заданнi."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Аддалены вузел"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Аддалены прынтэр"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Аддалены вузел"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Аддалены вузел"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Дубляванне пункту манцiравання %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Якi тып вашага ISDN злучэння?"
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Адлучэнне ад сеткi"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Опцыi прынтэру SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7040,35 +7322,46 @@ msgstr ""
"рэсурсу, якi спалучаны з выбраным прынтэрам, iмя карыстальнiку, пароль i "
"iнфармацыю аб працоўнай групе."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "Iмя серверу SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP сервера SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Iмя для размеркаванага рэсурсу"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Працоўная група"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Аддалены прынтэр"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7092,7 +7385,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7101,7 +7394,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7109,11 +7402,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Опцыi прынтэру NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7125,88 +7418,109 @@ msgstr ""
"(не заўсёды супадае з iменем у сетцы TCP/IP) i iмя чаргi друку, якая "
"адпавядае абранаму прынтэру, а таксама iмя карыстальнiку i пароль."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Сервер друку"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Iмя чаргi друку"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Опцыi сокету прынтэру"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+msgid ""
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
"Каб друкаваць праз сокет друкаркi, вам неабходна забяспечыць\n"
"iмя прынтэру i магчыма яго нумар порту."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Iмя прынтэру"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Iмя прынтэру"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI прынтэру"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Iмя друкаркi"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Размеркаванне"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Аддалены прынтэр"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7221,28 +7535,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Гэта дакладна?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Аддалены прынтэр"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Злучэнне прынтэру"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Якi тып друкаркi вы маеце?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7251,18 +7565,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7272,12 +7586,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7285,7 +7599,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7298,7 +7612,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7308,34 +7622,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Жадаеце пратэсцiраваць друк?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Праверка партоў"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7343,45 +7657,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Так, надрукаваць абедзве старонкi тэксту"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Прынтэр"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Стандартны"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Друк тэставых старонак"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Друк тэставых старонак"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Друк тэставых старонак"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Друк тэставых старонак"
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7397,7 +7711,7 @@ msgstr ""
"\n"
"Ён працуе нармальна?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7407,16 +7721,16 @@ msgstr ""
"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
"Ён працуе нармальна?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Iмя друкаркi"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7425,15 +7739,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7442,7 +7756,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7450,41 +7764,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7494,7 +7808,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7503,47 +7817,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Адлучэнне ад сеткi"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Адлучэнне ад сеткi"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Адлучэнне ад сеткi"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Адлучэнне ад сеткi"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Порт мышы"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Опцыi прынтэру"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7552,9 +7866,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7565,19 +7879,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7587,51 +7901,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7639,62 +7953,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Iмя друкаркi"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Настройка прынтэру"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Якi тып вашага ISDN злучэння?"
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Настройка сеткi"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Манiтор пакуль не настроены"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7702,12 +8016,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Настройка сеткi"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7717,34 +8031,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Высокi"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Паранаiдальны"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7759,12 +8073,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7778,70 +8092,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Выбар тыпу злучэння прынтэру"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Настройка прынтэру"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Усталяванне пакету %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Опцыi прынтэру"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Настройка прынтэру"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Жадаеце настроiць прынтэр?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Прынтэр"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7852,7 +8166,7 @@ msgstr ""
"Тут змяшчаюцца чэргi друку.\n"
"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7862,142 +8176,138 @@ msgstr ""
"Тут змяшчаюцца чэргi друку.\n"
"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Настройка сеткi"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Звычайны"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Выхад"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Злучэнне прынтэру"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Друк тэставых старонак"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Аддалены прынтэр"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Лакальны прынтэр"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
@@ -8048,8 +8358,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy павiнен быць ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy павiнен быць http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8100,44 +8410,6 @@ msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-" but very sensitive: it must not be used for a machine "
-"connected to others\n"
-" or to the Internet. There is no password access."
-msgstr ""
-"Гэты узровень неабходна выкарыстоўваць з асцярогай. Сiстэма будзе прасцей\n"
-"у карыстаннi, але i больш чутнай: гэты узровень бяспекi нельга "
-"выкарыстоўваць\n"
-"на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
-"паролем."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
-"серверу. Узровень бяспекi дастаткова высокi для работы\n"
-"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Заканчэнне настройкi"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Опцыi"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8436,7 +8708,7 @@ msgstr "цiкава"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8561,7 +8833,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Далучэнне да Iнтэрнэту"
@@ -8661,21 +8933,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Усталяванне пакету %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8683,175 +8955,175 @@ msgstr ""
"Таблiца раздзелаў не чытаецца, яна занадта сапсавана для меня :(\n"
"Паспрабую iсцi далей i буду прапускаць дрэнныя раздзелы"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Сервер друку"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Сервер друку"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS сервер:"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS сервер:"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
#, fuzzy
msgid "Etherboot Floppy/ISO"
msgstr "Стварыць загр. дыск"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Размеркаванне"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Знiшчыць"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Абярыце файл"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Настройка IDE"
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "Настройка X Window"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Дыскавод недаступны"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Памылка"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Настройка пасля ўсталявання"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8866,23 +9138,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Настройка мадэму"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8890,40 +9162,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Прыміце вiншаваннi!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Усталёўка"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Фарматаванне вiртуальнага раздзелу %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8931,7 +9216,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8939,34 +9224,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Праверка партоў"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Дрэнны файл рэзервовай копii"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8974,739 +9323,803 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Памылка чытання файлу %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Выбар групы пакетаў"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Выдалiць чаргу друку"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Выдалiць Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Няма паролю"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Калi ласка, абярыце тып клавiятуры."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Націсніце на раздзел"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Націсніце на раздзел"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Выбар пакетаў для ўсталявання"
+msgid "Please check if you are using a DVDR device"
+msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Націсніце на раздзел"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Абярыце файл"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Выбар пакетаў для ўсталявання"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Выбар пакетаў для ўсталявання"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Сетка:"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Тып: "
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Чакайце"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "З колам"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "З колам"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Опцыi модулю:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
#, fuzzy
msgid "across Network"
msgstr "Сетка:"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+#, fuzzy
+msgid "on Tape Device"
+msgstr "Порт прынтэру"
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Настр. файлавых сiстэмаў"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Мыш: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Опцыi"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
#, fuzzy
msgid "\t-Tape \n"
msgstr "Тып: "
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Да якога паслядоўнага порту далучаны мадэм?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Размеркаванне"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Выбар тыпу злучэння прынтэру"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Аднаўленне з дыскеты"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Іншыя"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Усталяванне сiстэмы"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Па выбару"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Стартавае меню"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Тэкст"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Наступныя пакеты будуць даданы да сiстэмы"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Захаванне ў файл"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Выбар пакетаў для ўсталявання"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Настройка"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Заканчэнне настройкi"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Настр. файлавых сiстэмаў"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9717,7 +10130,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9738,7 +10151,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9747,7 +10160,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9771,7 +10184,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9788,21 +10201,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9816,17 +10229,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9843,7 +10256,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9883,7 +10296,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9894,7 +10307,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9907,7 +10320,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9946,96 +10359,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Усталяванне %s не атрымалася. Узнiкла наступная памылка:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Кансольныя інструментальныя сродкі"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Далучэнне да Iнтэрнэту"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "абавязкова"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Порт мышы"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Аддалены прынтэр"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Iмя для размеркаванага рэсурсу"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
#, fuzzy
msgid "Windows Migration tool"
msgstr "Навуковыя прыкладанні"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Выкарыстоўваць DiskDrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Размеркаванне"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Пакет"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Калi ласка, пачакайце"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10047,349 +10487,349 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Заканчэнне ўсталявання"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Порт"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Заканчэнне ўсталявання"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
#, fuzzy
msgid "Profile: "
msgstr "памылка манцiравання: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
#, fuzzy
msgid "Hostname: "
msgstr "Iмя машыны"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr ""
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
#, fuzzy
msgid "Type:"
msgstr "Тып: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Шлюз:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr ""
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr ""
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
#, fuzzy
msgid "Configure Internet Access..."
msgstr "Настройка службаў"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
#, fuzzy
msgid "LAN configuration"
msgstr "Настройка ADSL"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Driver"
msgstr "сервер"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Interface"
msgstr "Сеткавы iнтэрфейс"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Стартавае меню"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
#, fuzzy
msgid "Configure Local Area Network..."
msgstr "Настройка лакальнай сеткi"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Майстар стварэння..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
#, fuzzy
msgid "Please Wait... Applying the configuration"
msgstr "Праверка параметраў настройкi"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
msgstr "Iмя злучэння"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Not connected"
msgstr "Размеркаванне"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
#, fuzzy
msgid "LAN Configuration"
msgstr "Настройка"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Актыўны"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Актыўны"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
#, fuzzy
msgid "Internet connection configuration"
msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
#, fuzzy
msgid "Internet Connection Configuration"
msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
#, fuzzy
msgid "Connection type: "
msgstr "Iмя злучэння"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr ""
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Шлюз"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr ""
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr ""
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Module name"
msgstr "Опцыi модулю:"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Size"
msgstr "Памер: %s"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
#, fuzzy
msgid "drakfloppy"
msgstr "Аднаўленне з дыскеты"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
#, fuzzy
msgid "boot disk creation"
msgstr "Настройка пасля ўсталявання"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "Па дамаўленню"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
#, fuzzy
msgid "kernel version"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
#, fuzzy
msgid "General"
msgstr "Агульны"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
#, fuzzy
msgid "Expert Area"
msgstr "Эксперт"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
#, fuzzy
msgid "Add a module"
msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
#, fuzzy
msgid "force"
msgstr "Перанос"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr ""
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
#, fuzzy
msgid "omit scsi modules"
msgstr "Рэжым злучэння"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr ""
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
#, fuzzy
msgid "Remove a module"
msgstr "Адваротны парадак старонак"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr ""
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Зрабiць неактыўным сеткавае злучэнне"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10397,105 +10837,105 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "Не знайшлi %s"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Зроблена"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Фарматаваць дыскету"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Падрыхтоўка ўсталяваньня"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "абмежаванне"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "абмежаванне"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10504,121 +10944,126 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Фарматаванне раздзелаў"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Выдаленне выбраных RPM-пакетаў з сiстэмы"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Кропка манцiравання"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Выбар раздзелаў для фарматавання"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "добра"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Адмянiць"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Прынтэр"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Усталяванне сiстэмы"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Абярыце файл"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Аддалены прынтэр"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Усталёўка"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Заканчэнне ўсталявання"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10626,35 +11071,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "disable"
msgstr "Таблiца"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
#, fuzzy
msgid "reconfigure"
msgstr "Настройка X Window"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
#, fuzzy
msgid "Disabling servers..."
msgstr "Вызначэнне прыладаў..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10662,21 +11107,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
#, fuzzy
msgid "enable"
msgstr "Таблiца"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10693,21 +11138,21 @@ msgstr ""
"\n"
"Вы жадаеце усталяваць сумесны доступ да Internet?"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Сеткавы iнтэрфейс"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10715,11 +11160,11 @@ msgstr ""
"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
"скарыстайце канфiгурацыйны iнструмэнт."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Сеткавы iнтэрфейс"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10729,7 +11174,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10737,12 +11182,12 @@ msgstr ""
"Калi ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
"вашай лакальнай сеткi."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Манiтор пакуль не настроены"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10752,17 +11197,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Настройка мадэму"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10773,7 +11218,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10785,33 +11230,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP сервера SMB"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10819,21 +11264,21 @@ msgstr ""
"Увага! Знойдзена існуючая сiстэма сеткавай бяспекi (firewall). Вам магчыма "
"спатрэбіцца скарэктаваць яе пасля ўсталявання."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
#, fuzzy
msgid "Configuring..."
msgstr "Настройка IDE"
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Праблемы з усталяваннем пакету %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10844,25 +11289,25 @@ msgstr ""
"з іншымі камп'ютэрамі ў вашай ЛВС, карыстаючыся аўтаматычным\n"
"канфігураваннем (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10872,21 +11317,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Далучэнне да Iнтэрнэту"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10895,108 +11332,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Канадскi (Квебэк)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Еўропа"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Францыя"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Iсландскi"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Еўропа"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "паслядоўная"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11020,11 +11461,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Калi ласка, абярыце тып клавiятуры."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
@@ -11054,7 +11495,7 @@ msgstr "Немагчыма запусціць live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr ""
@@ -11164,148 +11605,149 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Настройка ADSL"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Iмя дамену"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS сервер:"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Сервер друку"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS сервер:"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS сервер:"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "прылада"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Сервер друку"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "прылада"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "фарматаванне"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Настройка"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_usb не знойдзен\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Эмуляваць трэцюю кнопку?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Вызначэнне прыладаў..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Праверка партоў"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Абярыце вiдэакарту"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Загрузачная прылада"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11313,7 +11755,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11333,17 +11775,17 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
#, fuzzy
msgid "Firewalling Configuration"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
#, fuzzy
msgid "Firewalling configuration"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11351,7 +11793,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11544,56 +11986,60 @@ msgstr ""
msgid "Can't open %s for writing: %s\n"
msgstr "Памылка адкрыцця %s для запiсу: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Канфiгурацыя сеткi"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Падрыхтоўка ўсталяваньня"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr ""
@@ -11647,6 +12093,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Аўдыёсродкі: прайгравальнікі mp3 і midi, мікшары і г.д."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "нігі і Howto па Linux і Free Software"
@@ -11742,11 +12192,6 @@ msgid "Office Workstation"
msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "сервер"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
@@ -11813,6 +12258,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Настройка злучэння з Iнтэрнэтам"
@@ -11846,6 +12295,109 @@ msgstr "Мультымедыя - Стварэнне CD"
msgid "Scientific Workstation"
msgstr "Навуковыя прыкладанні"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid ""
+#~ "This level is to be used with care. It makes your system more easy to "
+#~ "use,\n"
+#~ " but very sensitive: it must not be used for a machine "
+#~ "connected to others\n"
+#~ " or to the Internet. There is no password access."
+#~ msgstr ""
+#~ "Гэты узровень неабходна выкарыстоўваць з асцярогай. Сiстэма будзе "
+#~ "прасцей\n"
+#~ "у карыстаннi, але i больш чутнай: гэты узровень бяспекi нельга "
+#~ "выкарыстоўваць\n"
+#~ "на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
+#~ "паролем."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
+#~ "серверу. Узровень бяспекi дастаткова высокi для работы\n"
+#~ "серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Опцыi"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "кучаравы"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Калi ласка, абярыце тып клавiятуры."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Выбар пакетаў для ўсталявання"
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Proxy павiнен быць ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Выбар пакетаў для ўсталявання"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Выдалiць Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Таблiца"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NIS сервер:"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Аддалены прынтэр"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Усталяванне пакету %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Усталяванне пакету %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Усталяванне пакету %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#, fuzzy
+#~ msgid "Control Center"
+#~ msgstr "Далучэнне да Iнтэрнэту"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "serial_usb не знойдзен\n"
+
#~ msgid "Choose options for server"
#~ msgstr "Абярыце дадатковыя настройкi для сервера"
@@ -11910,9 +12462,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Setting security level"
#~ msgstr "Настройкi ўзроўня бяспекi"
-#~ msgid "Graphics card"
-#~ msgstr "Вiдэакарта"
-
#~ msgid "Select a graphics card"
#~ msgstr "Абярыце вiдэакарту"
@@ -11993,9 +12542,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Percentage of packages to install"
#~ msgstr "Адсотак пакетаў для ўсталявання"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Узровень бяспекi"
-
#~ msgid "Complete (%dMB)"
#~ msgstr "Поўны (%dMб)"
@@ -12049,9 +12595,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Local Printer Device"
#~ msgstr "Лакальны прынтэр"
-#~ msgid "Printer Device"
-#~ msgstr "Порт прынтэру"
-
#~ msgid "Choose the size you want to install"
#~ msgstr "Абярыце пажаданы памер усталявання"
@@ -12074,9 +12617,6 @@ msgstr "Навуковыя прыкладанні"
#~ "Да якога порту далучаны ваш прынтэр \n"
#~ "(/dev/lp0 эквiвалентны LPT1:)?\n"
-#~ msgid "New"
-#~ msgstr "Новы"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Невызначанасць (%s), будзьце дакладныя\n"
@@ -13070,9 +13610,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Automatical resolutions search"
#~ msgstr "Аўтаматычны пошук памераў экрану"
-#~ msgid "Available packages"
-#~ msgstr "Даступныя пакеты"
-
#~ msgid "Bad kickstart file %s (failed %s)"
#~ msgstr "Дрэнны стартавы (kickstart) файл %s (памылка %s)"
@@ -13223,9 +13760,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Configure timezone"
#~ msgstr "Настройка часавога поясу"
-#~ msgid "Confirm Password"
-#~ msgstr "Падцвердзiць пароль"
-
#~ msgid "Connect to Internet using Cable"
#~ msgstr "Далучыцца да Iнтэрнэт праз кабель (сетку)"
@@ -13869,9 +14403,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
#~ msgstr "Выбрана зашмат пакетаў: %dMб не ўлазiць у %dMб"
-#~ msgid "Tree"
-#~ msgstr "Дрэва"
-
#~ msgid "Try to find %s devices?"
#~ msgstr "Паспрабаваць знайсцi %s прылады?"
@@ -14021,9 +14552,6 @@ msgstr "Навуковыя прыкладанні"
#~ msgid "i18n (important)"
#~ msgstr "i18n (важна)"
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (добра)"
-
#~ msgid "i18n (very nice)"
#~ msgstr "i18n (вельмi добра)"
@@ -14049,8 +14577,5 @@ msgstr "Навуковыя прыкладанні"
#~ "rpmdrake зараз у рэжыме ``low memory''.\n"
#~ "rpmdrake будзе перазапушчаны дзеля забеспячэння пошуку файлаў"
-#~ msgid "tie"
-#~ msgstr "гальштук"
-
#~ msgid "woman-blond"
#~ msgstr "жанчына-бландынка"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 2ae952797..65fb2b273 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -59,54 +59,54 @@ msgstr "Изберете X сървър"
msgid "X server"
msgstr "X сървър"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Изберете капацитет на паметта на графичната си карта"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Настройка на XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Коя настройка на XFree искате да имате ?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Използвай разширението Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Настройка само на карта \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s с хардуерно 3D ускорение"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Картата ви може да има поддръжка на хардуерно 3D ускорение в XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s с ЕКСПЕРИМЕНТАЛНO хардуерно 3D ускорение"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,11 +151,57 @@ msgstr ""
"ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И КОМПЮТЪРЪТ ВИ МОЖЕ ДА "
"ЗАБИЕ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (инсталация графичен драйвер)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Клиентска"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Графична карта"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Монитор"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Разделителна способност"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Опции"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Изход"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -168,32 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Изберете монитор"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Монитор"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Клиентска"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Общ"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Върни"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -217,11 +259,11 @@ msgstr ""
"повредите монитора си.\n"
" Ако имате някакви съмнения, изберете консервативна настройка."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Хоризонтална скорост на възстановяване"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Вертикална скорост на възстановяване"
@@ -245,57 +287,42 @@ msgstr "16 милиона цвята (24 бита)"
msgid "4 billion colors (32 bits)"
msgstr "4 милиарда цвята (32 бита)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Разделителна способност"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Разделителна способност"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Изберете разделителна способност и дълбочина на цветовете"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Графична карта: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
+#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Отказ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Искате ли да тествате настройките?"
@@ -304,71 +331,71 @@ msgstr "Искате ли да тествате настройките?"
msgid "Test of the configuration"
msgstr "Проверка на настройката"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Тип клавиатура: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Тип мишка: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Устройство на мишката: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Монитор: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Хоризонтална синхронизация на монитора: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Вертикално опресняване на монитора: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Графична карта: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Графична памет: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Дълбочина на цвета: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Разделителна способност: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 сървър: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 драйвер: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X при стартиране на системата"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -377,165 +404,182 @@ msgstr ""
"Kомпютъра ви може автоматично, да влезе в X при стартиране.\n"
"Искате ли X да се стартира, когато рестартирате системата?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Какъв е типът на ISDN връзката ?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Първи сектор от стартиращия се дял"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Първият сектор от драйва (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO инсталация"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Къде искате да инсталирате bootloader-а?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub инсталация"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO с текстово меню"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO с графично меню"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Стартиране от DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Опции на зареждащата програма"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Използвана зареждащата програма"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Bootloader инсталация"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Стартиращо устройство"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (не работи на стари BIOS-и)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Компактен"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "компактен"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Видео режим"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Забавяне преди стартирането на default дяла"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Парола"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Парола (отново)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Ограничи опциите, задавани от командния ред"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "ограничи"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Почистване на /tmp при всяко зареждане"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Точен размер на RAM-паметта, ако е необходимо (намерени %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Включи много профили"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Дайте размера RAM-памет в Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Паролите на съвпадат"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Стартово съобщение"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Изчакване на Open Firmware"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Изчакване за стартиране на ядрото"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Стартиране от CD ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Стартиране от OF ?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "ОС по подразбиране ?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -544,7 +588,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -552,155 +596,156 @@ msgstr ""
"Това са различните записи.\n"
"Можете да добавите още или да промените съществуващите."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Добави"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Готово"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Модифицирай"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Друга ОС (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Друга ОС (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Друга ОС (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Образ"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Главен"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Допълване"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Четене-запис"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Таблица"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Опасен"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Етикет"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "По подразбиране"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-големина"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Без графика"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Премахни запис"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Празен етикет не е разрешен"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Трябва да имате swap-дял"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Този етикет вече се използва"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Намерени са %s %s интерфейси"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Имате ли друг(и) ?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Имате ли някакъв %s интерфейс?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Не"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Да"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Инсталиране на драйвер за %s платка %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(модул %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -711,17 +756,17 @@ msgstr ""
"Опциите са във формат ``име=стойност име2=стойност2 ...''.\n"
"Например: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Опции на модула:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Кой %s драйвер да пробвам ?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -740,15 +785,15 @@ msgstr ""
"от която се нуждае ? По принцип това може да забие компютъра ви, но няма да "
"го повреди."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Автоматично засичане"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Задай опции"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -757,55 +802,55 @@ msgstr ""
"Зареждането на модула %s не успя.\n"
"Искате ли да опитате отново с други параметри ?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Тази парола е прекалено проста"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Това потребителско име е вече добавено"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Това потребителско име е вече добавено"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Добави потребител"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -814,32 +859,32 @@ msgstr ""
"Въведете потребител\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Приеми потребител"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Истинско име"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Потребителско име"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Шел"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Икона"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -848,59 +893,59 @@ msgstr ""
"потребител.\n"
"Искате ли тази възможност ?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител :"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Изберете Windows Manager за стартиране:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Моля, изберете използван език."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Всички"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Добавяне на потребител"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "Поделяне на файлове"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Този пакет трябва да бъде обновен\n"
"Сигурни ли сте, че искате да го изключите ?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -909,42 +954,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Добре дошли при Cracker-ите"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Лошо"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Стандартна"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Високо"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Високо"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Параноично"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -954,7 +999,7 @@ msgstr ""
"употреба, но е по-чувствително: не трябва да бъде използвана на машини\n"
"свързани с други или по Интернет. Няма достъп с пароли."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -962,7 +1007,7 @@ msgstr ""
"Паролата сега е включена, но използването като мрежов компютър не е "
"препоръчително."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -972,13 +1017,13 @@ msgstr ""
"използван да се свързва към Интернет като клиент. Има проверки на "
"сигурността. "
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -993,7 +1038,7 @@ msgstr ""
"Сигурността сега е достатъчно голяма да се използва системата като\n"
"сървър приемащ връзки от много клиенти. "
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1002,32 +1047,49 @@ msgstr ""
"Избираме 4-то ниво, но системата е напълно затворена.\n"
"Нивото на сигурност е на максимума си."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Опции"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Изберете ниво на сигурност"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Ниво на сигурност"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Използвайте libsafe за сървъри"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Библиотека, която осигурява защита от aтаки с препълване на буфер и форматни "
"стрингове."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1052,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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1066,7 +1128,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:915
+#: ../../bootloader.pm_.c:938
#, 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."
@@ -1081,7 +1143,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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1095,7 +1157,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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1109,84 +1171,180 @@ 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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Десктоп"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Стартово Меню"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате bootloader на дяла %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "няма въведена помощ още.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Настройка на начина на стартиране"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Файл"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Файл/_Изход"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle категоризиран монитор"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle монитор"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Обикновен монитор"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Обикновен Gtk+ монитор"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Пусни Aurora при стартиране"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Режим на Lilo/grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Режим на Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Инсталиране на системата"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Грешка"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Копиране на %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Без графика"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Избор на клас инсталация"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1195,42 +1353,69 @@ msgstr ""
"В момента използвате %s като програма за стартиране.\n"
"Цъкнете на Настрой, за да стартирате установяващия магьосник."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Настрой"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Запази избор на пакети"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Системен режим"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Пусни X-Window системата при стартиране"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Не, не искам autologin"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Да, искам autologin с това (потребител, десктоп)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
+#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
+#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
+#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
+#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "не мога да отворя /etc/inittab за четене: %s"
@@ -1275,68 +1460,119 @@ msgstr "Не мога да добавя повече дялове"
msgid "Screenshots will be available after install in %s"
msgstr "Можете да изберете други езици, които ще бъдат налице слединсталацията"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Франция"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Белгийска"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Немска"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Гръцка"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Норвежка"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Виж"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Италианска"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "серийна"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Неизвестен модел"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "нов"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Сървър"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Място на монтиране"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Моля, пробвайте мишката си"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Сървър"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Място на монтиране: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Опции: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Първо създайте backup на своите данни"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Прочетете внимателно !"
@@ -1350,15 +1586,6 @@ msgstr ""
"сектора\n"
"са достатъчни) в началото на диска"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Грешка"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Магьосник"
@@ -1384,7 +1611,7 @@ msgid "Please click on a partition"
msgstr "Моля, цъкнете на дяла"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Подробности"
@@ -1412,13 +1639,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Празен"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Друга"
@@ -1426,12 +1653,12 @@ msgstr "Друга"
msgid "Filesystem types:"
msgstr "Видове файлова система:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Създай"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Вид"
@@ -1441,7 +1668,7 @@ msgstr "Вид"
msgid "Use ``%s'' instead"
msgstr "Вместо това използвайте ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Изтрий"
@@ -1449,79 +1676,79 @@ msgstr "Изтрий"
msgid "Use ``Unmount'' first"
msgstr "Първо използвайте 'Демонтиране'"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"След промяна на типа на дяла %s, всички данни върху него ще бъдат загубени"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Изберете дял"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Изберете друг дял"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Излез"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Премини в Експертен режим"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Премини в Нормален режим"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Върни"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Продължение въпреки всичко ?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Изход без запис"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Изход, без да запис на таблицата на дяловете ?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Искате ли да запазите промените в /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Автоматично създаване"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Изчисти всичко"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Още"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Информацията за твърдия диск"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Всички първични дялове се използват"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Не мога да добавя повече дялове"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1529,31 +1756,31 @@ msgstr ""
"Ако искате още дялове, моля изтрийте един, за да можете да създадете един "
"разширен дял"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Запази таблицата с дяловете"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Възстанови таблицата с дяловете"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Спасяване таблицата с дяловете"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Презареди таблицата с дяловете"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Автоматично монтиране на сменяем носител"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Изберете файл"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1561,11 +1788,11 @@ msgstr ""
"Резервната таблица на дяловете не е със същата големина\n"
"Да продължа ли все пак ?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Предупреждение"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1573,129 +1800,112 @@ msgstr ""
"Сложете дискета във флопито\n"
"Всички данни, намиращи се върху дискетата, ще бъдат загубени"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Опитвам се да спася таблицата на дяловете"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Подробна информация"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Място на монтиране"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Опции"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Промени големината"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Премести"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Форматирай"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Монтирай"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Прибави към RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Прибави към LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Демонтирай"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Премахни от RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Премахни от LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Модифицирай RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Използвай за loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Създай нов дял"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Начален сектор: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Големина в MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Вид файлова система: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Място на монтиране: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Предпочитание: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Да премахна ли loopback файла ?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Промяна типа на дяла"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Коя файлова система искате ?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Преход от ext2 към ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Къде искате да монтирате loopback-файла %s ?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Къде искате да монтирате устройство %s ?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1704,133 +1914,138 @@ msgstr ""
"loopback.\n"
"Първо махнете loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Къде искате да монтирате устройство %s ?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Изчислявам границите на fat файловата система"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Промяна на големината"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Големината на дяла не може да бъде променена"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Всички данни на този дял трябва да бъдат архивирани"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"След промяна големината на дяла %s, данниte върху него ще бъдат загубени"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Изберете нова големина"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Нова големина в MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "На кой диск искате да го преместите ?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Сектор"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "На кой сектор искате да го преместите?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Местене"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Мествя дяла ... "
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Изберете съществуващ RAID за прибавяне"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "нов"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Изберете съществуващ LVM за прибавяне"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM име ?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Този дял не може да бъде използван за loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Име на loopback файла: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Дайте име на файл"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Файлът вече се използва то друг loopback, изберете друг файл."
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Файлът вече съшествува. Да го използвам ли ?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Опции за mount:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Различни"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "устройство"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "ниво"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "големина на парчето"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Внимание: тази операция е опасна"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Какъв тип разделяне на дялове ?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Този пакет трябва да бъде обновен\n"
"Сигурни ли сте, че искате да го изключите ?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1842,7 +2057,7 @@ msgstr ""
"Или използвате LILO и то не работи, или не използвате LILO и нямате нужда "
"от /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1854,7 +2069,7 @@ msgstr ""
"Ако смятате да използвате boot мениджъра LILO, бъдете внимателни при\n"
"прибавянето на /boot дял"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1864,44 +2079,44 @@ msgstr ""
"Няма зареждаща програма, която да може да се справи с него без /boot дял.\n"
"Така че добавете /boot дял"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Таблицата на дяловете на устройство %s ще бъде записана върху диска !"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Трябва да рестартирате, преди промените да влязат в сила"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "След форматиране на дяла %s, всички данни върху него ще бъдат загубени"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Форматиране"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Форматиране на loopback файла %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Форматиране на дяла %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Скрий файловете"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Премести файловете на нов дял"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1910,83 +2125,83 @@ msgstr ""
"Директорията %s вече съдържа някакви данни\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Премести файловете на нов дял"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Копиране на %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Изтриване на %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Устройство: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Буква на устройството под DOS: %s (просто предположение)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Вид: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Име: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Начало: сектор %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Размер: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s сектора"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "От цилиндър %d до цилиндър %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Форматиран\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Неформатиран\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Монтиран\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1995,7 +2210,7 @@ msgstr ""
"Loopback файл(ове):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2003,27 +2218,27 @@ msgstr ""
"Дял, който се стартира по подразбиране\n"
" (за MS-DOS boot, не за lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Ниво %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Размер на парчето %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дискове %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Име на loopback файла: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2035,7 +2250,7 @@ msgstr ""
"Драйвер-дял, може би трябва\n"
"трябва да го оставите.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2047,64 +2262,59 @@ msgstr ""
"ивица на дяла е за двойно\n"
"стартиране на системата ви.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Размер: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Информация: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дискове %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тип на таблицата с дялове: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "на шина %d адрес %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Опции: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Вид файлова система: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Паролите на съвпадат"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2156,23 +2366,23 @@ msgstr "NIS домейн"
msgid "Search servers"
msgstr "DNS сървър"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s форматиране от %s провалено"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "не знам как да форматирам %s в тип %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "грешка при демонтирането на %s: %s"
@@ -2189,33 +2399,33 @@ msgstr ""
msgid "server"
msgstr "сървър"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Точките на монтиране трябва да започват с /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Вече има дял с тази място на монтиране %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Не можете да използвате LVM логически тип за място на монтиране %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Тази директория трябва да остане в рамките на root файловата система."
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2224,26 +2434,26 @@ msgstr ""
"Нуждаете се от истинска файлова система (ext2, reiserfs) за тази точка на "
"монтиране\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Не можете да използвате LVM логически тип за място на монтиране %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Няма достатъчно място за автоматично заемане"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Грешка при отваряне на %s за запис: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2252,258 +2462,262 @@ msgstr ""
"създадени нови файлови системи. Моля проверете твърдия си диск си за "
"причината за този проблем"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Нямате никакви дялове!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Използвай автоматично засичане"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Общ"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Памет (DMA) на картата"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Форматиране"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Промяни типа"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Изход"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Помощ"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Помощ"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Помощ/_Относно..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Модул"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Памет (DMA) на картата"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Отказ"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Модул"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Описание"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Идентификация"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Изберете файл"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway устройство"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 бутона"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Изход"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Помощ"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Помощ"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Помощ/_Относно..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Автоматично засичане"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Засичане на дисковете"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Виж хардуерната информация"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Настройка на мишка"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Покажи информацията"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Настройка на мишка"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "засечен на порт %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Моля изчакайте"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d секунди"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Изтриване на принтера \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Използвай автоматично засичане"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Общ"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Автоматично засичане"
+msgid "Card model :"
+msgstr "Памет (DMA) на картата"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Промяни типа"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Форматиране"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -4101,7 +4315,7 @@ msgstr ""
"Цъкнете \"Отмяна\", за да отмените тази операция без загуба да данните и\n"
"дяловете съществуващи на този твърд диск."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4109,7 +4323,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -4138,20 +4352,20 @@ msgstr ""
"\n"
"Наистина ли искате да инсталирате тези сървъри ?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Не можете да използвате broadcast без NIS домейн"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Сложете FAT форматирана дискета в устройство %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Тази дискета не е форматирана на FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4159,7 +4373,7 @@ msgstr ""
"За да използвате запазен избор на пакети, стартирайте инсталацията с ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Грешка при четенето на файла %s"
@@ -4198,7 +4412,7 @@ msgstr ""
"\n"
"Да продължа ли все пак ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Трябва да имате FAT дял монтиран в /boot/efi"
@@ -4377,12 +4591,12 @@ msgstr ""
"Появи се грешка, но не знам как да се справя с нея деликатно.\n"
"Можете да продължите на свой риск."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Дублирай точката на монтиране %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4394,12 +4608,12 @@ msgstr ""
"Проверете компакт диска на инсталирания компютър използвайки \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Няма флопи устройство"
@@ -4409,7 +4623,7 @@ msgstr "Няма флопи устройство"
msgid "Entering step `%s'\n"
msgstr "Навлизам в етап `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4421,80 +4635,80 @@ msgstr ""
"Зацелта,\n"
"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Клас инсталация"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Моля, изберете един от следните класове на инсталация:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Избор на група пакети"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Избиране на пакети един по един"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Обща големина: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Лош пакет"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Име: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Версия: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Големина: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Важност: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Не можете да оставите пакета немаркиран, защото нямате място да го "
"инсталирате"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Следните пакети ще бъдат инсталирани"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Следните пакети ще бъдат премахнати"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Не можете да отбележете/деотбележете този пакет"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Това е нужен пакет, не може да бъде немаркиран"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4502,74 +4716,74 @@ msgstr ""
"Този пакет трябва да бъде обновен\n"
"Сигурни ли сте, че искате да го изключите ?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Не можете да изключите този пакет. Той трябва да бъде обновен"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Покажи автоматично отбелязаните пакети"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Инсталирай"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Зареди/Запази на дискета"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Обновяване на избора на пакети"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Миминална инсталация"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Изберете пакетите, които искате да инсталирате"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Инсталирам"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Пресмятане"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Оставащо време "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Моля, изчакайте, подготвяне на инсталацията"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d пакета"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Инсталиране на пакета %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Приеми"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Откажи"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4585,17 +4799,17 @@ msgstr ""
"Ако го нямате, натиснете Отмяна, за да избегнете инсталирането от този CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Да продължа ли все пак ?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Появи се грешка при поръчването на пакетите:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Появи се грешка при инсталиране на пакетите:"
@@ -4916,108 +5130,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Клавиатура"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Моля, изберете подреждане на клавиатурата."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Ето пълен списък на достръпните клавиатури"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Какъв клас инсталация желаете ?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Инсталирай/Обнови"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Това нова инсталация ли е или обновяване ?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Препоръчителна"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Експертна"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Обновяване"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Обновяване на избора на пакети"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Моля, изберете тип на мишката."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Порт на мишката"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Моля, изберете към кой сериен порт е свързана мишката ви."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Имитация на бутони"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Имитация на 2 бутона"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Имитация на 3 бутона"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Настройка на PCMCIA картите ..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Настройка на IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "няма дялове на разположение"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Претърсване на дяловете за намиране на точки на монтиране"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Изберете места за монтиране"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5033,7 +5247,7 @@ msgstr ""
"Друго решение е да забраните на DrakX поправя таблицата с дялове.\n"
"(грешката е %s)\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5041,7 +5255,7 @@ msgstr ""
"DiskDrake не успя да разчете правилно таблицата на дяловете.\n"
"Продължите на собствен риск !"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5050,70 +5264,70 @@ msgstr ""
"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Не е намерен главен дял за надграждане"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Root дял"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Кой е root-дялът (/) на системата ви ?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Налага се ра рестартирате, преди модификациите да предизвикат ефект"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Изберете дяловете, които искате да форматирате"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Проверка за лоши сектори ?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Форматиране на дялowe"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Създаване и форматиране на файла %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Няма достатъчно swap за приключване на инсталацията, моля добавете малко"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Търся налични пакети"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Търся налични пакети"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Търся пакети за обновяване"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Търся пакети за обновяване"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5121,7 +5335,7 @@ msgid ""
msgstr ""
"Системата ви няма достатъчно място за инсталация или обновяване (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5129,51 +5343,51 @@ msgstr ""
"Може изберете зареждане или запис на избора на пакети на флопи.\n"
"Форматът е същият като auto_install генерираните дискети."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Зареди от дискета"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Зареждане от дискета"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Избор на пакети"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Сложете дискета съдържаща избор на пакети"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Запази на дискета"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Избраната големина е по-голяма от достъпното пространство"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Изберете пакети за инсталиране"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Един момент"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -5192,11 +5406,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM озаглавен \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Подготвям инсталацията"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5205,21 +5419,21 @@ msgstr ""
"Инсталирам пакет %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "След инсталационна настройка"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Сложете стартиращата дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Сложете дискета за обновяване на модули в устройство %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5285,7 +5499,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5297,178 +5511,187 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Изберете огледален сървър,от който да получите пакетите"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Коя е времевата ви зона ?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Хадруерният ви часовник е настроен по GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP сървър"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Отдалечен CUPS сървър"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Няма принтер"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Имате ли друг(и) ?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Обобщение"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Мишка"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Часова зона"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Принтер"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN карта"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Звукова карта"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV карта"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Премахни Windows(TM)"
+msgid "Windows Domain"
+msgstr "NIS домейн"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Локални файлове"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Въведете парола за root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Без парола"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Идентификация"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP ауторизация"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Базов dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP сървър"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS ауторизация"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS домейн"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS сървър"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "LDAP ауторизация"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS домейн"
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP сървър"
+msgid "Authentication Windows Domain"
+msgstr "LDAP ауторизация"
#: ../../install_steps_interactive.pm_.c:1142
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Име на домейна"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5497,19 +5720,19 @@ msgstr ""
"Ако искате да създадете bootdisk за вашата система, поставете дискета в\n"
"първото устройство и натиснете \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Първо флопи устройство"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Второ флопи устройство"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Прескочи"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5535,7 +5758,7 @@ msgstr ""
"случаи на срив. Искате ли да създам bootdisk за системата ви ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5544,28 +5767,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Съжалявам няма флопи"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Изберете флопи драйв,където да направите стартираща дискета"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Сложете дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Създаване на стартираща дискета"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Подготовка на bootloader"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5577,11 +5800,11 @@ msgstr ""
"Инсталацията ще продължи, но ще трябва\n"
"да иползвате BootX, за да стартирате машината си"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Искате ли да използвате aboot ?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5589,15 +5812,15 @@ msgstr ""
"Грешка при инсталиране на aboot, \n"
"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Инсталиране на bootloader"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Инсталацията на bootloader провалена. Появи се следната грешка:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5614,17 +5837,17 @@ msgstr ""
" След което напишете: shut-down\n"
"При следващото рестартиране би трябвало да видете подсказката."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Сложете празна дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Подготвям дискета с автоматична инсталация"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5634,7 +5857,7 @@ msgstr ""
"\n"
"Наистина ли искате да излезете сега ?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5666,15 +5889,15 @@ msgstr ""
"Информация за настройване на системата ви можете да намерите в\n"
"слединсталационната глава от Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Подготви дискета за автоматична инсталация"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5688,15 +5911,15 @@ msgstr ""
"\n"
"Може би искате да повторите инсталацията.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Автоматизиран"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Повтори"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Запази избор на пакети"
@@ -5723,398 +5946,461 @@ msgstr ""
msgid "Choose a file"
msgstr "Изберете файл"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Напредничав"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Предишен"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Текст"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Лош избор, опитайте отново\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Вашият избор ? (по подразбиране е %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Вашият избор ? (по подразбиране е %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Опции: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Искате ли да използвате aboot ?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Вашият избор ? (по подразбиране е %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Чешка (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Немска"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Дворак"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Испанска"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Финландска"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Френска"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Норвежка"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Полска"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Руска"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Шведска"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UК клавиатура"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US клавиатура"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Албанска"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Арменска (стара)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Арменска (пишеща машина)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Арменска (фонетичен)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Азербайджанска (латиница)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Белгийска"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "включи"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Арменска (фонетичен)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Българска"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Бразилска (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Естонска"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Беларуска"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Швейцарска (немска наредба)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Швейцарска (френски наредба)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Чешка (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Немска (без неработещи клавиши)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Датска"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Дворак (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Дворак (Норвежка)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Дворак (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Естонска"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Грузинска (\"Руска\" наредба)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Грузинска (\"Латинска\" наредба)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Гръцка"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Унгарска"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Хърватска"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Израелска"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Израелска (фонетична)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Иранска"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Исландска"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Италианска"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Японска 106 клавиша"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Корейска клавиатура"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Латиноамериканска"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Латвийска"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Литвийска AZERTY (стара)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Литвийска AZERTY (нова)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Литвийска \"числова редица\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Литвийска \"фонетичен\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Латвийска"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Македонска"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Сръбска (кирилица)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Холандска"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Полска (QWERTY наредба)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Полска (QWERTZ наредба)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Португалска"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Канадска (Квебек)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Румънска (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Румънска (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Руска (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Словенска"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Словашка (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Словашка (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Сръбска (кирилица)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Таблица"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Тайванска клавиатура"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Таджикистанска клавиатура"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Турска (традиционен \"F\" модел)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Турска (модерен \"Q\" модел)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Украинска"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US клавиатура (международна)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Виетнамска \"числова редица\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Югославска (латиница)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -6123,37 +6409,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "\"Омагьосан кръг\" от монтирания: %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Първо премахни логичните дялово\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Телефонен номер"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Форматиране на дялове"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -6256,51 +6542,43 @@ msgstr "няма"
msgid "No mouse"
msgstr "Без мишка"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Моля, пробвайте мишката си"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "За да активирате мишката си,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "БУТНЕТЕ ТОПЧЕТО !"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Завърши"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Следващ ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Предишен"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Всичко правилно ли е ?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Информация"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Разшири дървото"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Изчисти дървото"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Превключване между нормално и сортиране по групи"
@@ -6323,6 +6601,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "използвай DHCP"
@@ -6350,7 +6632,7 @@ msgstr ""
"Не беше намерен мрежов адаптер в системата ви.\n"
"Не можете да настроите такъв вид връзка."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Изберете мрежов интерфейс"
@@ -6363,7 +6645,7 @@ msgstr "Моля, изберете кой мрежов адаптер да използвам за връзка към Интернет"
msgid "no network card found"
msgstr "не е открита мрежова карта"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Настойка на мрежата"
@@ -6379,7 +6661,7 @@ msgstr ""
"Host името трябва да буде напълно квалифицирано име,\n"
"като ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Име на хост:"
@@ -6407,7 +6689,7 @@ msgstr "Какъв е типът на ISDN връзката ?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6532,43 +6814,43 @@ msgstr "Моля, изберете сериен порт към който свързан модемът ви."
msgid "Dialup options"
msgstr "Опции за избиране по телефон"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Име на връзката"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Телефонен номер"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Потребителско име"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Базирана на скрипт"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Базирана на терминал"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Име на домейна"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Първи DNS сървър (по избор)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Втори DNS сървър (по избор)"
@@ -6680,13 +6962,13 @@ msgstr "Изберете профил за настройка"
msgid "Use auto detection"
msgstr "Използвай автоматично засичане"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Разширени функиции"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Откриване на устройства ..."
@@ -6799,7 +7081,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6810,7 +7092,7 @@ msgstr ""
"Просто приемете, за да оставите устройството настроено.\n"
"Поправката на полетата по-долу ще презапише тази настройка."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6820,43 +7102,43 @@ msgstr ""
"Всяко устройство трябва да бъде въведено като IP адрес\n"
"с точково-десетично означение (например, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Настройка на мрежовото устройство %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (драйвер %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP адрес"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Мрежова маска"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Автоматичен IP адрес"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Пуснат при стартиране"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6868,40 +7150,40 @@ msgstr ""
"като ``mybox.mylab.myco.com''.\n"
"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS сървър"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway устройство"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Настройка на proxy"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Проследяване на ID на мрежовата карта (полезно при лаптопи)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy-сървъра трябва да е http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy-сървъра трябва да е ftp://..."
@@ -6913,7 +7195,7 @@ msgstr "Настройка на Интернет"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Искате ли сега да опитате връзка към Интернет ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Изпробване на връзката..."
@@ -6941,43 +7223,43 @@ msgstr "Настройка на връзката"
msgid "Please fill or check the field below"
msgstr "Моля, попълнете или проверете полето по-долу"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ на картата"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Памет (DMA) на картата"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO на картата"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 на картата"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 на картата"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Личния ви телефонен номер"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Име на доставчика (напр. provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Телефонен номер на доставчика"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "1-ви DNS на доставчика (по желание)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "2-ри DNS на доставчика (по желание)"
@@ -6985,28 +7267,28 @@ msgstr "2-ри DNS на доставчика (по желание)"
msgid "Choose your country"
msgstr "Изберете страната си"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Режим на набиране"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Скорост на връзката"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Timeout на връзката (в сек)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Име на акаунта (потебителско име)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Парола на акаунта"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7042,7 +7324,7 @@ msgstr "Лош backup-файл"
msgid "Error writing to file %s"
msgstr "Грешка при запис във файла %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7089,7 +7371,7 @@ msgstr "LPD - Линеен Принтерен Демон"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Печатай, Без Опашка"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7117,7 +7399,7 @@ msgstr "Отдалечен принтер"
msgid "Printer on remote CUPS server"
msgstr "Принтер на отдалечен CUPS сървър"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Принтер на отдалечен LPD сървър"
@@ -7133,7 +7415,7 @@ msgstr "Принтер на SMB/Windows 95/98/NT сървър"
msgid "Printer on NetWare server"
msgstr "Принтер на NetWare сървър"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Въведете URI на печатащо устройство"
@@ -7141,112 +7423,112 @@ msgstr "Въведете URI на печатащо устройство"
msgid "Pipe job into a command"
msgstr "Прекарай работата през команда"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Неизвестен модел"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Локален принтер"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Отдалечен принтер"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Грешка при запис във файла %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(на %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(на тази машина)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP на CUPS сървъра"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (По подразбиране)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Изберете връзка към принтера"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Как е свързан принтерът ?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -7258,17 +7540,21 @@ msgstr ""
"тук; тези принтери ще бъдат засечени автоматично. Моля,\n"
"изберете \"Принтер на отдалечен CUPS сървър\" в този случай."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Настройка"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Отдалечен CUPS сървър"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
#, fuzzy
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
@@ -7291,7 +7577,7 @@ msgstr ""
"евентулано номер на порт на CUPS сървъра, за да вземете информация\n"
"за принтера от сървъра, иначе оставете полето празно."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
#, fuzzy
msgid ""
"\n"
@@ -7309,33 +7595,33 @@ msgstr ""
"забравяйте да рестартирате CUPS след това (команда: \"service\n"
"cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP адресът трябва да бъде във формат 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Номерът на порта трябва да е цяло число !"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP на CUPS сървъра"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Порт"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Автоматична настройка на CUPS"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Добави принтер"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7348,37 +7634,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Локален принтер"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Отдалечен принтер"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Локален принтер"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7392,53 +7709,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Използвай автоматично засичане"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Име на отдалечен принтер"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Тестване портовете"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Принтер на SMB/Windows 95/98/NT сървър"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "засечена %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Мрежов принтер (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Принтер на SMB/Windows 95/98/NT сървър"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7446,43 +7760,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Въведете URI на печатащо устройство"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Локален принтер"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Локален принтер"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
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:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7490,7 +7795,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7498,82 +7803,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Въведете URI на печатащо устройство"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Настройка на цветове"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Инсталиране на пакети ..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Инсталиране на пакети ..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Инсталиране на пакети ..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Четене на базата данни от принтери ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Четене на базата данни от принтери ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Опции на отдалечен lpd-принтер"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7583,27 +7844,47 @@ msgstr ""
"да предоставите имената на хоста на принтерния сървър и\n"
"името на принтера на този сървър."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Име на отдалечен хост"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Име на отдалечен принтер"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Липсва име на име на хост !"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Липсва име на отдалечен принтер !"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "засечена %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Стартиране мрежата ...."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Печатане на принтер \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Настройки на SMB (Windows 9x/NT) принтер"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7617,35 +7898,46 @@ msgstr ""
"принтера, до който искате достъп и подходящо имен, парола и информация\n"
"за работната група."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "Хост на SMB сървър"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP на SMB сървър:"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Общо име"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Работна група"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Използвай автоматично засичане"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Трябва да бъдат зададени и името и IP адреса на сървъра !"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Липсва име на SAMBA share !"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7669,7 +7961,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7678,7 +7970,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7686,11 +7978,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Опции за NetWare принтер"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7701,34 +7993,50 @@ msgstr ""
"За да печатите на NetWare принтер ,трябва да знаете имео му и възможно\n"
"адреса на сървъра, както и името на опашката,потребителското име,парола."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Сървър на принтера"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Име на печатната опашката"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Липсва име на NCP сървър !"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Липсва име на NCP опашка !"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Опции на Socket принтер"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+msgid ""
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 принтер, трябва да предоставите\n"
"името на хоста на принтера и, евентуално, номер на порт.\n"
@@ -7736,19 +8044,21 @@ msgstr ""
"на други сървъри може да варира. Вижте ръковоството на\n"
"хардуера си."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Име на хост на принтера"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Липсва име на хост на принтерa !"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Име на хост на принтера"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Печатащо устройство URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7758,11 +8068,11 @@ msgstr ""
"изпълни или CUPS или Foomatic спецификациите. Отбележете, че не всички "
"типове URI се поддрържат от spooler-ите."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Трябва да бъде въведен валиден URI !"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7772,24 +8082,28 @@ msgstr ""
"Полетата Описание и Местоположе не трябва да бъдат\n"
"попълвани. Има коментари за потребителите."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Име на принтер"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Местоположение"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Четене на базата данни от принтери ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Подготвяне на базата данни от принтери ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Име на отдалечен принтер"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7804,26 +8118,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Всичко правилно ли е ?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Име на отдалечен принтер"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Избор модел на принтера"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Какъв модел принтер имате ?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7832,17 +8146,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Настройки на OKI Winprinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7852,11 +8166,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Настройка на Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -7869,7 +8183,7 @@ msgstr ""
"принтерни машини. Моля, свържете принтера си на локален порт\n"
"или го настройте на машината, към която е свързан."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7882,7 +8196,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7898,22 +8212,22 @@ msgstr ""
"Отбележете, че при много високо качесто на изхода на\n"
"принтера, той може значително да се забави."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Настройката %s трябва да е цяло число !"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Настройката %s трябва да е число !"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Опцията %s е извън границите !"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7922,11 +8236,11 @@ msgstr ""
"Искате ли да настроите този принтер (\"%s\")\n"
"като принтер по подразбиране ?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Тестови страници"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7939,40 +8253,40 @@ msgstr ""
"време да се изпечата и на лазерни принтери с малко памет може въобще\n"
"да не излезе. В повечето случаи е достатъчна стандартна тестова страница."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Без тестови страници"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Печат"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Стандартна тестова страница"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Алтернативна тестова страница (Писмо)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Алтернативна тестова страница (А4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Тестова страница със снимка"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Отпечатване на тестови страници"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Отпечатване на тестов(ата/ите) страниц(а/и) ..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7987,7 +8301,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7995,15 +8309,15 @@ msgstr ""
"Тестовите страници са изпратени към принтерна.\n"
"Може да отнеме малко време преди принтера да започне.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Проработи ли както трябва ?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8016,7 +8330,7 @@ msgstr ""
"<file>\" или \"kprinter <file>\". Графичните инструменти ви позволяват да "
"избирате принтера и да поправяте лесно настройките на опциите.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8026,8 +8340,8 @@ msgstr ""
"печатните диалози в мноѓо приложения. Но тўк не поставяйте името на файла, "
"защото то се подава от приложението.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8040,7 +8354,7 @@ msgstr ""
"за определена работа на принтера. Просто добавете целаните настройки към "
"командния ред, напр. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8050,13 +8364,13 @@ msgstr ""
"За да видите списък на достъпните опции за текущия принтер, или прочетете "
"списъка показан по-долу или цъкнете на бутона \"Списък с опции за печат\".\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8065,8 +8379,8 @@ msgstr ""
"За да изпечатате файл от командния ред (терминален прозорец) използвайте "
"командата \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8076,7 +8390,7 @@ msgstr ""
"печатните диалози в много приложения. Но тук не поставяйте името на файла, "
"защото то се подава от приложението.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -8086,7 +8400,7 @@ msgstr ""
"\"Списък с опции за печат\".\n"
"\n"
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8095,7 +8409,7 @@ msgstr ""
"За да отпечатате файл от командния ред (терминален прозорец), използвайте "
"командата \"%s <file>\" или \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8105,7 +8419,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8118,45 +8432,45 @@ msgstr ""
"настройки за определена работа на принтера. Просто добавете исканите "
"настройки към командния ред, напр. \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Печатане на принтер \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Печатане на принтер \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Печатане на принтер \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Печатане на принтер \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Затвори"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Списък с принтерни опции"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8165,9 +8479,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8178,17 +8492,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Четене на данни от принтера ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Пренос на настройка на принтер"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8204,7 +8518,7 @@ msgstr ""
"прехвърлят.\n"
"Не всички опашки могат да бъдат прехвърлени по следните причини:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8213,7 +8527,7 @@ msgstr ""
"CUPS не поддържа принтери на Novell сървъри или принтери\n"
"изпращащи данни във свободно-изградена команда.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8222,11 +8536,11 @@ msgstr ""
"PDQ поддържа само локални принтери, отдалечени LPD принтери\n"
"и Socket/TCP принтери.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD и LPRng не поддържа IPP принтери.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8235,7 +8549,7 @@ msgstr ""
"Като допълнение, опашките не създадени с тази програма\n"
"или \"foomatic-configure\" не могат да бъдат прехвърляни."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
#, fuzzy
msgid ""
"\n"
@@ -8247,7 +8561,7 @@ msgstr ""
"от производителите им или с оригинални CUPS драйвери не\n"
"могат да бъдат прехвърляни."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8257,15 +8571,15 @@ msgstr ""
"Отбележете принтерите, които искате да прехвърлите и цъкнете\n"
"\"Прехвърли\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Не прехвърляй принтери"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Прехвърли"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8276,11 +8590,11 @@ msgstr ""
"Цъкнете \"Прехвърли\", за да го презапишете.\n"
"Можете също така да напишете ново име или да пропуснте принтера."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Името на принтера трябва да съдържа само букви, числа и подчертавка"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8289,16 +8603,16 @@ msgstr ""
"Принтерът \"%s\" вече съществува,\n"
"наистина ли искате да презапишете настройката ?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Ново име на принтер"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Прехвърляне на %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8308,29 +8622,29 @@ msgstr ""
"Искате ли да го оставите по подразбиране в новата\n"
"принтерна система %s ?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Опресняване на данните от принтера ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Настройка на отдалечен принтер"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Стартиране мрежата ...."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "В момента настройвам мрежата"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Функционалността на мрежата не е настроена"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8338,11 +8652,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Продължи без настойка на мрежата"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8352,7 +8666,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8364,24 +8678,24 @@ msgstr ""
"си. Тогава опитайте да настроите отдалечения принтер\n"
"отново."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Рестартиране на принтерната система"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "високо"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "параноично"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Инсталиране на принтерната система в %s ниво на сигурност"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8396,11 +8710,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Стартиране на принтерната система при стартиране"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8414,66 +8728,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Проверка на инсталирания софтуер..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Изтриване на LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Изтриване на LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Изберете принтерен spooler"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Коя принтерна система (spooler) изкате да използвате ?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Настройка на принтера \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Инсталиране на пакети ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Опции на принтера"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Подготвяне на PinterDrake ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Настройка на принтера \"%s\" ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Искате ли да настроите печата ?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Печатна система: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Принтер"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8486,7 +8800,7 @@ msgstr ""
"или за да получите информация за него, или\n"
"върху \"Добави Принтер\", за да добавите нов принтер."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8498,33 +8812,29 @@ msgstr ""
"или за да получите информация за него, или\n"
"върху \"Добави Принтер\", за да добавите нов принтер."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Настойка на мрежата"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Нормален режим"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Изход"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Искате ли да настроите друг принтер ?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Поправи настройките на принтер"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8533,101 +8843,101 @@ msgstr ""
"Принтер %s: %s %s\n"
"Какво искате да поправите по този принтер ?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Давай !"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Тип на връзката към принтера"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Име на принтера, описание, местоположение"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Производител на принтера, модел, драйвер"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Производител на принтера, модел"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Определи този принтер за ползване по подразбиране"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Отпечатване на тестови страници"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Искате ли да настроите друг принтер ?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Премахване на принтера"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Изтриване на стар принтер \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Принтер по подразбиране"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Принтерът \"%s\" вече е определен за ползване по подразбиране."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Наистина ли искате да премахнете принтера \"%s\" ?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Изтриване на принтера \"%s\" ..."
@@ -8682,8 +8992,9 @@ msgstr ""
"Оставете празно, ако не искате FTP proxy."
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL трябва да започва с 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL трябва да е започва с 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8732,43 +9043,6 @@ msgstr "mkraid пропадна (може би raidtools липсват ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Няма достатъчно дялове за RAID ниво %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-" but very sensitive: it must not be used for a machine "
-"connected to others\n"
-" or to the Internet. There is no password access."
-msgstr ""
-"Това ниво се използва с внимание. Това кара системата ви по-лесна за\n"
-"употреба, но е по-чувствително: не трябва да бъде използвана на машини\n"
-"свързани с други или по Интернет. Няма достъп с пароли."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"С това ниво на сигурност, ползването на системата като сървър става "
-"възможно.\n"
-"Сигурността сега е достатъчно голяма да се използва системата като\n"
-"сървър приемащ връзки от много клиенти. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Настройка на локална мрежа"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Опции"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Пусни ALSA (Advanced Linux Sound Architecture) звуковата система"
@@ -9075,7 +9349,7 @@ msgstr "Интернет"
msgid "File sharing"
msgstr "Поделяне на файлове"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Система"
@@ -9194,7 +9468,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Контролен център"
@@ -9294,20 +9568,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Инсталиране на пакети ..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Моля влезте отново в %s, за да активирате промените"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9315,175 +9589,175 @@ msgstr ""
"Не мога да разчета таблицата на дяловете, прекалено е повредена :(\n"
"Ще се опитам да продължа да разчиствам лошите дялове"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Пренос на настройка на принтер"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Сървър Бази-данни"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Сървър Бази-данни"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS сървър"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS сървър"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Добави потребител"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP клиент"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Помощ"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Не свързан"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Изтрий"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Изберете файл"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Добави потребител"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP клиент"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Настройка ..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "пренастройка"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Сложете стартиращата дискета в устройство %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Няма флопи устройство"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Грешка !"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Не мога да намеря нужна картинка `%s'."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Настройчик на автоматична иснталация"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9498,11 +9772,11 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Настройка на автоматичните стъпки"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9510,12 +9784,12 @@ msgstr ""
"Моля, изберете за всяка стъпка, дали ще се преиграе като при инсталацията, "
"или ще бъде ръчна"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Подготвям дискета с автоматична инсталация"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9523,12 +9797,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Поздравления !"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9536,29 +9810,42 @@ msgstr ""
"Дискетата е успешно създадена.\n"
"Сега можете да преиграете инсталацията."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Инсталирай"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Добавяне на потребител"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Да премахна ли loopback файла ?"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9566,7 +9853,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9574,34 +9861,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Тестови страници"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Лош backup-файл"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9609,738 +9960,803 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Грешка при четенето на файла %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Избор на пакети"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Изтриване на опашката"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Премахни Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Потребителско име"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Прехвърли"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Моля, пробвайте мишката си"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Моля, опитайте отново"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Моля, опитайте отново"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "още веднъж парола"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Моля, изберете подреждане на клавиатурата."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Моля, цъкнете на носителя"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1868
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Моля, изберете пакетите, които искате да инсталирате."
+msgid " Erase Now "
+msgstr "Прехвърли"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Моля, цъкнете на носителя"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Моля, цъкнете на носителя"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Изберете файл"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Моля, изберете пакетите, които искате да инсталирате."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Моля, изберете пакетите, които искате да инсталирате."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Моля, пробвайте мишката си"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Мрежов интерфейс"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Вид"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Потребителско име"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Един момент"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Опции на модула:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Моля, изберете пакетите, които искате да инсталирате."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Файлови системи"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Устройство на мишката: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Опции"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Моля, изберете тип на мишката."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Моля, пробвайте мишката си"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN връзка"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Изберете връзка към принтера"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Възстанови от дискета"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Моля, изберете тип на мишката."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Друга"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Инсталиране на системата"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Моля, изберете тип на мишката."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Клиентска"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Предишен"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Състояние"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Възстанови от файл"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Текст"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Следните пакети ще бъдат инсталирани"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Моля, изберете използван език."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Лош backup-файл"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Запази във файл"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Моля, пробвайте мишката си"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Моля, изберете пакетите, които искате да инсталирате."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Настройка на мрежата"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Настройка"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Настройка на локална мрежа"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Файлови системи"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10351,7 +10767,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10372,7 +10788,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10381,7 +10797,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10405,7 +10821,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10422,21 +10838,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10450,17 +10866,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10477,7 +10893,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10517,7 +10933,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10528,7 +10944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10541,7 +10957,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10580,95 +10996,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Инсталацията на %s провалена. Появи се следната грешка:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Конзолни инструменти"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Контролен център"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "задължителен"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Мишка"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Отдалечен принтер"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Общо име"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Принтер"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Магьосник за настройка на мрежата"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Идентификация"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Избор на пакети"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Моля изчакайте"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10680,148 +11123,148 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Изход от инсталационната програма"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "порт"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Изход от инсталационната програма"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Можете да изберете други езици, които ще бъдат налице слединсталацията"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Настройка на мрежата (%d адаптера)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Профил: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Изтрой профил ..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Профил за изтриване:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Нов профил ..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Име на създавания профил (новият профил се създава като копие на текущия):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Име на хост:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Интернет достъп"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Тип: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Интерфейс:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Състояние:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Настройка на Интернет достъпа ..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Настройка на LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Драйвер"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Интерфейс"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Протокол"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Състояние"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Настойка на локална мрежа ..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Цъкнете тук, за да стартирате магьосника ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Магьосник..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Приложи"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Моля, почакайте ... Прилагане на настройките"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Свързан"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Не свързан"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Свързване ..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Отвързване ..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10829,42 +11272,42 @@ msgstr ""
"Нямате настроен интерфейс.\n"
"Настройте ги преди това, като цъкнете на 'Настройка'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Настройка на локална мрежа"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Адаптер %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Стартиращ протокол"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Пуснат при стартиране"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP клиент"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "активирай сега"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate n