package install_steps_interactive; # $Id$ use diagnostics; use strict; use vars qw(@ISA $new_bootstrap); @ISA = qw(install_steps); #-###################################################################################### #- misc imports #-###################################################################################### use common; use partition_table qw(:types); use partition_table::raw; use install_steps; use install_interactive; use install_any; use install_messages; use detect_devices; use run_program; use devices; use fsedit; use loopback; use mouse; use modules; use modules::interactive; use lang; use keyboard; use any; use fs; use log; #-###################################################################################### #- In/Out Steps Functions #-###################################################################################### sub errorInStep($$) { my ($o, $err) = @_; $o->ask_warn(N("Error"), [ N("An error occurred"), formatError($err) ]); } sub kill_action { my ($o) = @_; $o->kill; } sub charsetChanged {} #-###################################################################################### #- Steps Functions #-###################################################################################### #------------------------------------------------------------------------------ sub selectLanguage { my ($o) = @_; $o->{locale}{lang} = any::selectLanguage($o, $o->{locale}{lang}, $o->{locale}{langs} ||= {}); install_steps::selectLanguage($o); $o->charsetChanged; if ($o->isa('interactive::gtk')) { $o->ask_warn('', formatAlaTeX( "If you see this message it is because you chose a language for which DrakX does not include a translation yet; however the fact that it is listed means there is some support for it anyway. That is, once GNU/Linux will be installed, you will be able to at least read and write in that language; and possibly more (various fonts, spell checkers, various programs translated etc. that varies from language to language).")) if $o->{locale}{lang} !~ /^en/ && !lang::load_mo(); } else { #- no need to have this in po since it is never translated $o->ask_warn('', "The characters of your language can't be displayed in console, so the messages will be displayed in english during installation") if $ENV{LANGUAGE} eq 'C'; } } sub acceptLicense { my ($o) = @_; my $r = 'Refuse'; $o->ask_from_({ title => N("License agreement"), messages => formatAlaTeX(install_messages::main_license() . "\n\n\n" . install_messages::warning_about_patents()), callbacks => { ok_disabled => sub { $r eq 'Refuse' } }, }, [ { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list' } ]) or die 'already displayed'; } #------------------------------------------------------------------------------ sub selectKeyboard { my ($o, $clicked) = @_; my $from_usb = keyboard::from_usb(); my $l = keyboard::lang2keyboards(lang::langs($o->{locale}{langs})); if ($::expert || $clicked || !($from_usb || @$l && $l->[0][1] >= 90) || listlength(lang::langs($o->{locale}{langs})) > 1) { add2hash($o->{keyboard}, $from_usb); my @best = uniq($from_usb ? $from_usb->{KEYBOARD} : (), (map { $_->[0] } @$l), 'us_intl'); my $format = sub { translate(keyboard::KEYBOARD2text($_[0])) }; my $other; my $ext_keyboard = my $KEYBOARD = $o->{keyboard}{KEYBOARD}; $o->ask_from_( { title => N("Keyboard"), messages => N("Please choose your keyboard layout."), advanced_messages => N("Here is the full list of keyboards available"), advanced_label => N("More"), callbacks => { changed => sub { $other = $_[0] == 1 } }, }, [ if_(@best > 1, { val => \$KEYBOARD, type => 'list', format => $format, sort => 1, list => [ @best ] }), { val => \$ext_keyboard, type => 'list', format => $format, list => [ difference2([ keyboard::KEYBOARDs() ], \@best) ], advanced => @best > 1 } ]); $o->{keyboard}{KEYBOARD} = $other ? $ext_keyboard : $KEYBOARD; delete $o->{keyboard}{unsafe}; } keyboard::group_toggle_choose($o, $o->{keyboard}) or goto &selectKeyboard; install_steps::selectKeyboard($o); } #------------------------------------------------------------------------------ sub selectInstallClass { my ($o) = @_; if (my @l = install_any::find_root_parts($o->{fstab}, $o->{prefix})) { log::l("proposing to upgrade partitions " . join(" ", map { $_->{part}{device} } @l)); my @releases = uniq(map { $_->{release} } @l); if (@releases != @l) { #- same release name so adding the device to differentiate them: $_->{release} .= " ($_->{part}{device})" foreach @l; } my $p = $o->ask_from_listf(N("Install/Upgrade"), N("Is this an install or an upgrade?"), sub { ref $_[0] ? (@l > 1 ? N("Upgrade %s", $_[0]{release}) : N("Upgrade")) : translate($_[0]); }, [ @l, N_("Install") ]); if (ref $p) { my $part = $p->{part}; log::l("choosing to upgrade partition $part->{device}"); install_any::use_root_part($o->{all_hds}, $part, $o->{prefix}); $o->{isUpgrade} = 1; } } } #------------------------------------------------------------------------------ sub selectMouse { my ($o, $force) = @_; $force ||= $o->{mouse}{unsafe}; if ($force) { my $prev = $o->{mouse}{type} . '|' . $o->{mouse}{name}; $o->ask_from('', N("Please choose your type of mouse."), [ { list => [ mouse::fullnames() ], separator => '|', val => \$prev } ]); $o->{mouse} = mouse::fullname2mouse($prev); } if ($force && $o->{mouse}{type} eq 'serial') { $o->set_help('selectSerialPort'); $o->{mouse}{device} = $o->ask_from_listf(N("Mouse Port"), N("Please choose which serial port your mouse is connected to."), \&mouse::serial_port2text, [ mouse::serial_ports() ]) or return &selectMouse; } if (arch() =~ /ppc/ && $o->{mouse}{nbuttons} == 1) { #- set a sane default F11/F12 $o->{mouse}{button2_key} = 87; $o->{mouse}{button3_key} = 88; $o->ask_from('', N("Buttons emulation"), [ { label => N("Button 2 Emulation"), val => \$o->{mouse}{button2_key}, list => [ mouse::ppc_one_button_keys() ], format => \&mouse::ppc_one_button_key2text }, { label => N("Button 3 Emulation"), val => \$o->{mouse}{button3_key}, list => [ mouse::ppc_one_button_keys() ], format => \&mouse::ppc_one_button_key2text }, ]) or return; } if ($o->{mouse}{device} eq "usbmouse") { modules::interactive::load_category($o, 'bus/usb', 1, 1); eval { devices::make("usbmouse"); modules::load(qw(hid mousedev usbmouse)); }; } $o->SUPER::selectMouse; 1; } #------------------------------------------------------------------------------ sub setupSCSI { my ($o) = @_; if (!$::noauto && arch() =~ /i.86/) { if ($o->{pcmcia} ||= !$::testing && c::pcmcia_probe()) { my $w = $o->wait_message(N("PCMCIA"), N("Configuring PCMCIA cards...")); my $results = modules::configure_pcmcia($o->{pcmcia}); $w = undef; $results and $o->ask_warn('', $results); } } { my $_w = $o->wait_message(N("IDE"), N("Configuring IDE")); modules::load(modules::category2modules('disk/cdrom')); } modules::interactive::load_category($o, 'bus/firewire', 1); my $have_non_scsi = detect_devices::hds(); #- at_least_one scsi device if we have no disks modules::interactive::load_category($o, 'disk/scsi|hardware_raid', 1, !$have_non_scsi); modules::interactive::load_category($o, 'disk/scsi|hardware_raid') if !detect_devices::hds(); #- we really want a disk! install_interactive::tellAboutProprietaryModules($o); install_any::getHds($o, $o); } sub ask_mntpoint_s { my ($o, $fstab) = @_; $o->set_help('ask_mntpoint_s'); my @fstab = grep { isTrueFS($_) } @$fstab; @fstab = grep { isSwap($_) } @$fstab if @fstab == 0; @fstab = @$fstab if @fstab == 0; die N("No partition available") if @fstab == 0; { my $_w = $o->wait_message('', N("Scanning partitions to find mount points")); install_any::suggest_mount_points($fstab, $o->{prefix}, 'uniq'); log::l("default mntpoint $_->{mntpoint} $_->{device}") foreach @fstab; } if (@fstab == 1) { $fstab[0]{mntpoint} = '/'; } else { $o->ask_from('', N("Choose the mount points"), [ map { { label => partition_table::description($_), val => \$_->{mntpoint}, not_edit => 0, list => [ '', fsedit::suggestions_mntpoint(fsedit::empty_all_hds()) ] } } grep { !$_->{real_mntpoint} || common::usingRamdisk() } @fstab ]) or return; } $o->SUPER::ask_mntpoint_s($fstab); } #------------------------------------------------------------------------------ sub doPartitionDisks { my ($o) = @_; if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) { #- need to make bootstrap part if NewWorld machine - thx Pixel ;^) if (defined $partition_table::mac::bootstrap_part) { #- don't do anything if we've got the bootstrap setup #- otherwise, go ahead and create one somewhere in the drive free space } else { undef = $partition_table::mac::freepart; #- please "perl -w" my $freepart = $partition_table::mac::freepart; if ($freepart && $freepart->{size} >= 1) { log::l("creating bootstrap partition on drive /dev/$freepart->{hd}{device}, block $freepart->{start}"); $partition_table::mac::bootstrap_part = $freepart->{part}; log::l("bootstrap now at $partition_table::mac::bootstrap_part"); fsedit::add($freepart->{hd}, { start => $freepart->{start}, size => 1 << 11, type => 0x401, mntpoint => '' }, $o->{all_hds}, { force => 1, primaryOrExtended => 'Primary' }); $new_bootstrap = 1; } else { $o->ask_warn('', N("No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake")); } } } if (!$o->{isUpgrade}) { install_interactive::partitionWizard($o); } } #------------------------------------------------------------------------------ sub rebootNeeded { my ($o) = @_; $o->ask_warn('', N("You need to reboot for the partition table modifications to take place")); install_steps::rebootNeeded($o); } #------------------------------------------------------------------------------ sub choosePartitionsToFormat { my ($o, $fstab) = @_; $o->SUPER::choosePartitionsToFormat($fstab); my @l = grep { !$_->{isMounted} && $_->{mntpoint} && (!isSwap($_) || $::expert) && (!isFat_or_NTFS($_) || $_->{notFormatted} || $::expert) && (!isOtherAvailableFS($_) || $::expert || $_->{toFormat}) } @$fstab; $_->{toFormat} = 1 foreach grep { isSwap($_) && !$::expert } @$fstab; return if @l == 0 || !$::expert && every { $_->{toFormat} } @l; #- keep it temporary until the guy has accepted $_->{toFormatTmp} = $_->{toFormat} || $_->{toFormatUnsure} foreach @l; $o->ask_from_( { messages => N("Choose the partitions you want to format"), advanced_messages => N("Check bad blocks?"), }, [ map { my $e = $_; ({ text => partition_table::description($e), type => 'bool', val => \$e->{toFormatTmp} }, if_(!isLoopback($_) && !isThisFs("reiserfs", $_) && !isThisFs("xfs", $_) && !isThisFs("jfs", $_), { text => partition_table::description($e), type => 'bool', advanced => 1, disabled => sub { !$e->{toFormatTmp} }, val => \$e->{toFormatCheck} })) } @l ] ) or die 'already displayed'; #- ok now we can really set toFormat foreach (@l) { $_->{toFormat} = delete $_->{toFormatTmp}; $_->{isFormatted} = 0; } } sub formatMountPartitions { my ($o, $_fstab) = @_; my $w; catch_cdie { fs::formatMount_all($o->{all_hds}{raids}, $o->{fstab}, $o->{prefix}, sub { my ($msg) = @_; $w ||= $o->wait_message('', $msg); $w->set($msg); }); } sub { $@ =~ /fsck failed on (\S+)/ or return; $o->ask_yesorno('', N("Failed to check filesystem %s. Do you want to repair the errors? (beware, you can loose data)", $1), 1); }; undef $w; #- help perl (otherwise wait_message stays forever in newt) die N("Not enough swap space to fulfill installation, please add some") if availableMemory() < 40 * 1024; } #------------------------------------------------------------------------------ sub setPackages { my ($o, $rebuild_needed) = @_; my $w = $o->wait_message('', $rebuild_needed ? N("Looking for available packages and rebuilding rpm database...") : N("Looking for available packages...")); install_any::setPackages($o, $rebuild_needed); $w->set(N("Looking at packages already installed...")); pkgs::selectPackagesAlreadyInstalled($o->{packages}, $o->{prefix}); if ($rebuild_needed) { $w->set(N("Finding packages to upgrade...")); pkgs::selectPackagesToUpgrade($o->{packages}, $o->{prefix}); } } #------------------------------------------------------------------------------ sub choosePackages { my ($o, $packages, $compssUsers, $_first_time) = @_; #- this is done at the very beginning to take into account #- selection of CD by user if using a cdrom. $o->chooseCD($packages) if $o->{method} eq 'cdrom' && !$::oem; my $availableC = install_steps::choosePackages(@_); my $individual; require pkgs; my $min_size = pkgs::selectedSize($packages); $min_size < $availableC or die N("Your system does not have enough space left for installation or upgrade (%d > %d)", $min_size, $availableC); my $min_mark = 4; my $b = pkgs::saveSelected($packages); my $_level = pkgs::setSelectedFromCompssList($packages, { map { $_ => 1 } map { @{$compssUsers->{$_}{flags}} } @{$o->{compssUsersSorted}} }, $min_mark, 0); my $max_size = pkgs::selectedSize($packages) + 1; #- avoid division by zero. log::l("max size (level $min_mark) is : " . formatXiB($max_size)); pkgs::restoreSelected($b); chooseGroups: $o->chooseGroups($packages, $compssUsers, $min_mark, \$individual, $max_size) if !$o->{isUpgrade} && !$::corporate; ($o->{packages_}{ind}) = pkgs::setSelectedFromCompssList($packages, $o->{compssUsersChoice}, $min_mark, $availableC); $o->choosePackagesTree($packages) or goto chooseGroups if $individual; install_any::warnAboutRemovedPackages($o, $o->{packages}); install_any::warnAboutNaughtyServers($o) or goto chooseGroups; } sub choosePackagesTree { my ($o, $packages, $limit_to_medium) = @_; $o->ask_many_from_list('', N("Choose the packages you want to install"), { list => [ grep { !$limit_to_medium || pkgs::packageMedium($packages, $_) == $limit_to_medium } @{$packages->{depslist}} ], value => \&URPM::Package::flag_selected, label => \&URPM::Package::name, sort => 1, }); } sub loadSavePackagesOnFloppy { my ($o, $packages) = @_; $o->ask_from('', N("Please choose load or save package selection on floppy. The format is the same as auto_install generated floppies."), [ { val => \ (my $choice), list => [ N_("Load from floppy"), N_("Save on floppy") ], format => \&translate, type => 'list' } ]) or return; if ($choice eq 'Load from floppy') { while (1) { my $w = $o->wait_message(N("Package selection"), N("Loading from floppy")); log::l("load package selection from floppy"); my $O = eval { install_any::loadO(undef, 'floppy') }; if ($@) { $w = undef; #- close wait message. $o->ask_okcancel('', N("Insert a floppy containing package selection")) or return; } else { install_any::unselectMostPackages($o); foreach (@{$O->{default_packages} || []}) { my $pkg = pkgs::packageByName($packages, $_); pkgs::selectPackage($packages, $pkg) if $pkg; } return 1; } } } else { log::l("save package selection to floppy"); install_any::g_default_packages($o, 'quiet'); } } sub chooseGroups { my ($o, $packages, $compssUsers, $min_level, $individual, $max_size) = @_; #- for all groups available, determine package which belongs to each one. #- this will enable getting the size of each groups more quickly due to #- limitation of current implementation. #- use an empty state for each one (no flag update should be propagated). #- OLD VERSION my $b = pkgs::saveSelected($packages); install_any::unselectMostPackages($o); pkgs::setSelectedFromCompssList($packages, {}, $min_level, $max_size); my $system_size = pkgs::selectedSize($packages); my ($sizes, $pkgs) = pkgs::computeGroupSize($packages, $min_level); pkgs::restoreSelected($b); log::l("system_size: $system_size"); my @groups = @{$o->{compssUsersSorted}}; my %stable_flags = grep_each { $::b } %{$o->{compssUsersChoice}}; delete $stable_flags{$_} foreach map { @{$compssUsers->{$_}{flags}} } @groups; my $compute_size = sub { my %pkgs; my %flags = %stable_flags; @flags{@_} = (); my $total_size; A: while (my ($k, $size) = each %$sizes) { Or: foreach (split "\t", $k) { foreach (split "&&") { exists $flags{$_} or next Or; } $total_size += $size; $pkgs{$_} = 1 foreach @{$pkgs->{$k}}; next A; } } log::l("computed size $total_size"); log::l("chooseGroups: ", join(" ", sort keys %pkgs)); int $total_size; }; my %val = map { $_ => every { $o->{compssUsersChoice}{$_} } @{$compssUsers->{$_}{flags}} } @groups; # @groups = grep { $size{$_} = round_down($size{$_} / sqr(1024), 10) } @groups; #- don't display the empty or small one (eg: because all packages are below $min_level) my ($size, $unselect_all); my $available_size = install_any::getAvailableSpace($o) / sqr(1024); my $size_to_display = sub { my $lsize = $system_size + $compute_size->(map { @{$compssUsers->{$_}{flags}} } grep { $val{$_} } @groups); #- if a profile is deselected, deselect everything (easier than deselecting the profile packages) $unselect_all ||= $size > $lsize; $size = $lsize; N("Total size: %d / %d MB", pkgs::correctSize($size / sqr(1024)), $available_size); }; while (1) { if ($available_size < 140) { # too small to choose anything. Defaulting to no group chosen $val{$_} = 0 foreach %val; last; } $o->reallyChooseGroups($size_to_display, $individual, \%val) or return; last if pkgs::correctSize($size / sqr(1024)) < $available_size; $o->ask_warn('', N("Selected size is larger than available space")); } $o->{compssUsersChoice}{$_} = 0 foreach map { @{$compssUsers->{$_}{flags}} } grep { !$val{$_} } keys %val; $o->{compssUsersChoice}{$_} = 1 foreach map { @{$compssUsers->{$_}{flags}} } grep { $val{$_} } keys %val; log::l("compssUsersChoice: " . (!$val{$_} && "not ") . "selected [$_] as [$o->{compssUsers}{$_}{label}]") foreach keys %val; #- do not try to deselect package (by default no groups are selected). $o->{isUpgrade} or $unselect_all and install_any::unselectMostPackages($o); #- if no group have been chosen, ask for using base system only, or no X, or normal. if (!$o->{isUpgrade} && !any { $_ } values %val) { my $docs = !$o->{excludedocs}; my $minimal = !any { $_ } values %{$o->{compssUsersChoice}}; $o->ask_from(N("Type of install"), N("You haven't selected any group of packages. Please choose the minimal installation you want:"), [ { val => \$o->{compssUsersChoice}{X}, type => 'bool', text => N("With X"), disabled => sub { $minimal } }, { val => \$docs, type => 'bool', text => N("With basic documentation (recommended!)"), disabled => sub { $minimal } }, { val => \$minimal, type => 'bool', text => N("Truly minimal install (especially no urpmi)") }, ], changed => sub { $o->{compssUsersChoice}{X} = $docs = 0 if $minimal }, ) or return &chooseGroups; $o->{excludedocs} = !$docs || $minimal; #- reselect according to user selection. if ($minimal) { $o->{compssUsersChoice}{$_} = 0 foreach keys %{$o->{compssUsersChoice}}; } else { my $X = $o->{compssUsersChoice}{X}; #- don't let setDefaultPackages modify this one install_any::setDefaultPackages($o, 'clean'); $o->{compssUsersChoice}{X} = $X; } install_any::unselectMostPackages($o); } 1; } sub reallyChooseGroups { my ($o, $size_to_display, $individual, $val) = @_; my $size_text = &$size_to_display; my ($path, $all); $o->ask_from('', N("Package Group Selection"), [ { val => \$size_text, type => 'label' }, {}, (map { my $old = $path; $path = $o->{compssUsers}{$_}{path}; if_($old ne $path, { val => translate($path) }), { val => \$val->{$_}, type => 'bool', disabled => sub { $all }, text => translate($o->{compssUsers}{$_}{label}), help => translate($o->{compssUsers}{$_}{descr}), } } @{$o->{compssUsersSorted}}), if_($o->{meta_class} eq 'desktop', { text => N("All"), val => \$all, type => 'bool' }), if_($individual, { text => N("Individual package selection"), val => $individual, advanced => 1, type => 'bool' }), ], changed => sub { $size_text = &$size_to_display }); if ($all) { $val->{$_} = 1 foreach keys %$val; } 1; } sub chooseCD { my ($o, $packages) = @_; my @mediums = grep { $_ != $install_any::boot_medium } pkgs::allMediums($packages); my @mediumsDescr; my %mediumsDescr; if (!common::usingRamdisk()) { #- mono-cd in case of no ramdisk foreach (@mediums) { pkgs::mediumDescr($packages, $install_any::boot_medium) eq pkgs::mediumDescr($packages, $_) and next; undef $packages->{mediums}{$_}{selected}; } log::l("low memory install, using single CD installation (as it is not ejectable)"); return; } #- the boot medium is already selected. $mediumsDescr{pkgs::mediumDescr($packages, $install_any::boot_medium)} = 1; #- build mediumDescr according to mediums, this avoid asking multiple times #- all the medium grouped together on only one CD. foreach (@mediums) { my $descr = pkgs::mediumDescr($packages, $_); $packages->{mediums}{$_}{ignored} and next; exists $mediumsDescr{$descr} or push @mediumsDescr, $descr; $mediumsDescr{$descr} ||= $packages->{mediums}{$_}{selected}; } #- if no other medium available or a poor beginner, we are choosing for him! #- note first CD is always selected and should not be unselected! return if @mediumsDescr == () || !$::expert; $o->set_help('chooseCD'); $o->ask_many_from_list('', N("If you have all the CDs in the list below, click Ok. If you have none of those CDs, click Cancel. If only some CDs are missing, unselect them, then click Ok."), { list => \@mediumsDescr, label => sub { N("Cd-Rom labeled \"%s\"", $_[0]) }, val => sub { \$mediumsDescr{$_[0]} }, }) or do { $mediumsDescr{$_} = 0 foreach @mediumsDescr; #- force unselection of other CDs. }; $o->set_help('choosePackages'); #- restore true selection of medium (which may have been grouped together) foreach (@mediums) { my $descr = pkgs::mediumDescr($packages, $_); $packages->{mediums}{$_}{ignored} and next; $packages->{mediums}{$_}{selected} = $mediumsDescr{$descr}; log::l("select status of medium $_ is $packages->{mediums}{$_}{selected}"); } } #------------------------------------------------------------------------------ sub installPackages { my ($o, $packages) = @_; my ($current, $total) = (0, 0); my $w = $o->wait_message(N("Installing"), N("Preparing installation")); my $old = \&pkgs::installCallback; local *pkgs::installCallback = sub { my ($data, $type, $id, $subtype, $_amount, $_total) = @_; if ($type eq 'user' && $subtype eq 'install') { $total = $_total; } elsif ($type eq 'inst' && $subtype eq 'start') { my $p = $data->{depslist}[$id]; $w->set(N("Installing package %s\n%d%%", $p->name, $total && 100 * $current / $total)); $current += $p->size; } else { goto $old } }; #- the modification is not local as the box should be living for other package installation. #- BEWARE this is somewhat duplicated (but not exactly from gtk code). undef *install_any::changeMedium; *install_any::changeMedium = sub { my ($method, $medium) = @_; #- if not using a cdrom medium, always abort. $method eq 'cdrom' && !$::oem and do { my $name = pkgs::mediumDescr($o->{packages}, $medium); local $| = 1; print "\a"; my $r = $name !~ /commercial/i || ($o->{useless_thing_accepted2} ||= $o->ask_from_list_('', formatAlaTeX(install_messages::com_license()), [ N_("Accept"), N_("Refuse") ], "Accept") eq "Accept"); $r &&= $o->ask_okcancel('', N("Change your Cd-Rom! Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done. If you don't have it, press Cancel to avoid installation from this Cd-Rom.", $name), 1); return $r; }; }; my $install_result; catch_cdie { $install_result = $o->install_steps::installPackages($packages) } sub { if ($@ =~ /^error ordering package list: (.*)/) { $o->ask_yesorno('', [ N("There was an error ordering packages:"), $1, N("Go on anyway?") ], 1) and return 1; ${$_[0]} = "already displayed"; } elsif ($@ =~ /^error installing package list: (.*)/) { $o->ask_yesorno('', [ N("There was an error installing packages:"), $1, N("Go on anyway?") ], 1) and return 1; ${$_[0]} = "already displayed"; } 0; }; if ($pkgs::cancel_install) { $pkgs::cancel_install = 0; die "setstep choosePackages\n"; } $install_result; } sub afterInstallPackages($) { my ($o) = @_; my $_w = $o->wait_message('', N("Post-install configuration")); $o->SUPER::afterInstallPackages($o); } sub copyKernelFromFloppy { my ($o) = @_; $o->ask_okcancel('', N("Please insert the Boot floppy used in drive %s", $o->{blank}), 1) or return; $o->SUPER::copyKernelFromFloppy(); } sub updateModulesFromFloppy { my ($o) = @_; $o->ask_okcancel('', N("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return; $o->SUPER::updateModulesFromFloppy(); } #------------------------------------------------------------------------------ sub configureNetwork { my ($o) = @_; require network::network; network::network::easy_dhcp($o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan'; $o->SUPER::configureNetwork(); } #------------------------------------------------------------------------------ sub installUpdates { my ($o) = @_; my $u = $o->{updates} ||= {}; $o->hasNetwork or return; is_empty_hash_ref($u) and $o->ask_yesorno('', formatAlaTeX( N("You now have the opportunity to download updated packages. These packages have been updated after the distribution was released. They may contain security or bug fixes. To download these packages, you will need to have a working Internet connection. Do you want to install the updates ?"))) || return; #- bring all interface up for installing crypto packages. install_interactive::upNetwork($o); require crypto; eval { my @mirrors = do { my $_w = $o->wait_message('', N("Contacting Mandrake Linux web site to get the list of available mirrors...")); crypto::mirrors() }; #- if no mirror have been found, use current time zone and propose among available. $u->{mirror} ||= crypto::bestMirror($o->{timezone}{timezone}); $u->{mirror} = $o->ask_from_treelistf('', N("Choose a mirror from which to get the packages"), '|', \&crypto::mirror2text, \@mirrors, $u->{mirror}); }; return if $@ || !$u->{mirror}; my $update_medium = do { my $_w = $o->wait_message('', N("Contacting the mirror to get the list of available packages...")); crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror}); }; if ($update_medium) { if ($o->choosePackagesTree($o->{packages}, $update_medium)) { $o->{isUpgrade} = 1; #- now force upgrade mode, else update will be installed instead of upgraded. $o->pkg_install; } else { #- make sure to not try to install the packages (which are automatically selected by getPackage above). #- this is possible by deselecting the medium (which can be re-selected above). delete $update_medium->{selected}; } #- update urpmi even, because there is an hdlist available and everything is good, #- this will allow user to update the medium but update his machine later. $o->install_urpmi; } #- stop interface using ppp only. FIXME REALLY TOCHECK isdn (costly network) ? # FIXME damien install_interactive::downNetwork($o, 'pppOnly'); } #------------------------------------------------------------------------------ sub configureTimezone { my ($o, $clicked) = @_; require timezone; $o->{timezone}{timezone} = $o->ask_from_treelist('', N("Which is your timezone?"), '/', [ timezone::getTimeZones($::g_auto_install ? '' : $o->{prefix}) ], $o->{timezone}{timezone}) || return; $o->set_help('configureTimezoneGMT'); my $ntp = to_bool($o->{timezone}{ntp}); $o->ask_from('', '', [ { text => N("Hardware clock set to GMT"), val => \$o->{timezone}{UTC}, type => 'bool' }, { text => N("Automatic time synchronization (using NTP)"), val => \$ntp, type => 'bool' }, ]) or goto &configureTimezone if $::expert || $clicked; if ($ntp) { my @servers = split("\n", timezone::ntp_servers()); $o->ask_from('', '', [ { label => N("NTP Server"), val => \$o->{timezone}{ntp}, list => \@servers, not_edit => 0 } ] ) or goto &configureTimezone; $o->{timezone}{ntp} =~ s/.*\((.+)\)/$1/; } else { $o->{timezone}{ntp} = ''; } install_steps::configureTimezone($o); 1; } #------------------------------------------------------------------------------ sub configureServices { my ($o, $clicked) = @_; require services; $o->{services} = services::ask($o, $o->{prefix}) if $::expert || $clicked; install_steps::configureServices($o); } sub summary { my ($o, $first_time) = @_; require pkgs; if ($first_time) { #- auto-detection $o->configurePrinter(0); install_any::preConfigureTimezone($o); } my $mouse_name; my $format_mouse = sub { $mouse_name = translate($o->{mouse}{type}) . ' ' . translate($o->{mouse}{name}) }; &$format_mouse; my $timezone_manually_set; my $timezone_name = $o->{timezone}{timezone}; #- I want to update it from the country callback my $country_name; my $format_country = sub { $country_name = lang::c2name($o->{locale}{country}) }; &$format_country; my $change_country = sub { any::selectCountry($o, $o->{locale}) or return; lang::write($o->{prefix}, $o->{locale}); &$format_country; if (!$timezone_manually_set) { delete $o->{timezone}; install_any::preConfigureTimezone($o); #- now we can precise the timezone thanks to the country $timezone_name = $o->{timezone}{timezone}; } }; #- format printer description in a better way my $format_printers = sub { my $printer = $o->{printer}; if (is_empty_hash_ref($printer->{configured})) { pkgs::packageByName($o->{packages}, 'cups')->flag_installed and return N("Remote CUPS server"); return N("No printer"); } foreach ($printer->{currentqueue}, map { $_->{queuedata} } ($printer->{configured}{$printer->{DEFAULT}}, values %{$printer->{configured}})) { $_ && ($_->{make} || $_->{model}) and return "$_->{make} $_->{model}"; } return N("Remote CUPS server"); #- fall back in case of something wrong. }; my @sound_cards = detect_devices::getSoundDevices(); #- if no sound card are detected AND the user selected things needing a sound card, #- propose a special case for ISA cards my $isa_sound_card = !@sound_cards && ($o->{compssUsersChoice}{GAMES} || $o->{compssUsersChoice}{AUDIO}) && sub { if ($o->ask_yesorno('', N("Do you have an ISA sound card?"))) { $o->do_pkgs->install('sndconfig'); $o->ask_warn('', N("Run \"sndconfig\" after installation to configure your sound card")); } else { $o->ask_warn('', N("No sound card detected. Try \"harddrake\" after installation")); } }; summary: $o->ask_from_({ messages => N("Summary"), cancel => '', }, [ { label => N("Mouse"), val => \$mouse_name, clicked => sub { $o->selectMouse(1); mouse::write($o, $o->{mouse}); &$format_mouse } }, { label => N("Keyboard"), val => \$o->{keyboard}, clicked => sub { $o->selectKeyboard(1) }, format => sub { translate(keyboard::keyboard2text($_[0])) } }, { label => N("Country"), val => \$country_name, clicked => sub { $change_country->() } }, { label => N("Timezone"), val => \$timezone_name, clicked => sub { my $ok = $o->configureTimezone(1); $timezone_manually_set ||= $ok; $timezone_name = $o->{timezone}{timezone} } }, { label => N("Printer"), val => \$o->{printer}, clicked => sub { $o->configurePrinter(1) }, format => $format_printers }, { label => N("Bootloader"), val => \$o->{bootloader}, clicked => sub { any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) }, format => sub { "$o->{bootloader}{method} on $o->{bootloader}{boot}" } }, { label => N("Graphical interface"), val => \$o->{raw_X}, clicked => sub { configureX($o, 'expert') }, format => sub { $o->{raw_X} ? Xconfig::various::to_string($o->{raw_X}) : N("not configured") } }, { label => N("Network"), val => \$o->{netcnx}{type}, format => sub { $_[0] || N("not configured") }, clicked => sub { require network::netconnect; network::netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o->{netc}, $o->{mouse}, $o, $o->{intf}, 0, 0, 1); } }, (map { my $device = $_; { label => N("Sound card"), val => $_->{description}, clicked => sub { require harddrake::sound; harddrake::sound::config($o, $device) } } } @sound_cards), if_($isa_sound_card, { label => N("Sound card"), clicked => $isa_sound_card }), (map { my $driver = $_->{driver}; { label => N("TV card"), val => $_->{description}, clicked => sub { require harddrake::v4l; harddrake::v4l::config($o, $driver); } } } grep { $_->{driver} =~ /(bttv|saa7134)/ } detect_devices::probeall()), ]); if (!$o->{raw_X} && pkgs::packageByName($o->{packages}, 'XFree86')->flag_installed) { $o->ask_yesorno('', N("You have not configured X. Are you sure you really want this?")) or goto summary; } install_steps::configureTimezone($o); #- do not forget it. } #------------------------------------------------------------------------------ sub configurePrinter { my ($o, $clicked) = @_; require printer::main; require printer::printerdrake; require printer::detect; #- try to determine if a question should be asked to the user or #- if he is autorized to configure multiple queues. my $ask_multiple_printer = $clicked ? 2 : $o && printer::detect::local_detect(); $ask_multiple_printer-- or return; #- install packages needed for printer::getinfo() $::testing or $o->do_pkgs->install('foomatic-db-engine'); #- take default configuration, this include choosing the right system #- currently used by the system. my $printer = $o->{printer} ||= {}; eval { add2hash($printer, printer::main::getinfo($o->{prefix})) }; $printer->{PAPERSIZE} = $o->{locale}{lang} eq 'en_US' || $o->{locale}{country} eq 'CA' ? 'Letter' : 'A4'; printer::printerdrake::main($printer, $o, $ask_multiple_printer, sub { install_interactive::upNetwork($o, 'pppAvoided') }); } #------------------------------------------------------------------------------ sub setRootPassword { my ($o, $clicked) = @_; my $sup = $o->{superuser} ||= {}; my $auth = ($o->{authentication}{LDAP} && N_("LDAP") || $o->{authentication}{NIS} && N_("NIS") || $o->{authentication}{winbind} && N_("Windows Domain") || N_("Local files")); $sup->{password2} ||= $sup->{password} ||= ""; return if $o->{security} < 1 && !$clicked; $::isInstall and $o->set_help("setRootPassword", if_($::expert, "setRootPasswordAuth")); $o->ask_from_( { title => N("Set root password"), messages => N("Set root password"), cancel => ($o->{security} <= 2 && !$::corporate ? N("No password") : ''), focus_first => 1, callbacks => { complete => sub { $sup->{password} eq $sup->{password2} or $o->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return (1,0); length $sup->{password} < 2 * $o->{security} and $o->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $o->{security})), return (1,0); return 0 } } }, [ { label => N("Password"), val => \$sup->{password}, hidden => 1 }, { label => N("Password (again)"), val => \$sup->{password2}, hidden => 1 }, if_($::expert, { label => N("Authentication"), val => \$auth, list => [ N_("Local files"), N_("LDAP"), N_("NIS"), N_("Windows Domain") ], format => \&translate }, ), ]) or return; if ($auth eq N_("LDAP")) { $o->{authentication}{LDAP} ||= 'ldap.' . $o->{netc}{DOMAINNAME}; $o->{netc}{LDAPDOMAIN} ||= join(',', map { "dc=$_" } split /\./, $o->{netc}{DOMAINNAME}); $o->ask_from('', N("Authentication LDAP"), [ { label => N("LDAP Base dn"), val => \$o->{netc}{LDAPDOMAIN} }, { label => N("LDAP Server"), val => \$o->{authentication}{LDAP} }, ]) or goto &setRootPassword; } else { $o->{authentication}{LDAP} = '' } if ($auth eq N_("NIS")) { $o->{authentication}{NIS} ||= 'broadcast'; $o->ask_from('', N("Authentication NIS"), [ { label => N("NIS Domain"), val => \ ($o->{netc}{NISDOMAIN} ||= $o->{netc}{DOMAINNAME}) }, { label => N("NIS Server"), val => \$o->{authentication}{NIS}, list => ["broadcast"], not_edit => 0 }, ]) or goto &setRootPassword; } else { $o->{authentication}{NIS} = '' } if ($auth eq N_("Windows Domain")) { #- maybe we should browse the network like diskdrake --smb and get the 'doze server names in a list #- but networking isn't setup yet necessarily $o->ask_warn('', N("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.\nYou will also need the username/password of a Domain Admin to join the machine to the Windows(TM) domain.\nIf networking is not yet enabled, Drakx will attempt to join the domain after the network setup step.\nShould 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.\nThe command 'wbinfo -t' will test whether your authentication secrets are good.")); $o->ask_from('', N("Authentication Windows Domain"), [ { label => N("Windows Domain"), val => \ ($o->{netc}{WINDOMAIN} ||= $o->{netc}{DOMAINNAME}) }, { label => N("Domain Admin User Name"), val => \$o->{authentication}{winbind} }, { label => N("Domain Admin Password"), val => \$o->{authentication}{winpass}, hidden => 1 }, ]) or goto &setRootPassword; } else { $o->{authentication}{winbind} = '' } install_steps::setRootPassword($o); } #------------------------------------------------------------------------------ #-addUser #------------------------------------------------------------------------------ sub addUser { my ($o, $clicked) = @_; $o->{users} ||= []; if ($o->{security} < 1) { push @{$o->{users}}, { password => 'mandrake', realname => 'default', icon => 'automagic' } if !member('mandrake', map { $_->{name} } @{$o->{users}}); } if ($o->{security} >= 1 || $clicked) { any::ask_users($o->{prefix}, $o, $o->{users}, $o->{security}); } add2hash($o, any::get_autologin()); any::autologin($o, $o); install_steps::addUser($o); } #------------------------------------------------------------------------------ sub setupBootloaderBefore { my ($o) = @_; my $_w = $o->wait_message('', N("Preparing bootloader...")); $o->set_help('empty'); $o->SUPER::setupBootloaderBefore($o); } #------------------------------------------------------------------------------ sub setupBootloader { my ($o) = @_; if (arch() =~ /ppc/) { my $machtype = detect_devices::get_mac_generation(); if ($machtype !~ /NewWorld/) { $o->ask_warn('', N("You appear to have an OldWorld or Unknown\n machine, the yaboot bootloader will not work for you.\nThe install will continue, but you'll\n need to use BootX or some other means to boot your machine")); log::l("OldWorld or Unknown Machine - no yaboot setup"); return; } } if (arch() =~ /^alpha/) { $o->ask_yesorno('', N("Do you want to use aboot?"), 1) or return; catch_cdie { $o->SUPER::setupBootloader } sub { $o->ask_yesorno('', N("Error installing aboot, try to force installation even if that destroys the first partition?")); }; } else { any::setupBootloader_simple($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return; { my $_w = $o->wait_message('', N("Installing bootloader")); eval { $o->SUPER::setupBootloader }; } if (my $err = $@) { $err =~ s/^\w+ failed// or die; $err = formatError($err); while ($err =~ s/^Warning:.*//m) {} $o->ask_warn('', [ N("Installation of bootloader failed. The following error occured:"), $err ]); die "already displayed"; } elsif (arch() =~ /ppc/) { my $of_boot = cat_("$o->{prefix}/tmp/of_boot_dev") || die "Can't open $o->{prefix}/tmp/of_boot_dev"; chop($of_boot); $o->ask_warn('', N("You may need to change your Open Firmware boot-device to\n enable the bootloader. If you don't see the bootloader prompt at\n reboot, hold down Command-Option-O-F at reboot and enter:\n setenv boot-device %s,\\\\:tbxi\n Then type: shut-down\nAt your next boot you should see the bootloader prompt.", $of_boot)); } } } sub miscellaneous { my ($o, $_clicked) = @_; require security::level; security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user}); install_steps::miscellaneous($o); } #------------------------------------------------------------------------------ sub configureX { my ($o, $expert) = @_; install_steps::configureXBefore($o); symlink "$o->{prefix}/etc/gtk", "/etc/gtk"; my $options = { allowFB => $o->{allowFB}, allowNVIDIA_rpms => install_any::allowNVIDIA_rpms($o->{packages}), }; require Xconfig::main; if ($o->{raw_X} = Xconfig::main::configure_everything_or_configure_chooser($o, $options, !$expert, $o->{keyboard}, $o->{mouse})) { install_steps::configureXAfter($o); } } #------------------------------------------------------------------------------ sub generateAutoInstFloppy { my ($o, $replay) = @_; my $floppy = detect_devices::floppy(); $o->ask_okcancel('', N("Insert a blank floppy in drive %s", $floppy), 1) or return; my $dev = devices::make($floppy); { my $_w = $o->wait_message('', N("Creating auto install floppy...")); install_any::getAndSaveAutoInstallFloppy($o, $replay, $dev) or return; } common::sync(); #- if you shall remove the floppy right after the LED switches off } #------------------------------------------------------------------------------ sub exitInstall { my ($o, $alldone) = @_; return $o->{step} = '' if !$alldone && !$o->ask_yesorno('', N("Some steps are not completed. Do you really want to quit now?"), 0); install_steps::exitInstall($o); $o->exit unless $alldone; $o->ask_from_no_check( { messages => formatAlaTeX(install_messages::install_completed()), ok => N("Reboot"), }, [ if_($::expert, { val => \ (my $_t1 = N("Generate auto install floppy")), clicked => sub { my $t = $o->ask_from_list_('', N("The auto install can be fully automated if wanted, in that case it will take over the hard drive!! (this is meant for installing on another box). You may prefer to replay the installation. "), [ N_("Replay"), N_("Automated") ]); $t and $o->generateAutoInstFloppy($t eq 'Replay'); }, advanced => 1 }, { val => \ (my $_t2 = N("Save packages selection")), clicked => sub { install_any::g_default_packages($o) }, advanced => 1 }, ), ] ) if $alldone && !$::g_auto_install; } #-###################################################################################### #- Misc Steps Functions #-###################################################################################### 1; /modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Wagwoord (weer)"
@@ -545,14 +545,14 @@ msgid ""
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
@@ -589,7 +589,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -597,156 +597,156 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -757,17 +757,17 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -783,15 +783,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -800,63 +800,63 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -898,60 +898,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoïes"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1007,7 +1007,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1015,7 +1015,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1025,13 +1025,13 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1045,7 +1045,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opsies"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1119,13 +1119,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1134,45 +1134,45 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
@@ -1224,106 +1224,106 @@ msgstr "LILO/GRUB metode"
msgid "Yaboot mode"
msgstr "Yaboot metode"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installeer stelsel"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kies 'n nuwe grootte"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Geen video"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Kies installasieklas"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1332,22 +1332,22 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1356,44 +1356,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1497,26 +1497,34 @@ msgstr "seriaal"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nuut"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
@@ -1524,27 +1532,27 @@ msgid "Mount point"
msgstr "Hegpunt"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Toets asb. die muis"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -1633,7 +1641,7 @@ msgstr "Leeg"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ander"
@@ -1781,7 +1789,7 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Waarskuwing"
@@ -2343,7 +2351,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Gebruikerskode"
@@ -2358,23 +2366,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2460,47 +2468,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Konfigurasie"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drywer"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Onbekende model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2627,7 +2698,8 @@ msgid "/_Quit"
msgstr "Verlaat"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Help"
@@ -2647,76 +2719,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Help/_Aangaande..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aftas"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Stel muistoestel op"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
@@ -3854,7 +3927,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3869,7 +3942,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3878,20 +3951,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3899,12 +3972,12 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lêer %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4146,7 +4219,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -4179,11 +4252,11 @@ msgstr "Installasieklas"
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
@@ -4263,7 +4336,7 @@ msgstr "Wys outogeselekteerde pakkette."
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installasie"
@@ -4283,7 +4356,7 @@ msgstr "Minimale installasie"
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Besig met installasie"
@@ -4311,18 +4384,18 @@ msgstr "Installeer pakket %s"
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4338,16 +4411,16 @@ msgstr ""
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4444,7 +4517,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4522,7 +4595,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
@@ -4733,31 +4806,31 @@ msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4767,16 +4840,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4785,21 +4858,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4869,7 +4942,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4881,159 +4954,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Plaaslike lêers"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5049,21 +5122,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeinnaam"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5090,19 +5163,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5126,7 +5199,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5135,28 +5208,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5164,11 +5237,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5176,15 +5249,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5195,17 +5268,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5215,7 +5288,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5247,15 +5320,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5264,15 +5337,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5308,14 +5381,14 @@ msgstr "Gevorderd"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Teks"
@@ -5763,7 +5836,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Sirkulêre heg %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
@@ -5903,16 +5976,16 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
@@ -5949,11 +6022,11 @@ msgstr "Maak boom toe"
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -5963,24 +6036,20 @@ msgstr ""
"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "Alcatel speedtouch usb"
msgstr "speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "gebruik dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "gebruik pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "gebruik pptp"
@@ -6075,7 +6144,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -6092,15 +6161,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -6138,8 +6207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ou konfigurasie (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfigurasie"
@@ -6176,23 +6245,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Oor watter tipe kaart beskik u?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ek weet nie"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6206,19 +6280,19 @@ msgstr ""
"\n"
"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Aborteer"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Gaan voort"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6226,7 +6300,7 @@ msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
@@ -6278,7 +6352,7 @@ msgstr "Eerste DNS-bediener (opsioneel)"
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6286,7 +6360,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6294,11 +6368,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6306,33 +6380,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6351,12 +6425,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6367,7 +6441,7 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6379,72 +6453,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Kundige bedryfsvlak"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6454,23 +6528,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6481,7 +6555,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6491,7 +6565,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6499,14 +6573,14 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6518,7 +6592,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6528,45 +6602,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6578,42 +6652,53 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Instaanbediener moet begin met ftp://"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8018,7 +8103,7 @@ msgstr "Netwerk op pad af"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8526,11 +8611,6 @@ msgstr ""
"Vul asb. die FTP-instaanbediener inligting in\n"
"Los dit oop indien u nie FTP-instaanbediener verlang nie"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Instaanbediener moet begin met http://"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8576,6 +8656,43 @@ msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Eksterne lpd drukkeropsies"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Verstek)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Wag asb. installasie word voorberei"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -8874,7 +8991,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8968,7 +9085,7 @@ msgstr "Konnekteer aan die internet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9015,7 +9132,7 @@ msgstr "Netwerkkoppelvlak"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9040,7 +9157,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9056,7 +9173,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9071,7 +9188,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9120,8 +9237,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9158,11 +9275,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
@@ -9210,16 +9327,6 @@ msgstr "Voeg gebruiker by"
msgid "Add/Del Clients"
msgstr "DHCP-Kliënt"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9272,53 +9379,68 @@ msgstr "Voeg gebruiker by"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Kliënt"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "herkonfigureer"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9441,13 +9563,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Toetsbladsye"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9456,41 +9578,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Kan nie %s oopmaak nie: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9501,68 +9623,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9570,831 +9692,833 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lêer %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Stel lêerstelsels op"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlêer"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rekenaarnaam"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Wagwoord"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Bedienernaam:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10402,102 +10526,102 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lêer"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Stel lêerstelsels op"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10653,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10538,7 +10662,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10579,7 +10703,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10607,17 +10731,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10634,7 +10758,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10674,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10685,7 +10809,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10698,7 +10822,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10780,8 +10904,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
@@ -10858,28 +10982,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
@@ -10979,10 +11103,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Pas toe"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Gekonnekteer"
@@ -11096,7 +11216,7 @@ msgstr "Modulenaam"
msgid "Size"
msgstr "Grootte"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11161,12 +11281,12 @@ msgstr "Uitset"
msgid "Build the disk"
msgstr "Bou die skyf"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11175,12 +11295,12 @@ msgstr ""
"Daar is geen medium for toestel %s nie.\n"
"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11662,157 +11782,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Werkgroep:"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partisie %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Uitwis"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Klaar"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Voeg module by"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Voeg drukker by"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Verwyder tou"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aanvaar gebruiker"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Weergawe: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Poort"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Stoor pakketseleksie"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Werkgroep:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11824,137 +11944,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "herlaaiskyfskepping"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolusie"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Kies 'n lêer"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Drukkernaam:"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Postinstallasiekonfigurasie"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Verlaat"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Installeer stelsel"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Konfigureer dienste"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Teruglus"
+msgid "Preview"
+msgstr "toestel"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "toestel"
+msgid "Save theme"
+msgstr "Installeer stelsel"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Kies 'n monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Drukkermodelkeuse"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Toestel word afgetas..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12095,6 +12225,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
@@ -12125,11 +12262,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12413,16 +12550,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12498,7 +12632,7 @@ msgstr "Installeer stelsel"
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12750,6 +12884,21 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Postinstallasiekonfigurasie"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Teruglus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Instaanbediener moet begin met ftp://"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlaat"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
@@ -12875,9 +13024,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Test again"
#~ msgstr "Toets weer"
-#~ msgid "Setting security level"
-#~ msgstr "Sekuriteitsvlak word gestel."
-
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 63f9c0c05..621bd9f70 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -90,24 +90,24 @@ msgstr "اعداد كل الرؤوس بشكل مستقل"
msgid "Use Xinerama extension"
msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "قم بإعداد البطاقة \"%s\" Ùقط (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل Ø£Ùضل ÙÙŠ الوضع "
"ثنائي الأبعاد."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل Ø£Ùضل ÙÙŠ وضعية "
"الرسوم ثنائية الأبعاد."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,12 +148,12 @@ msgstr ""
"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
"لاحظ أن هذا الدعم تجريبي Ùˆ قد يتسبب ÙÙŠ ايقا٠جهازك."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "مخصص"
@@ -174,32 +174,32 @@ msgstr "دقة العرض"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "مواÙÙ‚"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "خروج"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -295,25 +295,25 @@ msgstr "اختر دقة العرض و عمق الألوام"
msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "الغاء"
@@ -390,11 +390,11 @@ msgstr "خادم XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -415,7 +415,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr ""
@@ -487,7 +487,7 @@ msgstr "مدمج"
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "وضعية الÙيدية"
@@ -495,17 +495,17 @@ msgstr "وضعية الÙيدية"
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الاÙتراضية"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "كلمة المرور"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "كلمة المرور (ثانية)"
@@ -539,14 +539,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
@@ -583,7 +583,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -591,155 +591,155 @@ msgstr ""
"ها هنا المدخلات المختلÙØ©.\n"
"يمكنك اضاÙØ© مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "اضاÙØ©"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضاÙته؟"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "صورة"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "غير آمن"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "الإÙتراضي"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "حجم Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "لا Ùيديو"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "ازل المدخل"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "غير مسموح بالعلامات الÙارغة"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "يجب أن تحدد صورة النواة"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "يجب عليك تحديد تقسيم جذر"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(الوحدة %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"الخيارات ÙÙŠ هيئة ``name=value name2=value2 ...'' \n"
"مثلا, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -778,15 +778,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك ÙÙŠ أي مشاكل."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -795,64 +795,64 @@ msgstr ""
"Ùشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "الوصول الى ملÙات الإدارة"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(تم اضاÙØ© %s مسبقا)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي Ùقط على الحرو٠الصغيرة, الأرقام, `-' Ùˆ `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "اسم المستخدم Ù…Ùضا٠مسبقا"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "اسم المستخدم Ù…Ùضا٠مسبقا"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "اض٠مستخدم"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -861,32 +861,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "واÙÙ‚ على المستخدم"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "الغلاÙ"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -894,54 +894,54 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "اختر المستخدم الاÙتراضي:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "اختر مدير النواÙØ° الذي سيتم تشغيله:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "يمكنكن اختيار لغات أخرى Ùˆ التي ستكون متوÙرة بعد التثبيت"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تÙثبّت. هل تريد تثبيتها؟"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s Ù…Ùقودة"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,11 +950,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -962,56 +962,56 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضاÙØ© مستخدم ÙÙŠ هذه المجموعة."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Ùقير"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "مرتÙع"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "مرتÙع أكثر"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "مرتÙع جدا"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1021,40 +1021,40 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "خيارات"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1062,7 +1062,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1079,58 +1079,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "لا توجد مساحو كاÙية ÙÙŠ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
@@ -1182,106 +1182,106 @@ msgstr "وضع Lilo/grub"
msgid "Yaboot mode"
msgstr "وضع Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "تثبيت النظام"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "اعمل تجزئة جديدة"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "خطأ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "جاري نسخ %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "لا Ùيديو"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "اختر نوع التثبيت"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1290,21 +1290,21 @@ msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "إعداد"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr ""
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1313,44 +1313,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "وضع النظام"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "لا, لا أريد دخولا أليا"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "مواÙÙ‚"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "لم يمكن Ùتح /etc/inittab للقراءة: %s"
@@ -1447,53 +1447,61 @@ msgstr "النمسا"
msgid "United States"
msgstr "الولايات المتحدة"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "جديد"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ازل التجهيز"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
@@ -1584,7 +1592,7 @@ msgstr "Ùارغ"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "أخرى"
@@ -1724,7 +1732,7 @@ msgstr ""
"جدول التقسيم المحÙوظ ليس بنÙس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "تحذير"
@@ -2254,7 +2262,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "اسم المستخدم"
@@ -2268,23 +2276,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "ابحث ÙÙŠ أجهزة الخادم"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد Ùشل"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعر٠كي٠أجهز %s ÙÙŠ النوع %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2362,48 +2370,111 @@ msgstr "لا شيئ للعمل"
msgid "Error opening %s for writing: %s"
msgstr " Ùتحة الخطإ %s للكتابة :%s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr " CUPS اعدادات"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "المحرك"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "من Ùضلك انتظر"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "مشغل X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "غير معروÙ"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2528,7 +2599,8 @@ msgid "/_Quit"
msgstr "خروج"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_مساعدة"
@@ -2548,75 +2620,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_تقرير خطأ"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/مساعدة/_حول البرنامج..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "تحقق آلي"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "التحقق من الأقراص الصلبة"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "عرض معلومات العتاد"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "اعرض المعلومات"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "إعداد الÙأرة"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "من Ùضلك انتظر"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "جاري ازالة الطابعة \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ثوان"
@@ -3719,7 +3792,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3734,7 +3807,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3743,31 +3816,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -3977,7 +4050,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr ""
@@ -4003,11 +4076,11 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr ""
@@ -4081,7 +4154,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr ""
@@ -4101,7 +4174,7 @@ msgstr ""
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr ""
@@ -4128,17 +4201,17 @@ msgid "Installing package %s"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "قبول"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4149,16 +4222,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr ""
@@ -4254,7 +4327,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4332,7 +4405,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "لوحة المÙاتيح"
@@ -4532,66 +4605,66 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4630,7 +4703,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4642,155 +4715,155 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "خادم NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "الÙأرة"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "طابعة"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "احصل على خطوط Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr " الخادم NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4806,21 +4879,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domain name"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4838,19 +4911,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4866,7 +4939,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4875,28 +4948,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "آس٠, لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " bootloader إعداد "
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4904,25 +4977,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4933,24 +5006,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4969,16 +5042,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4987,15 +5060,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr ""
@@ -5030,14 +5103,14 @@ msgstr "متقدم"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<-سابق "
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "التالي"
@@ -5480,7 +5553,7 @@ msgstr "Right \"Windows\" key"
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5618,15 +5691,15 @@ msgstr "ولا واحد"
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "من Ùضلك اختبر الÙأرة"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! حرّك "
@@ -5663,34 +5736,30 @@ msgstr "Collapse Tree"
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "وصّل إلى الإنترنت "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "use dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "use pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "use pptp"
@@ -5789,7 +5858,7 @@ msgstr ""
msgid "no network card found"
msgstr "لا بطاقة شبكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "ا عداد شبكة"
@@ -5801,15 +5870,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
@@ -5847,8 +5916,8 @@ msgid "Old configuration (isdn4net)"
msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN إعداد "
@@ -5880,23 +5949,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr ""
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "لا أعر٠"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5905,25 +5979,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "إنهاء"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "تابع"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ISDN ما هية بطاقتك"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -5975,54 +6049,54 @@ msgstr "( خادم ا الأوّل ( اختياريّ "
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6034,12 +6108,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6047,7 +6121,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6055,95 +6129,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "وضعية الخبير"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6151,27 +6225,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6179,49 +6253,49 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP address"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatic IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6229,41 +6303,49 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxies اعداد"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../network/shorewall.pm_.c:24
@@ -7584,7 +7666,7 @@ msgstr "جاري الطباعة على الطابعة \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8060,10 +8142,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8109,6 +8187,42 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "مستوى الأمن"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "مستوى الأمن"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr ""
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "المرجع"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "جاري ضبط مستوى الأمن"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8341,7 +8455,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "نظام"
@@ -8428,7 +8542,7 @@ msgstr "وصّل إلى الإنترنت "
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8476,7 +8590,7 @@ msgstr "واجهات الإستخدام"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8501,7 +8615,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"حوّل ماكينتك إلى خادم قويّ مع/ب Ùقط نقرات قليلة من ال الÙأرة : خادم الويب , "
@@ -8519,7 +8633,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8534,7 +8648,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8583,8 +8697,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -8620,11 +8734,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "تركيب طرود ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
@@ -8672,16 +8786,6 @@ msgstr "اض٠مستخدم"
msgid "Add/Del Clients"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "مساعدة"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8735,53 +8839,68 @@ msgstr "اض٠مستخدم"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "جاري الإعداد..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "إعداد متقدم"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "إعداة الإعداد"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "آس٠, لا مدخل مرن متاح"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8898,13 +9017,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8913,41 +9032,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "لا يمكن أن ينÙتح %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -8958,64 +9077,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9023,297 +9142,299 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr "ارسال الملÙات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "انسخ ملÙات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم ÙÙŠ النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Ùضلا أدخل اسم المستضي٠أو عنوان IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Ùضلاً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Ùضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Ùضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Ùيما مضى CDRW من Ùضلك Ùحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Ùضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Ùضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "اختر ملÙ"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Ùيما مضى CDRW من Ùضلك Ùحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Ùيما مضى CDRW من Ùضلك Ùحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Ùيما مضى CDRW من Ùضلك Ùحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ùضلاً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "النوع"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9321,7 +9442,7 @@ msgstr ""
"Ùضلا اختر الÙترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -9329,78 +9450,78 @@ msgstr ""
"رجاء اختر\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "إعدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -9408,7 +9529,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -9416,7 +9537,7 @@ msgstr ""
"\n"
"-ملÙّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -9424,7 +9545,7 @@ msgstr ""
"\n"
"-ملÙّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -9432,7 +9553,7 @@ msgstr ""
"\n"
"-الملÙّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -9441,32 +9562,32 @@ msgstr ""
"\n"
"- احÙد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "جهاز الÙأرة: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -9475,12 +9596,12 @@ msgstr ""
"\n"
"-FTP Ùˆ على host احÙد على: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -9489,14 +9610,14 @@ msgstr ""
"\n"
"-FTP Ùˆ على host احÙد على: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -9504,19 +9625,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -9525,332 +9646,332 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "اضغط مواÙÙ‚ لاستعادة ملÙات اخرى"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "انسخ ملÙات النظام قبل:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "وصلة FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "وصلة آمنة"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Ùضلاً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "قم بنسخ احتياطي جديد Ùبل الإستعادة (Ùقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host اسم "
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "كلمة المرور"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "اسم المستخدم"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "اسم المستضي٠:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ø­Ùظ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "استعادة"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "الحزمة %s يجب أن تÙثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9858,59 +9979,59 @@ msgstr ""
"لم يتم ايجاد مل٠تهيئة \n"
"Ùضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "تحت التطوير ... انتظر Ùضلا"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "انسخ ملÙات النظام"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "انسخ ملÙات المستخدم"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "انسخ ملÙات أخرى"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "ارسال الملÙات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "جاري ارسال الملÙات..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من مل٠التهيئة"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -9942,7 +10063,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9951,7 +10072,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -9992,7 +10113,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10020,19 +10141,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" جميع الحقوق محÙوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10065,7 +10186,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10105,7 +10226,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10116,7 +10237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10129,7 +10250,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10211,8 +10332,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "أدوات سطر الأوامر"
@@ -10287,28 +10408,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "استعادة"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت ÙÙŠ %s"
@@ -10409,10 +10530,6 @@ msgstr "المعالج..."
msgid "Apply"
msgstr "تطبيق"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "متّصل "
@@ -10532,7 +10649,7 @@ msgstr "اسم الوحدة"
msgid "Size"
msgstr "حجم"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "دريك للاقراص المرنة"
@@ -10597,12 +10714,12 @@ msgstr "الناتج"
msgid "Build the disk"
msgstr "جهز القرص"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "تأكد من وجود الوسيط للوحدة %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10611,12 +10728,12 @@ msgstr ""
"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
"Ùضلاً ادخل وسط ÙÙ‰ الوحدة."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "تعذر تنÙيذ: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11061,154 +11178,154 @@ msgstr ""
"\n"
"اضغط على تهيئة لتشغيل معالج الإعداد."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "مجموعة العمل"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "المستخدم"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "إلغاء"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "انتهى"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "اضاÙØ© وحدة"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "أض٠طابعة جديدة"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "واÙÙ‚ على المستخدم"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "البوابة"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "المستخدم"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "مجموعة العمل"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "لم يتم ايجاد بطاقة تلÙاز!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -11229,136 +11346,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "صنع قرص مرن لبدء النظام"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "دقة العرض"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "إختر ملÙ"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "اسم المستخدم"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Proxies اعداد"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "خروج"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "تثبيت النظام"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "تهيئة الخدمات"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "وحدة"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "وحدة"
+msgid "Save theme"
+msgstr "تثبيت النظام"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "إختر شاشة"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr ""
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "جاري التحقق من الأجهزة ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11502,6 +11629,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "الاستعمال: keyboarddrake [--expert][لوحة المÙاتيح]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "الاستعمال: keyboarddrake [--expert][لوحة المÙاتيح]\n"
@@ -11530,11 +11664,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "تم عمل التغيير, Ùˆ لكن ليتم تÙعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11815,16 +11949,13 @@ msgstr ""
"يمكنك الآن مسح المستندات باستخدام ``XSane'' من Ùرع وسائط متعددة/برامج رسومية "
"ÙÙŠ قائمة التطبيقات."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11899,7 +12030,7 @@ msgstr "تثبيت تحديثات النظام"
msgid "Exit install"
msgstr "الخروج من التثبيت"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12146,6 +12277,18 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Proxies اعداد"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "خروج"
+
#~ msgid ""
#~ "tinyfirewall configurator\n"
#~ "\n"
@@ -12507,9 +12650,6 @@ msgstr "محطة عمل علمية"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "جاري ضبط مستوى الأمن"
-
#~ msgid "Select a graphics card"
#~ msgstr "اختر بطاقة شاشة"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 197fab395..57ae9d501 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -91,24 +91,24 @@ msgstr "Bütün başlıqları ayrı ayrı quraşdır"
msgid "Use Xinerama extension"
msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,17 +120,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir fikir olar."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MÆRHÆLÆSÄ°NDÆKÄ° 3D sür'É™tlÉ™ndirmÉ™ dÉ™stÉ™kli XFree %s"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir seçki olar."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ msgstr ""
"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
"DÄ°QQÆT! BU SINAQ MÆRHÆLÆSINDÆDIR VÆ KOMPÃœTERÄ°NÄ°Z DONDURA BILÆR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Xüsusi"
@@ -179,32 +179,32 @@ msgstr "Rezolyusiya"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Çıx"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -297,25 +297,25 @@ msgstr "Rezolyusiya və rəng dərinliyini seçin"
msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Ləğv et"
@@ -392,11 +392,11 @@ msgstr "XFree86 verici: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sürücü: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -405,7 +405,7 @@ msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -417,7 +417,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "ISDN bağlantınızın növü nədir?"
@@ -490,7 +490,7 @@ msgstr "Bəsit"
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Ekran modu"
@@ -498,17 +498,17 @@ msgstr "Ekran modu"
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Parol (təkrar)"
@@ -543,14 +543,14 @@ msgid ""
msgstr ""
"``Æmr sÉ™tiri seçənÉ™klÉ™rini mÉ™hdudlaÅŸdır`` seçənÉ™yi parolsuz bir iÅŸÉ™ yaramaz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
@@ -587,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -595,156 +595,156 @@ msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ÆlavÉ™ et"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Qurtardı"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Æks"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "E'tibarsız"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Æsas"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd böyüklüyü"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVÄ°deo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "GiriÅŸi sil"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilə bilməz"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara üzü tapıldı"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "BaÅŸqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara üzü var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
"Məsələn ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul seçənəkləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansı %s sürücüsü sınansın?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,64 +799,64 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Avtomatik GiriÅŸ"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -899,59 +899,59 @@ msgstr ""
"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Æsas istifadəçini seçin:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1006,7 +1006,7 @@ msgstr ""
"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1014,7 +1014,7 @@ msgstr ""
"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1023,13 +1023,13 @@ msgstr ""
"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
"təhlükəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1044,7 +1044,7 @@ msgstr ""
"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
"artırılmışdır. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Seçənəklər"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Təhlükəsizlik səviyyəsini seçin"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1121,7 +1121,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1135,7 +1135,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
@@ -1150,7 +1150,7 @@ msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1164,7 +1164,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1179,33 +1179,33 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "BaÅŸlama Menyusu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
@@ -1257,106 +1257,106 @@ msgstr "Lilo/grub modu"
msgid "Yaboot mode"
msgstr "Yaboot modu"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistemi qur"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Yeni bölmə yarat"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Xəta"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVÄ°deo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Quruluş sinifini seçin"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1365,22 +1365,22 @@ msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1389,45 +1389,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriş istəmirəm"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq üçün açıla bilmir: %s"
@@ -1533,53 +1533,61 @@ msgstr "serial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "yeni"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ayır"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "BaÄŸla"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
@@ -1669,7 +1677,7 @@ msgstr "BoÅŸ"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Digər"
@@ -1820,7 +1828,7 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Xəbərdarlıq"
@@ -2391,7 +2399,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "İstifadəçi adı"
@@ -2406,23 +2414,23 @@ msgstr "NIS sahəsi"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2512,46 +2520,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Sürücü"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Yardım"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2678,7 +2750,8 @@ msgid "/_Quit"
msgstr "Çıx"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Kömək"
@@ -2698,76 +2771,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Kömək/_Haqqında..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Avtomatik yoxla"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Avadanlıq mə'lumatına bax"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Siçan qurğuları"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapısında tapıldı"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d saniyə sonra çıxılacaq"
@@ -4231,7 +4305,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4255,7 +4329,7 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4264,20 +4338,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4285,12 +4359,12 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4536,7 +4610,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disket sürücü yoxdur"
@@ -4568,11 +4642,11 @@ msgstr "Qurulum Sinifi"
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
@@ -4648,7 +4722,7 @@ msgstr "Avtomatik seçili paketləri göstər"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Qurulum"
@@ -4671,7 +4745,7 @@ msgstr "Qurulumdan çıx"
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Qurulur"
@@ -4698,17 +4772,17 @@ msgid "Installing package %s"
msgstr "%s paketi qurulur"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Qəbul Et"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4723,16 +4797,16 @@ msgstr ""
"ÆgÉ™r Cd-Rom É™linizdÉ™ deyilsÉ™ bu Cd-Rom'dan qurmamaq üçün Ä°MTÄ°NA ET'É™ basın."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4857,7 +4931,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4975,7 +5049,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5052,7 +5126,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
@@ -5265,29 +5339,29 @@ msgstr "%s sürücüsünə bir disket taxın"
msgid "Selected size is larger than available space"
msgstr "Seçili böyüklük var olandan daha böyükdür"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5298,16 +5372,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basın."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5316,21 +5390,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5400,7 +5474,7 @@ msgstr ""
"USA\n"
"ünvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5412,164 +5486,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Æks ünvanına baÄŸlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Æks ünvanına baÄŸlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "BaÅŸqa var?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "NIS istifadÉ™ et"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5585,21 +5659,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Sahə(domain) adı"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5630,19 +5704,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "İlk disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "İkinci disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5672,7 +5746,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5681,28 +5755,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5710,11 +5784,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5722,16 +5796,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5748,17 +5822,17 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5768,7 +5842,7 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5794,15 +5868,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5816,15 +5890,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5861,14 +5935,14 @@ msgstr "Ætraflı"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- ÆvvÉ™lki"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Sonrakı ->"
@@ -6323,7 +6397,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Dairəvi bağlama %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
@@ -6461,15 +6535,15 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "TÆKÆRÄ° OYNADIN!"
@@ -6505,11 +6579,11 @@ msgstr "Ağacı Qapat"
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ä°nternetÉ™ baÄŸlan"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6519,23 +6593,19 @@ msgstr ""
"Bəzi bağlantılar pptp istifadə edir, çox azı isə dhcp işlədir.\n"
"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp istifadÉ™ et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe istifadÉ™ et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptpe istifadÉ™ et"
@@ -6637,7 +6707,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6652,15 +6722,15 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"ÆgÉ™ ÅŸÉ™bÉ™kÉ™ keçidi istifadÉ™ edirsinizsÉ™ bunun da IP nömrÉ™sini girmÉ™lisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Ev sahibi adı"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6700,8 +6770,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN quraşdırılması"
@@ -6741,23 +6811,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Hansı növ kartınız var?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Bilmirəm"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6770,19 +6845,19 @@ msgstr ""
"\n"
"PCMCIA kartınız var isə kartınızın irq və ya io'sunu bilməlisiniz.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Dayandır"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Davam et"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Hansısı sizin ISDN kartınızdır?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6790,7 +6865,7 @@ msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heç bir ISDN PCI kart tapılmaı. Sonrakı ekrandakılardan seçin."
@@ -6842,7 +6917,7 @@ msgstr "Birinci DNS Vericisi (arzuya görə)"
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6851,7 +6926,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6859,11 +6934,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6871,28 +6946,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "BaÄŸlan"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6900,7 +6975,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6915,12 +6990,12 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6931,7 +7006,7 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'ə basın.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6943,99 +7018,99 @@ msgstr ""
"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Usta Modu"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s qapısında tapıldı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s tapıldı"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "eternet kart tapıldı"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7046,7 +7121,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7056,7 +7131,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7064,14 +7139,14 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7083,50 +7158,50 @@ msgstr ""
"OLDU ya basın.\n"
"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (sürücü %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ünvanı"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Açılışda başladılır"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7137,42 +7212,53 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"ÆgÉ™r ÅŸÉ™bÉ™kÉ™ keçidi istifadÉ™ edirsinizsÉ™ bunun da IP nömrÉ™sini girmÉ™lisiniz."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vəkil verici ftp://... olmalıdır."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vəkil verici http://... şəklində olmalıdır."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8571,7 +8657,7 @@ msgstr "Şəbəkə dayandırılır"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9082,11 +9168,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Vəkil verici http://... şəklində olmalıdır."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9136,6 +9217,43 @@ msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Æsas)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
@@ -9447,7 +9565,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -9543,7 +9661,7 @@ msgstr "Ä°nternetÉ™ baÄŸlan"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9590,7 +9708,7 @@ msgstr "Şəbəkə ara üzü"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9615,7 +9733,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9631,7 +9749,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9646,7 +9764,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9695,8 +9813,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9733,11 +9851,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
@@ -9785,17 +9903,6 @@ msgstr "İstifadəçini əlavə et"
msgid "Add/Del Clients"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Yardım"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9848,53 +9955,68 @@ msgstr "İstifadəçini əlavə et"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disket sürücü yoxdur"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10018,13 +10140,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Qapıları sına"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10033,41 +10155,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "%s açıla bilmir: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10078,68 +10200,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10147,923 +10269,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Növ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Ev sahibi adı"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Parol"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ev sahibi adı:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Xüsusi"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- ÆvvÉ™lki"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11219,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11145,7 +11269,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11173,17 +11297,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11200,7 +11324,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11240,7 +11364,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11251,7 +11375,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11264,7 +11388,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11346,8 +11470,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol Vasitələri"
@@ -11423,28 +11547,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Qapı"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
@@ -11545,10 +11669,6 @@ msgstr "Sehirbaz..."
msgid "Apply"
msgstr "ÆlavÉ™ Et"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Bağlandı"
@@ -11668,7 +11788,7 @@ msgstr "Modul adı"
msgid "Size"
msgstr "Böyüklük"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11733,12 +11853,12 @@ msgstr "Nəticə"
msgid "Build the disk"
msgstr "Diski yarat"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s avadanlığında medya olduğundan əmin olun"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11747,12 +11867,12 @@ msgstr ""
"%s avadanlığında medya yoxdur.\n"
"Xahiş edirik. birini taxın."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilÉ™ bilmir: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12236,157 +12356,157 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Ä°ÅŸ qrupu"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "bölmə %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Sil"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Qurtardı"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul əlavə et"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Çap Edicisiz"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Növbəni sil"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "İstifadəçini qəbul et"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Buraxılış: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Qapı"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Ä°ÅŸ qrupu"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Bağlı deyil"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12398,137 +12518,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "açılış disketi yaradılması"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolyusiya"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Paylaşdırma adı"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Qurulum sonrası qurğular"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Çıx"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Sistemi qur"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Xidmətləri qur"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "avadanlıq"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "avadanlıq"
+msgid "Save theme"
+msgstr "Sistemi qur"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Avadanlıqlar tanınır..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12669,6 +12799,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
@@ -12697,11 +12834,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12982,16 +13119,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13067,7 +13201,7 @@ msgstr "Sistemi qur"
msgid "Exit install"
msgstr "Qurulumdan çıx"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13313,6 +13447,21 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Qurulum sonrası qurğular"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vəkil verici ftp://... olmalıdır."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Çıx"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (köhnə BIOSlarda işləməz)"
@@ -13565,9 +13714,6 @@ msgstr "Elmi iş stansiyası"
#~ msgid "Test again"
#~ msgstr "Yenidən sına"
-#~ msgid "Setting security level"
-#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 3c41b2038..8a9393b7f 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Êàíôiãóðàâàöü ìàþ êàðòó"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Ñåðâåð XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ç ïàäòðûìêàé 3D-ïàñêàðýííÿ"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,19 +114,19 @@ msgstr ""
"Ïàäòðûìêà 3D-ïàñêàðýííÿ ¢ Âàøàé â³äýàêàðöå âûêàíàíà òîëüê³ ¢ XFree %s.\n"
"XFree %s ìîæà âûêàðûñòî¢âàöü òîëüê³ 2D-ïàñêàðýííå äëÿ ãýòàé â³äýàêàðòû."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Âàøà âiäýàêàðòà ìîæà ìåöü 3D-ïàñêàðýííå, ÿêîå ïàäòðûìëiâàåööà òîëüêi XFree %"
"s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ç ýêñïåðûìåíòàëüíàé ïàäòðûìêàé 3D-ïàñêàðýííÿ"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ÇÀÂIÑÀÍÍß ÂÀØÀÃÀ ÊÀÌÏ'ÞÒÝÐÓ. Âàøà âiäýàêàðòà ïàäòðûìëiâàåööà XFree %s, ÿêi\n"
"ëåïåé ïàäòðûìëiâàå êàðòû ç 2D-ïàñêàðýííåì."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ msgstr ""
"ÌÀÉÖÅ ÍÀ ¡ÂÀÇÅ, ØÒÎ ÃÝÒÀ ÝÊÑÏÅÐÛÌÅÍÒÀËÜÍÀß ÏÀÄÒÐÛÌÊÀ I ÌÎÆÀ ÏÐÛÂÅÑÖI ÄÀ\n"
"ÇÀÂIÑÀÍÍß ÂÀØÀÃÀ ÊÀÌÏ'ÞÒÝÐÓ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Ïà âûáàðó"
@@ -176,32 +176,32 @@ msgstr "Ïàìåðû ýêðàíó"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îïöûi"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Îê"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Âûõàä"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Âûáàð ïàìåðࢠýêðàíó i ãëûáiíi êîëåðó"
msgid "Graphics card: %s"
msgstr "Âiäýàêàðòà: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Àäìåíà"
@@ -394,11 +394,11 @@ msgstr "Ñåðâåð XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Ñåðâåð XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Çàïóñê X ïðû ñòàðöå ñiñòýìû"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Ìîæíà íàñòðîiöü ñiñòýìó äëÿ à¢òàìàòû÷íàãà çàïóñêó X ïàñëÿ ñòàðòó ñiñòýìû.\n"
"Æàäàåöå, êàá X ñòàðòàâࢠïðû ðýñòàðöå?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
@@ -493,7 +493,7 @@ msgstr "Êàìïàêòíà"
msgid "compact"
msgstr "êàìïàêòíà"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Âiäýà-ðýæûì"
@@ -501,17 +501,17 @@ msgstr "Âiäýà-ðýæûì"
msgid "Delay before booting default image"
msgstr "Çàòðûìêà ïåðàä çàãðóçêàé âîáðàçó ïà äàìà¢ëåííþ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ïàðîëü"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Ïà¢òàðûöå ïàðîëü"
@@ -546,14 +546,14 @@ msgid ""
msgstr ""
"Îïöûÿ ``Àáìåæàâàííå îïöûÿ¢ êàìàíäíàãà ðàäêó'' íå âûêàðûñòî¢âàåööà áåç ïàðîëÿ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ïàðîëi íå ñóïàäàþöü"
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,158 +599,158 @@ msgstr ""
"Ó ìåíþ ìàþööà íàñòóïíûÿ ïóíêòû.\n"
"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äàäàöü"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Çðîáëåíà"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Çìÿíiöü RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ßêi òûï ïóíêòà æàäàåöå äàäàöü?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Iíøàÿ ÀÑ (SunOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Iíøàÿ ÀÑ (MacOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Iíøàÿ ÀÑ (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Âîáðàç"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Äàëó÷ûöü"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "×ûòàííå-çàïiñ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Òàáëiöà"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Íåíàäçåéíà"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Ìåòêà"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ïà äàìà¢ëåííþ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Âûäàëiöü çàïiñ"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Ïóñòàÿ ìåòêà íå äàçâàëÿåööà"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Âû ïàâiííû ìåöü ðàçäçåë swap"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ãýòàÿ ìåòêà ¢æî âûêàðûñòî¢âàåööà"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Çíîéäçåíû %s %s iíòýðôåéñû"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Öi ¸ñöü ó âàñ iíøû?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Öi ¸ñöü ó âàñ %s iíòýðôåéñ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íå"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Òàê"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ãë. àïiñàííå àáñòàëÿâàííÿ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Óñòàëÿâàííå äðàéâåðó äëÿ %s êàðòû %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(ìîäóëü %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -761,17 +761,17 @@ msgstr ""
"Îïöûi - ó ôàðìàöå ``iìÿ=çíà÷ýííå iìÿ2=çíà÷ýííå2 ...''.\n"
"Íàïðûêëàä, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Îïöûi ìîäóëþ:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "ßêi äðàéâåð %s ïàñïðàáàâàöü?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
"¢ ïîøóêàõ íåàáõîäíàé iíôàðìàöûi? Ìàã÷ûìà, òýñöiðàâàííå ïðûâÿäçå\n"
"äà ñïûíåííÿ êàìï'þòýðó, àëå ÿíî íi÷îãà íå ñàïñóå."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "À¢òàïîøóê"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Ïàçíà÷öå ïàðàìåòðû"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,64 +805,64 @@ msgstr ""
"Çàãðóçêà ìîäóëþ %s íå ïðàéøëà.\n"
"Æàäàåöå ïàñïðàáàâàöü ç iíøûìi ïàðàìåòðàìi?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(óæî äàäàäçåíà %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ãýòû ïàðîëü çàíàäòà ïðîñòû"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Êàëi ëàñêà, óâÿäçiöå iìÿ êàðûñòàëüíiêó"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iìÿ êàðûñòàëüíiêó ïàâiííà çìÿø÷àöü ëiòàðû òîëüêi íà íiæíiì ðýãiñòðû, \n"
"ëi÷áû, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ãýòà iìÿ êàðûñòàëüíiêó ¢æî äàäàäçåíà"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ãýòà iìÿ êàðûñòàëüíiêó ¢æî äàäàäçåíà"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +871,32 @@ msgstr ""
"Óâÿäçiöå iìÿ êàðûñòàëüíiêó\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Ïðûíÿöü êàðûñòàëüíiêà"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Óëàñíàå iìÿ"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Àáàëîíêà:"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ïiêòàãðàìà"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "À¢òàìàòû÷íû ¢âàõîä ó ñiñòýìó"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -905,57 +905,57 @@ msgstr ""
"Ìîæíà íàñòðîiöü ñiñòýìó äëÿ à¢òàìàòû÷íàãà ¢âàõîäó ¢ ñiñòýìó äëÿ\n"
"àäíàãî êàðûñòàëüíiêà. Êàëi Âû íå æàäàåöå ãýòàãà, íàöiñíiöå \"Àäìåíà\"."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Àáÿðûöå àñíî¢íàãà êàðûñòàëüíiêà:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Àáÿðûöå ìýíýäæàð âîêíà¢:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Óñ¸"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "×àêàåööà"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -964,42 +964,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Ñàðäý÷íà çàïðàøàåì ó Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Çóñ³ì ñëàáû"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ñòàíäàðòíû"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Âûñîêi"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Âûñîêi"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Ïàðàíàiäàëüíû"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1011,7 +1011,7 @@ msgstr ""
"íà ìàøûíàõ, ÿêiÿ äàëó÷àíû äà ñåòêi öi äà Internet. Óâàõîä íå àáàðîíåíû "
"ïàðîëåì."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1019,7 +1019,7 @@ msgstr ""
"Ïàðîëü çàðàç óêëþ÷àíû, àëå âûêàðûñòàííå êàìï'þòýðó ¢ ÿêàñöi ñåòêàâàãà\n"
"òàêñàìà íå ðýêàìåíäàâàíà."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1029,13 +1029,13 @@ msgstr ""
"ÿêi äàëó÷àíû äà Internet ó ÿêàñöi êëiåíòó. Äàäàíûÿ íîâûÿ ïðàâåðêi\n"
"áÿñïåêi."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
"ñåðâåðó. Óçðîâåíü áÿñïåêi äàñòàòêîâà âûñîêi äëÿ ðàáîòû\n"
"ñåðâåðó, ÿêi äàïóñêàå çëó÷ýííi ñà øìàòëiêiìi êëiåíòàìi."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
"Ïðûìàþööà ¢ëàñöiâàñöi 4 óçðî¢íÿ, àëå çàðàç ñiñòýìà ïî¢íàñöþ çà÷ûíåíà.\n"
"Ïàðàìåòðû áÿñïåêi ¢ñòàíî¢ëåíû íà ìàêñiìóì."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îïöûi"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Óçðîâåíü áÿñïåêi"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Àáÿðûöå äàäàòêîâûÿ íàñòðîéêi äëÿ ñåðâåðà"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1095,7 +1095,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1107,58 +1107,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Íå õàïàå äûñêàâàé ïðàñòîðû ¢ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Ïðàöî¢íû ñòîë"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Êóäû âû æàäàåöå ¢ñòàëÿâàöü ïà÷àòêîâû çàãðóç÷ûê?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1216,130 +1216,130 @@ msgstr "Ðýæûì çëó÷ýííÿ"
msgid "Yaboot mode"
msgstr "Çàãðóçà÷íàÿ ïðûëàäà"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ïàìûëêà"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "Ñåðâåð XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "ãàëüøòóê"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Êëàñ óñòàëÿâàííÿ"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Íàñòðîéêà X Window"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Äðýâà"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1348,44 +1348,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1489,53 +1489,61 @@ msgstr "ïàñëÿäî¢íàÿ"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Íîâû"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ðàçìàíöiðàâàöü"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ìàíöiðàâàííå"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "ñåðâåð"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Êðîïêà ìàíöiðàâàííÿ"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "ñåðâåð"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ïóíêò ìàíöiðàâàííÿ:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îïöûi: %s"
@@ -1624,7 +1632,7 @@ msgstr "Ïóñòà"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "²íøûÿ"
@@ -1776,7 +1784,7 @@ msgstr ""
"Òàáëiöà ðàçìÿø÷ýííÿ ðýçåðâîâàãà äûñêó ìàå iíøû ïàìåð\n"
"Ïðàöÿãâàöü äàëåé?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Óâàãà!"
@@ -2335,7 +2343,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Iìÿ êàðûñòàëüíiêó:"
@@ -2350,23 +2358,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS ñåðâåð"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ïàìûëêà ôàðìàòàâàííÿ %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Íå âåäàþ ÿê àäôàðìàòàâàöü %s ç òûïàì %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ïàìûëêà ðàçìàíöiðàâàííÿ %s: %s"
@@ -2458,46 +2466,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Íàñòðîéêà"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "ñåðâåð"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Ïðàâåðêà ïàðàìåòðࢠíàñòðîéêi"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Êàëi ëàñêà, ïà÷àêàéöå"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2696,8 @@ msgid "/_Quit"
msgstr "Âûõàä"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
@@ -2643,76 +2716,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "Àäìÿíiöü"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "À¢òàïîøóê"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Âûçíà÷ýííå æîðñòêàãà äûñêó"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Ãë. àïiñàííå àáñòàëÿâàííÿ"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Iíôàðìàöûÿ"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Íàñòðîéêà ìûøû"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Êàëi ëàñêà, ïà÷àêàéöå"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ñåêóíäà¢"
@@ -3972,7 +4046,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3987,7 +4061,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3996,31 +4070,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Íåìàã÷ûìà âûêàðûñòî¢âàöü broadcast áåç äàìåíà NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ïàìûëêà ÷ûòàííÿ ôàéëó %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4268,7 +4342,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "СардÑчна запрашаем у %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Äûñêàâîä íåäàñòóïíû"
@@ -4299,11 +4373,11 @@ msgstr "Êëàñ Óñòàëÿâàííÿ"
msgid "Please choose one of the following classes of installation:"
msgstr "Êàëi ëàñêà, àáÿðûöå àäçií ç êëàñࢠóñòàëÿâàííÿ:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
@@ -4380,7 +4454,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Óñòà븢êà"
@@ -4403,7 +4477,7 @@ msgstr "Âûäàëiöü ç ñiñòýìû"
msgid "Choose the packages you want to install"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Óñòà븢âàåì"
@@ -4431,17 +4505,17 @@ msgid "Installing package %s"
msgstr "Óñòàëÿâàííå ïàêåòó %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ïðûíÿöü"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Àäêàçàöü"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4458,16 +4532,16 @@ msgstr ""
"Cd."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Óñ¸ ðî¢íà ïðàöÿãâàöü?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
@@ -4564,7 +4638,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4642,7 +4716,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Êëàâiÿòóðà"
@@ -4855,31 +4929,31 @@ msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Âûáàð ïàêåòࢠäëÿ óñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "×àêàéöå"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4889,16 +4963,16 @@ msgstr ""
"Êàëi âû íå ìàåöå àíi âîäíàãà ç ãýòûõ CD äûñêà¢, íàöiñíiöå Àäìÿíiöü.\n"
"Êàëi íåêàòîðûõ ç CD äûñêࢠíå ìàåöå, àäìÿíiöå iõ âûäçÿëåííå i íàöiñíiöå Îê."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ïàçíà÷àíû \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4907,21 +4981,21 @@ msgstr ""
"Óñòàëÿâàííå ïàêåòó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4999,7 +5073,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5011,169 +5085,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ñóâÿçü ç ëþðàì äëÿ àòðûìàííÿ ñïiñó äàñòóïíûõ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Âûáàð ëþñòðà äëÿ àòðûìàííÿ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ñóâÿçü ç ëþðàì äëÿ àòðûìàííÿ ñïiñó äàñòóïíûõ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "ßêi âàø ÷àñàâû ïîÿñ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Âàø ñiñòýìíû ãàäçiííiê óñòàëÿâàíû íà GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS ñåðâåð:"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Àääàëåíû ñåðâåð CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
#, fuzzy
msgid "No printer"
msgstr "Iìÿ äðóêàðêi"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi ¸ñöü ó âàñ iíøû?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
#, fuzzy
msgid "Mouse"
msgstr "Ïîðò ìûøû"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ïðûíòýð"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "ISDN card"
msgstr "Óíóòðàíàÿ ISDN êàðòà"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy
msgid "Sound card"
msgstr "Ñòàíäàðòíû"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Âûêàðûñòî¢âàöü NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ïàðîëü äëÿ root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Íÿìà ïàðîëþ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ãýòû ïàðîëü çàíàäòà ïðîñòû (ÿãî äà¢æûíÿ ïàâiííà áûöü íå ìåíåé çà %d ëiòàðà¢)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "ñåðâåð"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "À¢òýíòûôiêàöûÿ NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ñåðâåð:"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5189,22 +5263,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Iìÿ äàìåíó"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "Ïàäöâåðäçiöü ïàðîëü"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5231,19 +5305,19 @@ msgstr ""
"Êàëi æàäàåöå ñòâàðûöü çàãðóçà÷íû äûñê çàðàç, óñòà¢öå äûñêåòó ¢ ïåðøû\n"
"äûñêàâîä i íàöiñíiöå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ïåðøû äûñêàâîä"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Äðóãi äûñêàâîä"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ïðàïóñöiöü"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5269,7 +5343,7 @@ msgstr ""
"Æàäàåöå ñòâàðûöü çàãðóçà÷íû äûñê çàðàç?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5278,28 +5352,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Âûáà÷àéöå, àëå äûñêàâîä íåäàñòóïíû"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Àáÿðûöå äûñêàâîä, ó ÿêiì áóäçå ñòâàðàööà çàãðóçà÷íàÿ äûñêåòà"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ñòâàðýííå çàãðóçà÷íàé äûñêåòû"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ïàäðûõòî¢êà çàãðóç÷ûêà"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5307,11 +5381,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Âû æàäàåöå âûêàðûñòî¢âàöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5319,16 +5393,16 @@ msgstr ""
"Ïàìûëêà ¢ñòàëÿâàííÿ àboot, \n"
"ñïðàáàâàöü óñòà븢âàöü, íåãëåäçÿ÷û íà ìàã÷ûìàñöü ïàðóøýííÿ ïåðøàãà ðàçäåëó?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Óñòàëÿâàííå çàãðóç÷ûêó"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ïðàöýñ óñòàëÿâàííÿ çàãðóç÷ûêà íå àòðûìà¢ñÿ. Óçíiêëà íàñòóïíàÿ ïàìûëêà:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5339,17 +5413,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5358,7 +5432,7 @@ msgstr ""
"Íåêàòîðûÿ êðîêi íå çàâåðøàíû.\n"
"Âû ñàïðà¢äû æàäàåöå âûéñöi çàðàç?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5390,16 +5464,16 @@ msgstr ""
"Iíôàðìàöûÿ ïà íàñòðîéêå âàøàé ñiñòýìû ¸ñòü ¢ ïàñëÿ-¢ñòàë¸âà÷íàé\n"
"ãëàâå âàøàãà Äàïàìîæíiêà Êàðûñòàëüíiêó ç Àôiöûéíàãà Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5408,16 +5482,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "À¢òàìàòû÷íû"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Replay"
msgstr "Ïåðàçàãðóçiöü"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
@@ -5455,14 +5529,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Òýêñò"
@@ -5919,7 +5993,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ìàíöiðàâàííå äûñêó %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -6060,16 +6134,16 @@ msgstr "íÿìà"
msgid "No mouse"
msgstr "Íÿìà ìûøû"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "Ðóøöå êîëàì ìûøû!"
@@ -6106,34 +6180,30 @@ msgstr "Çãàðíóöü äðýâà"
msgid "Toggle between flat and group sorted"
msgstr "Ïåðàêëþ÷ýííå ïàìiæ óïàðàäêàâàííåì ïà ãðóïå i àñîáêàõ"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "âûêàðûñòî¢âàöü pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "use pptp"
msgstr "âûêàðûñòî¢âàöü pppoe"
@@ -6233,7 +6303,7 @@ msgstr ""
msgid "no network card found"
msgstr "ñåòêàâàÿ êàðòà íå çíîéäçåíà"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Íàñòðîéêà ñåòêi"
@@ -6249,15 +6319,15 @@ msgstr ""
"íàïðûêëàä ``mybox.mylab.myco.com''.\n"
"Âû ìîæàöå òàêñàìà ¢âåñöi IP àäðàñ øëþçó, êàëi ¸í ó âàñ ¸ñöü."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Iìÿ ìàøûíû"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
@@ -6299,8 +6369,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Íàñòðîéêà ISDN"
@@ -6339,23 +6409,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "ßêi ïðàòàêîë âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "ßêi òûï êàðòû âû ìàåöå?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Íå âÿäîìà"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6369,19 +6444,19 @@ msgstr ""
"\n"
"Êàëi âû ìàåöå PCMCIA êàðòó, âû ïàâiííû âåäàöü irq i io âàøàé êàðòû.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Àäìÿíiöü"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Ïðàöÿãíóöü"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ßêàÿ ¢ âàñ ISDN êàðòà?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6389,7 +6464,7 @@ msgstr ""
"Âûçíà÷àíà ISDN PCI êàðòà, àëå íåâÿäîìû ÿå òûï. Êàëi ëàñêà, ïàçíà÷öå PCI "
"êàðòó íà íàñòóïíûì ýêðàíå."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Êàðòà ISDN PCI íå çíîéäçåíà. Êàëi ëàñêà, ïàçíà÷öå íà íàñòóïíûì ýêðàíå."
@@ -6443,7 +6518,7 @@ msgstr "Ïåðøû ñåðâåð DNS"
msgid "Second DNS Server (optional)"
msgstr "Äðóãi ñåðâåð DNS:"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6451,7 +6526,7 @@ msgstr ""
"\n"
"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6460,12 +6535,12 @@ msgstr ""
"\n"
"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "ßê âû ïëàíóåöå äàëó÷ûööà äà Iíòýðíýòó?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6474,38 +6549,38 @@ msgstr ""
"\n"
"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "ßê âû ïëàíóåöå äàëó÷ûööà äà Iíòýðíýòó?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Íàñòðîéêà ISDN"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Íàñòðîéêà ñåòêi"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Iíòýðíýò çëó÷ýííå i êàíôiãóðàöûÿ"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6519,12 +6594,12 @@ msgstr ""
"\n"
"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6532,7 +6607,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6540,105 +6615,105 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Àáÿðûöå àñíî¢íàãà êàðûñòàëüíiêà:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr "Ýêñïåðò"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Íàñòðîéêà ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Ðàçìåðêàâàííå"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "LAN connection"
msgstr "Ðàçìåðêàâàííå"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Àáÿðûöå iíñòðóìåíò, ÿêi æàäàåöå ñêàðûñòàöü"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Âû æàäàåöå, êàá ãýòàå çëó÷ýííå ñòàðòàâàëà ïðû çàãðóçöû?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
#, fuzzy
msgid "Network configuration"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6646,27 +6721,27 @@ msgid ""
"%s"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6674,7 +6749,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6684,43 +6759,43 @@ msgstr ""
"Êîæíû ïóíêò ïàâiíåí áûöü çàïî¢íåíû ÿê IP àäðàñ ¢ äçåñÿòêîâà-êðîïêàâàé \n"
"íàòàöûi (íàïðûêëàä, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Íàñòðîéêà ñåòêàâàé ïðûëàäû %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Ñåðâåð XFree86: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP àäðàñ"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Ìàñêà ñåòêi"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "À¢òàìàòû÷íû IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Ñòâàðûöü çàãð. äûñê"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6732,42 +6807,53 @@ msgstr ""
"íàïðûêëàä ``mybox.mylab.myco.com''.\n"
"Âû ìîæàöå òàêñàìà ¢âåñöi IP àäðàñ øëþçó, êàëi ¸í ó âàñ ¸ñöü."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS ñåðâåð"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Ïðûëàäà-øëþç"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Íàñòðîéêà proxy êýøóþ÷ûõ ñåðâåðà¢"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy ïàâiíåí áûöü http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ïàâiíåí áûöü ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy ïàâiíåí áûöü http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8166,7 +8252,7 @@ msgstr "Àäëó÷ýííå àä ñåòêi"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8679,11 +8765,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy ïàâiíåí áûöü http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8733,6 +8814,43 @@ msgstr "mkraid íå ïðàöàçäîëüíû (ìîæà raid ïðûëàäû àäñóòíi÷àþöü?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Íåäàñòàòêîâà ðàçäçåëࢠäëÿ RAID óçðî¢íÿ %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Îïöûi àääàëåíàãà ïðûíòýðó lpd"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (çìî¢÷àííå %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9031,7 +9149,7 @@ msgstr "öiêàâà"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -9128,7 +9246,7 @@ msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9175,7 +9293,7 @@ msgstr "Ñåòêàâû iíòýðôåéñ"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9200,7 +9318,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9216,7 +9334,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9231,7 +9349,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9280,8 +9398,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9318,11 +9436,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Êàëi ëàñêà, âûéäçiöå, à ïîòûì ñêàðûñòàéöå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Êàëi ëàñêà, ïåðàéäçiöå ¢ %s äëÿ àêòûâàöûi çìÿíåííÿ¢"
@@ -9370,16 +9488,6 @@ msgstr "Äàäàöü êàðûñòàëüíiêà"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9432,52 +9540,67 @@ msgstr "Äàäàöü êàðûñòàëüíiêà"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Íàñòðîéêà IDE"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Çàêàí÷ýííå íàñòðîéêi"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "Íàñòðîéêà X Window"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Äûñêàâîä íåäàñòóïíû"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9601,13 +9724,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9616,41 +9739,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Íÿìà ïàðîëþ"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9661,68 +9784,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9730,926 +9853,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ïàìûëêà ÷ûòàííÿ ôàéëó %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Âûäàëiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Íÿìà ïàðîëþ"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Êàëi ëàñêà, àáÿðûöå òûï êëàâiÿòóðû."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Àáÿðûöå ôàéë"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Ñåòêà:"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Òûï: "
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "×àêàéöå"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Îïöûi ìîäóëþ:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr "Ñåòêà:"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr "Ïîðò ïðûíòýðó"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Ìûø: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îïöûi"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
#, fuzzy
msgid "\t-Tape \n"
msgstr "Òûï: "
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Âûáàð òûïó çëó÷ýííÿ ïðûíòýðó"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "²íøûÿ"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Ïåðàêàíôiãóðàâàöü ëàêàëüíóþ ñåòêó"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Iìÿ ìàøûíû"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Ïàðîëü"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Iìÿ ìàøûíû"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Ïà âûáàðó"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü äàäàíû äà ñiñòýìû"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Çàõàâàííå ¢ ôàéë"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íàñòðîéêà"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Çàêàí÷ýííå íàñòðîéêi"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10681,7 +10806,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10690,7 +10815,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10731,7 +10856,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10759,17 +10884,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10786,7 +10911,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10826,7 +10951,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10837,7 +10962,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10850,7 +10975,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10932,8 +11057,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Êàíñîëüíûÿ ³íñòðóìåíòàëüíûÿ ñðîäê³"
@@ -11010,28 +11135,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Ïîðò"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
@@ -11140,11 +11265,6 @@ msgstr "Ìàéñòàð ñòâàðýííÿ..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Ïðàâåðêà ïàðàìåòðࢠíàñòðîéêi"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11268,7 +11388,7 @@ msgstr "Îïöûi ìîäóëþ:"
msgid "Size"
msgstr "Ïàìåð: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Àäíà¢ëåííå ç äûñêåòû"
@@ -11342,24 +11462,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Çðàáiöü íåàêòû¢íûì ñåòêàâàå çëó÷ýííå"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11835,156 +11955,156 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Ïðàöî¢íàÿ ãðóïà"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Ðàçäçåë %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Çíiø÷ûöü"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Ñÿðýäíi"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Çðîáëåíà"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Iìÿ äðóêàðêi"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Ïðûíÿöü êàðûñòàëüíiêà"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Âåðñiÿ: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Ïîðò"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Ïðàöî¢íàÿ ãðóïà"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11996,137 +12116,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Ïàìåðû ýêðàíó"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Àáÿðûöå äçåÿííå"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Iìÿ äëÿ ðàçìåðêàâàíàãà ðýñóðñó"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Âûõàä"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Óñòàëÿâàííå ñiñòýìû"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Íàñòðîéêà ñëóæáà¢"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Âiðòóàëüíàÿ ôàéëàâàÿ ñiñòýìà (loopback)"
+msgid "Preview"
+msgstr "ïðûëàäà"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "ïðûëàäà"
+msgid "Save theme"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Àáÿðûöå ìàíiòîð"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "URI ïðûíòýðó"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12267,6 +12397,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -12301,11 +12437,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Íåìàã÷ûìà çàïóñö³öü live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12584,16 +12720,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12670,7 +12803,7 @@ msgstr "Óñòàëÿâàííå ñiñòýìû"
msgid "Exit install"
msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12934,6 +13067,21 @@ msgstr "Ìóëüòûìåäûÿ - Ñòâàðýííå CD"
msgid "Scientific Workstation"
msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Âiðòóàëüíàÿ ôàéëàâàÿ ñiñòýìà (loopback)"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy ïàâiíåí áûöü ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Âûõàä"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (íå ïðàöóå ïðû ñòàðûõ âåðñiÿõ BIOS)"
@@ -13021,9 +13169,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ msgid "Test again"
#~ msgstr "Ïðàâåðûöü ÿø÷ý ðàç"
-#~ msgid "Setting security level"
-#~ msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-
#~ msgid "Select a graphics card"
#~ msgstr "Àáÿðûöå âiäýàêàðòó"
@@ -13176,9 +13321,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Íåâûçíà÷àíàñöü (%s), áóäçüöå äàêëàäíûÿ\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (çìî¢÷àííå %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Âàø âûáàð? (çìî¢÷àííå %s. Óâÿäçiöå `none' ïðû àäñóòíàñöi) "
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index e7d19aece..5b0c95b11 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-02-28 20:56+0200\n"
"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
@@ -89,24 +89,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Èçïîëçâàé ðàçøèðåíèåòî Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Íàñòðîéêà ñàìî íà êàðòà \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ñ õàðäóåðíî 3D óñêîðåíèå"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
"2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå â XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ñ ÅÊÑÏÅÐÈÌÅÍÒÀËÍO õàðäóåðíî 3D óñêîðåíèå"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
"2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"ÎÒÁÅËÅÆÅÒÅ, ×Å ÒÎÂÀ Å ÅÊÑÏÅÐÈÌÅÍÒÀËÍÀ ÏÎÄÄÐÚÆÊÀ È ÊÎÌÏÞÒÚÐÚÒ ÂÈ ÌÎÆÅ ÄÀ "
"ÇÀÁÈÅ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (èíñòàëàöèÿ ãðàôè÷åí äðàéâåð)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Êëèåíòñêà"
@@ -177,32 +177,32 @@ msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îïöèè"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Èçõîä"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -301,25 +301,25 @@ msgstr "Èçáåðåòå ðàçäåëèòåëíà ñïîñîáíîñò è äúëáî÷èíà íà öâåòîâåòå"
msgid "Graphics card: %s"
msgstr "Ãðàôè÷íà êàðòà: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Îòêàç"
@@ -397,11 +397,11 @@ msgstr "XFree86 ñúðâúð: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 äðàéâåð: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ïðè ñòàðòèðàíå íà ñèñòåìàòà"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"Kîìïþòúðà âè ìîæå àâòîìàòè÷íî, äà âëåçå â X ïðè ñòàðòèðàíå.\n"
"Èñêàòå ëè X äà ñå ñòàðòèðà, êîãàòî ðåñòàðòèðàòå ñèñòåìàòà?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Êàêúâ å òèïúò íà ISDN âðúçêàòà ?"
@@ -495,7 +495,7 @@ msgstr "Êîìïàêòåí"
msgid "compact"
msgstr "êîìïàêòåí"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Âèäåî ðåæèì"
@@ -503,17 +503,17 @@ msgstr "Âèäåî ðåæèì"
msgid "Delay before booting default image"
msgstr "Çàáàâÿíå ïðåäè ñòàðòèðàíåòî íà default äÿëà"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ïàðîëà"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Ïàðîëà (îòíîâî)"
@@ -547,14 +547,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îïöèÿòà ``Îãðàíè÷è îïöèèòå îò êîìàíäíèÿ ðåä'' å áåçïîëåçíà áåç ïàðîëà"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ïàðîëèòå íà ñúâïàäàò"
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,156 +599,156 @@ msgstr ""
"Òîâà ñà ðàçëè÷íèòå çàïèñè.\n"
"Ìîæåòå äà äîáàâèòå îùå èëè äà ïðîìåíèòå ñúùåñòâóâàùèòå."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äîáàâè"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Ãîòîâî"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ìîäèôèöèðàé"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Êàêúâ òèï èíôîðìàöèÿ èñêàòå äà ïðèáàâèòå"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Äðóãà ÎÑ (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Äðóãà ÎÑ (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Äðóãà ÎÑ (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Îáðàç"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Ãëàâåí"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Äîïúëâàíå"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "×åòåíå-çàïèñ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Òàáëèöà"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Îïàñåí"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Åòèêåò"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ïî ïîäðàçáèðàíå"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-ãîëåìèíà"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Áåç ãðàôèêà"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ïðåìàõíè çàïèñ"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Ïðàçåí åòèêåò íå å ðàçðåøåí"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Òðÿáâà äà èìàòå swap-äÿë"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Òîçè åòèêåò âå÷å ñå èçïîëçâà"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Íàìåðåíè ñà %s %s èíòåðôåéñè"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Èìàòå ëè äðóã(è) ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Èìàòå ëè íÿêàêúâ %s èíòåðôåéñ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íå"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Äà"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Âèæ õàðäóåðíàòà èíôîðìàöèÿ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Èíñòàëèðàíå íà äðàéâåð çà %s ïëàòêà %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(ìîäóë %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -759,17 +759,17 @@ msgstr ""
"Îïöèèòå ñà âúâ ôîðìàò ``èìå=ñòîéíîñò èìå2=ñòîéíîñò2 ...''.\n"
"Íàïðèìåð: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Îïöèè íà ìîäóëà:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Êîé %s äðàéâåð äà ïðîáâàì ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
"îò êîÿòî ñå íóæäàå ? Ïî ïðèíöèï òîâà ìîæå äà çàáèå êîìïþòúðà âè, íî íÿìà äà "
"ãî ïîâðåäè."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Àâòîìàòè÷íî çàñè÷àíå"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Çàäàé îïöèè"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,63 +805,63 @@ msgstr ""
"Çàðåæäàíåòî íà ìîäóëà %s íå óñïÿ.\n"
"Èñêàòå ëè äà îïèòàòå îòíîâî ñ äðóãè ïàðàìåòðè ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(âå÷å ïðèáàâèõ %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Òàçè ïàðîëà å ïðåêàëåíî ïðîñòà"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Ìîëÿ, çàäàéòå ïîòðåáèòåëñêî èìå"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ïîòðåáèòåëñêîòî èìå ìîæå äà âêëþ÷âà ñàìî ìàëêè áóêâè, íîìåðà, `-' è `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Òîâà ïîòðåáèòåëñêî èìå å âå÷å äîáàâåíî"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Òîâà ïîòðåáèòåëñêî èìå å âå÷å äîáàâåíî"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Äîáàâè ïîòðåáèòåë"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +870,32 @@ msgstr ""
"Âúâåäåòå ïîòðåáèòåë\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Ïðèåìè ïîòðåáèòåë"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Èñòèíñêî èìå"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Øåë"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Èêîíà"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,59 +904,59 @@ msgstr ""
"ïîòðåáèòåë.\n"
"Èñêàòå ëè òàçè âúçìîæíîñò ?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Èçáåðåòå ïîäðàçáèðàù ñå ïîòðåáèòåë :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Èçáåðåòå Windows Manager çà ñòàðòèðàíå:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Âñè÷êè"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Ïîäåëÿíå íà ôàéëîâå"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -965,42 +965,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Äîáðå äîøëè ïðè Cracker-èòå"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Ëîøî"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ñòàíäàðòíà"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Âèñîêî"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Âèñîêî"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Ïàðàíîè÷íî"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1010,7 +1010,7 @@ msgstr ""
"óïîòðåáà, íî å ïî-÷óâñòâèòåëíî: íå òðÿáâà äà áúäå èçïîëçâàíà íà ìàøèíè\n"
"ñâúðçàíè ñ äðóãè èëè ïî Èíòåðíåò. Íÿìà äîñòúï ñ ïàðîëè."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1018,7 +1018,7 @@ msgstr ""
"Ïàðîëàòà ñåãà å âêëþ÷åíà, íî èçïîëçâàíåòî êàòî ìðåæîâ êîìïþòúð íå å "
"ïðåïîðú÷èòåëíî."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1028,13 +1028,13 @@ msgstr ""
"èçïîëçâàí äà ñå ñâúðçâà êúì Èíòåðíåò êàòî êëèåíò. Èìà ïðîâåðêè íà "
"ñèãóðíîñòòà. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
"Ñèãóðíîñòòà ñåãà å äîñòàòú÷íî ãîëÿìà äà ñå èçïîëçâà ñèñòåìàòà êàòî\n"
"ñúðâúð ïðèåìàù âðúçêè îò ìíîãî êëèåíòè. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
"Èçáèðàìå 4-òî íèâî, íî ñèñòåìàòà å íàïúëíî çàòâîðåíà.\n"
"Íèâîòî íà ñèãóðíîñò å íà ìàêñèìóìà ñè."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îïöèè"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Èçáåðåòå íèâî íà ñèãóðíîñò"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Íèâî íà ñèãóðíîñò"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Èçïîëçâàéòå libsafe çà ñúðâúðè"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Áèáëèîòåêà, êîÿòî îñèãóðÿâà çàùèòà îò aòàêè ñ ïðåïúëâàíå íà áóôåð è ôîðìàòíè "
"ñòðèíãîâå."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1100,7 +1100,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1125,7 +1125,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1139,7 +1139,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1154,7 +1154,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1168,7 +1168,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1182,33 +1182,33 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "íÿìà äîñòàòú÷íî ìÿñòî çà /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Äåñêòîï"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Ñòàðòîâî Ìåíþ"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Íå ìîæåòå äà èíñòàëèðàòå bootloader íà äÿëà %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "íÿìà âúâåäåíà ïîìîù îùå.\n"
@@ -1260,106 +1260,106 @@ msgstr "Ðåæèì íà Lilo/grub"
msgid "Yaboot mode"
msgstr "Ðåæèì íà Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Ñúçäàé íîâ äÿë"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ãðåøêà"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Êîïèðàíå íà %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Áåç ãðàôèêà"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Èçáîð íà êëàñ èíñòàëàöèÿ"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,22 @@ msgstr ""
"Â ìîìåíòà èçïîëçâàòå %s êàòî ïðîãðàìà çà ñòàðòèðàíå.\n"
"Öúêíåòå íà Íàñòðîé, çà äà ñòàðòèðàòå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Íàñòðîé"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Çàïàçè èçáîð íà ïàêåòè"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Ñèñòåìåí ðåæèì"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Ïóñíè X-Window ñèñòåìàòà ïðè ñòàðòèðàíå"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Íå, íå èñêàì autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äà, èñêàì autologin ñ òîâà (ïîòðåáèòåë, äåñêòîï)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "íå ìîãà äà îòâîðÿ /etc/inittab çà ÷åòåíå: %s"
@@ -1534,53 +1534,61 @@ msgstr "ñåðèéíà"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "íîâ"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Äåìîíòèðàé"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ìîíòèðàé"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Ñúðâúð"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ìÿñòî íà ìîíòèðàíå"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Ñúðâúð"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ìÿñòî íà ìîíòèðàíå: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îïöèè: %s"
@@ -1669,7 +1677,7 @@ msgstr "Ïðàçåí"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Äðóãà"
@@ -1812,7 +1820,7 @@ msgstr ""
"Ðåçåðâíàòà òàáëèöà íà äÿëîâåòå íå å ñúñ ñúùàòà ãîëåìèíà\n"
"Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Ïðåäóïðåæäåíèå"
@@ -2371,7 +2379,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Ïîòðåáèòåëñêî èìå"
@@ -2386,23 +2394,23 @@ msgstr "NIS äîìåéí"
msgid "Search servers"
msgstr "DNS ñúðâúð"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîðìàòèðàíå îò %s ïðîâàëåíî"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íå çíàì êàê äà ôîðìàòèðàì %s â òèï %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ãðåøêà ïðè äåìîíòèðàíåòî íà %s: %s"
@@ -2489,47 +2497,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Ãðåøêà ïðè îòâàðÿíå íà %s çà çàïèñ: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Íàñòðîéêà"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Äðàéâåð"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Ïîìîù"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Ìîëÿ, ïî÷àêàéòå ... Ïðèëàãàíå íà íàñòðîéêèòå"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Ìîëÿ èç÷àêàéòå"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Íåèçâåñòåí ìîäåë"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2727,8 @@ msgid "/_Quit"
msgstr "Èçõîä"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ïîìîù"
@@ -2675,76 +2748,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Èíôîðìèðàé çà áúã"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Ïîìîù/_Îòíîñíî..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Àâòîìàòè÷íî çàñè÷àíå"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Çàñè÷àíå íà äèñêîâåòå"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Âèæ õàðäóåðíàòà èíôîðìàöèÿ"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Ïîêàæè èíôîðìàöèÿòà"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Íàñòðîéêà íà ìèøêà"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "çàñå÷åí íà ïîðò %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Ìîëÿ èç÷àêàéòå"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Èçòðèâàíå íà ïðèíòåðà \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ñåêóíäè"
@@ -4402,7 +4476,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4426,7 +4500,7 @@ msgstr ""
"\n"
"Íàèñòèíà ëè èñêàòå äà èíñòàëèðàòå òåçè ñúðâúðè ?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4435,20 +4509,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Íå ìîæåòå äà èçïîëçâàòå broadcast áåç NIS äîìåéí"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ñëîæåòå FAT ôîðìàòèðàíà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Òàçè äèñêåòà íå å ôîðìàòèðàíà íà FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4456,12 +4530,12 @@ msgstr ""
"Çà äà èçïîëçâàòå çàïàçåí èçáîð íà ïàêåòè, ñòàðòèðàéòå èíñòàëàöèÿòà ñ ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4705,7 +4779,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Äîáðå äîøëè â %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Íÿìà ôëîïè óñòðîéñòâî"
@@ -4736,11 +4810,11 @@ msgstr "Êëàñ èíñòàëàöèÿ"
msgid "Please choose one of the following classes of installation:"
msgstr "Ìîëÿ, èçáåðåòå åäèí îò ñëåäíèòå êëàñîâå íà èíñòàëàöèÿ:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Èçáîð íà ãðóïà ïàêåòè"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Èçáèðàíå íà ïàêåòè åäèí ïî åäèí"
@@ -4818,7 +4892,7 @@ msgstr "Ïîêàæè àâòîìàòè÷íî îòáåëÿçàíèòå ïàêåòè"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Èíñòàëèðàé"
@@ -4838,7 +4912,7 @@ msgstr "Ìèìèíàëíà èíñòàëàöèÿ"
msgid "Choose the packages you want to install"
msgstr "Èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Èíñòàëèðàì"
@@ -4865,17 +4939,17 @@ msgid "Installing package %s"
msgstr "Èíñòàëèðàíå íà ïàêåòà %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ïðèåìè"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Îòêàæè"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4892,16 +4966,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ïîÿâè ñå ãðåøêà ïðè ïîðú÷âàíåòî íà ïàêåòèòå:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Ïîÿâè ñå ãðåøêà ïðè èíñòàëèðàíå íà ïàêåòèòå:"
@@ -5027,7 +5101,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5223,7 +5297,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Êëàâèàòóðà"
@@ -5435,31 +5509,31 @@ msgstr "Ñëîæåòå äèñêåòà ñúäúðæàùà èçáîð íà ïàêåòè"
msgid "Selected size is larger than available space"
msgstr "Èçáðàíàòà ãîëåìèíà å ïî-ãîëÿìà îò äîñòúïíîòî ïðîñòðàíñòâî"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Èçáåðåòå ïàêåòè çà èíñòàëèðàíå"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Åäèí ìîìåíò"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5469,16 +5543,16 @@ msgstr ""
"Àêî íÿìàòå íèòî åäíî îò òåçè CD-òà, íàòèñíåòå Îòìÿíà.\n"
"Àêî âè ëèïñâàò íÿêîè CD-òà, ìàõíåòå ãè, è íàòèñíåòå Ok. "
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçàãëàâåí \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ïîäãîòâÿì èíñòàëàöèÿòà"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5487,21 +5561,21 @@ msgstr ""
"Èíñòàëèðàì ïàêåò %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ñëîæåòå ñòàðòèðàùàòà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ñëîæåòå äèñêåòà çà îáíîâÿâàíå íà ìîäóëè â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5567,7 +5641,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5579,157 +5653,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Èçáåðåòå îãëåäàëåí ñúðâúð,îò êîéòî äà ïîëó÷èòå ïàêåòèòå"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Êîÿ å âðåìåâàòà âè çîíà ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê å íàñòðîåí ïî GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Àâòîìàòè÷íà ñèíõðîíèçàöèÿ íà âðåìåòî (èçïîëçâà NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Îòäàëå÷åí CUPS ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Íÿìà ïðèíòåð"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Èìàòå ëè äðóã(è) ?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Îáîáùåíèå"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ìèøêà"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "×àñîâà çîíà"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ïðèíòåð"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN êàðòà"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Çâóêîâà êàðòà"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV êàðòà"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS äîìåéí"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Ëîêàëíè ôàéëîâå"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Âúâåäåòå ïàðîëà çà root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Áåç ïàðîëà"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ïàðîëàòà å ïðåêàëåíî ïðîñòà (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Èäåíòèôèêàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP àóòîðèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Áàçîâ dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS àóòîðèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS äîìåéí"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5745,21 +5819,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP àóòîðèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Èìå íà äîìåéíà"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5788,19 +5862,19 @@ msgstr ""
"Àêî èñêàòå äà ñúçäàäåòå bootdisk çà âàøàòà ñèñòåìà, ïîñòàâåòå äèñêåòà â\n"
"ïúðâîòî óñòðîéñòâî è íàòèñíåòå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ïúðâî ôëîïè óñòðîéñòâî"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Âòîðî ôëîïè óñòðîéñòâî"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ïðåñêî÷è"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5826,7 +5900,7 @@ msgstr ""
"ñëó÷àè íà ñðèâ. Èñêàòå ëè äà ñúçäàì bootdisk çà ñèñòåìàòà âè ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5835,28 +5909,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ñúæàëÿâàì íÿìà ôëîïè"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Èçáåðåòå ôëîïè äðàéâ,êúäåòî äà íàïðàâèòå ñòàðòèðàùà äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ñëîæåòå äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ñúçäàâàíå íà ñòàðòèðàùà äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ïîäãîòîâêà íà bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5868,11 +5942,11 @@ msgstr ""
"Èíñòàëàöèÿòà ùå ïðîäúëæè, íî ùå òðÿáâà\n"
"äà èïîëçâàòå BootX, çà äà ñòàðòèðàòå ìàøèíàòà ñè"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Èñêàòå ëè äà èçïîëçâàòå aboot ?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5880,15 +5954,15 @@ msgstr ""
"Ãðåøêà ïðè èíñòàëèðàíå íà aboot, \n"
"äà ñå îïèòàì ëè äà ïðîäúëæà èíñòàëàöèÿòà äîðè, àêî òîâà óíèæòîæè ïúðâèÿ äÿë ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Èíñòàëèðàíå íà bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Èíñòàëàöèÿòà íà bootloader ïðîâàëåíà. Ïîÿâè ñå ñëåäíàòà ãðåøêà:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5905,17 +5979,17 @@ msgstr ""
" Ñëåä êîåòî íàïèøåòå: shut-down\n"
"Ïðè ñëåäâàùîòî ðåñòàðòèðàíå áè òðÿáâàëî äà âèäåòå ïîäñêàçêàòà."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ñëîæåòå ïðàçíà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Ïîäãîòâÿì äèñêåòà ñ àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5925,7 +5999,7 @@ msgstr ""
"\n"
"Íàèñòèíà ëè èñêàòå äà èçëåçåòå ñåãà ?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5957,15 +6031,15 @@ msgstr ""
"Èíôîðìàöèÿ çà íàñòðîéâàíå íà ñèñòåìàòà âè ìîæåòå äà íàìåðèòå â\n"
"ñëåäèíñòàëàöèîííàòà ãëàâà îò Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Ïîäãîòâè äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5979,15 +6053,15 @@ msgstr ""
"\n"
"Ìîæå áè èñêàòå äà ïîâòîðèòå èíñòàëàöèÿòà.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Àâòîìàòèçèðàí"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ïîâòîðè"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Çàïàçè èçáîð íà ïàêåòè"
@@ -6023,14 +6097,14 @@ msgstr "Íàïðåäíè÷àâ"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Ïðåäèøåí"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Òåêñò"
@@ -6478,7 +6552,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "\"Îìàãüîñàí êðúã\" îò ìîíòèðàíèÿ: %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Ïúðâî ïðåìàõíè ëîãè÷íèòå äÿëîâî\n"
@@ -6616,15 +6690,15 @@ msgstr "íÿìà"
msgid "No mouse"
msgstr "Áåç ìèøêà"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Çà äà àêòèâèðàòå ìèøêàòà ñè,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓÒÍÅÒÅ ÒÎÏ×ÅÒÎ !"
@@ -6661,11 +6735,11 @@ msgstr "Èç÷èñòè äúðâîòî"
msgid "Toggle between flat and group sorted"
msgstr "Ïðåâêëþ÷âàíå ìåæäó íîðìàëíî è ñîðòèðàíå ïî ãðóïè"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6675,23 +6749,19 @@ msgstr ""
"Íÿêîè âðúçêè èçïîëçâàò PPTP, à maëêî èçïîëçâàò DHCP.\n"
"Àêî íå çíàåòå, èçáåðåòå 'èçïîëçâàé PPPOE'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "èçïîëçâàé DHCP"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "èçïîëçâàé PPPOE"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "èçïîëçâàé PPPTP"
@@ -6792,7 +6862,7 @@ msgstr "Ìîëÿ, èçáåðåòå êîé ìðåæîâ àäàïòåð äà èçïîëçâàì çà âðúçêà êúì Èíòåðíåò"
msgid "no network card found"
msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Íàñòîéêà íà ìðåæàòà"
@@ -6808,15 +6878,15 @@ msgstr ""
"Host èìåòî òðÿáâà äà áóäå íàïúëíî êâàëèôèöèðàíî èìå,\n"
"êàòî ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Èìå íà õîñò:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Ìàãüîñíèê çà íàñòðîéêà íà ìðåæàòà"
@@ -6863,8 +6933,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ñòàðà íàñòðîéêà (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Íàñòðîéêà íà IDSN"
@@ -6900,23 +6970,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Êàêúâ ïðîòîêîë æåëàåòå äà ïðîìåíèòå ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Êàêúâ òèï êàðòà èìàòå ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Íå çíàì"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6929,19 +7004,19 @@ msgstr ""
"\n"
"Àêî èìàòå PCMCIA êàðòà, ùå òðÿáâà äà çíàåòå IRC è IO íà êàðòàòà ñè.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Îòêàç"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Íàòàòúê"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Êîÿ å ISDN êàðòàòà âè ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6949,7 +7024,7 @@ msgstr ""
"Îòêðèòà å ISDN PCI êàðòà, íî ñ íåïîçíàò òèï. Ìîëÿ èçáåðåòå íÿêîÿ PCI êàðòà "
"îò ñëåäâàùèÿò åêðàí."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Íå å íàìåðåíà ISDN PCI êàðòà. Ìîëÿ èçáåðåòå îò ñëåäâàùèÿò åêðàí."
@@ -7001,7 +7076,7 @@ msgstr "Ïúðâè DNS ñúðâúð (ïî èçáîð)"
msgid "Second DNS Server (optional)"
msgstr "Âòîðè DNS ñúðâúð (ïî èçáîð)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7009,7 +7084,7 @@ msgstr ""
"\n"
"Ìîæåòå äà ñå îòâúðæåòå èëè äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7017,11 +7092,11 @@ msgstr ""
"\n"
"Ìîæåòå äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Â ìîìåíòà ñòå ñâúðçàíè êúì Èíòåðíåò"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7029,33 +7104,33 @@ msgstr ""
"\n"
"Ìîæåòå äà ñå ñâúðæåòå êúì Èíòåðíåò èëè äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Â ìîìåíòà íå ñòå ñâúðçàíè êúì Èíòåðíåò"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Ñâúðæè"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Îòâúðæè"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Â ìîìåíòà íàñòðîéâàì ìðåæàòà"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Èíòåðíåò âðúçêà è íàñòðîéêà"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ñåãà ùå íàñòðîèì %s âðúçêàòà."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7073,12 +7148,12 @@ msgstr ""
"\n"
"Íàòèñíåòå OK, çà äà ïðîäúëæèòå."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7089,7 +7164,7 @@ msgstr ""
"Öúêíåòå Ok, çà äà çàïàçèòå íàñòðîéêàòà, èëè Îòìÿíà, çà äà ïðåíàñòîèòå "
"Èíòåðíåò è ìðåæîâàòà ñè âðúçêà.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7101,72 +7176,72 @@ msgstr ""
"Âèå ñòå íà ïúò äà íàñòðîèòå Èíòåðíåò/ìðåæîâàòà ñè âðúçêà.\n"
"Àêî íå èñêàòå äà èçïîëçâàòå àâòîìàòè÷íî çàñè÷àíå, èçêëþ÷åòå êóòèéêàòà.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Èçáåðåòå ïðîôèë çà íàñòðîéêà"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ðàçøèðåíè ôóíêèöèè"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Îòêðèâàíå íà óñòðîéñòâà ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Îáèêíîâåíà ìîäåìíà âðúçêà"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "çàñå÷åí íà ïîðò %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN âðúçêà"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "çàñå÷åíà %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL âðúçêà"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "çàñå÷åí íà èíòåðôåéñ %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Êàáåëíà âðúçêà"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "çàñå÷åíà å êàáåëíà âðúçêà"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN âðúçêà"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet êàðòè çàñå÷åíè"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Èçáåðåòå âðúçêàòà, êîéòî èñêàòå äà èçïîëçâàòå"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7176,23 +7251,23 @@ msgstr ""
"Èçáåðåòå òîçè, êîéòî èñêàòå äà èçïîëçâàòå.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Èíòåðíåò âðúçêà"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Èñêàòå ëè äà ñòàðòèðàòå âðúçêàòà ñè ïðè çàðåæäàíå ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Ìðåæàòà òðÿáâà äà áúäå ðåñòàðòèðàíà"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7203,7 +7278,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7213,7 +7288,7 @@ msgstr ""
"\n"
"Íàñòðîéêèòå ùå áúäàò ïðèëîæåíè êúì ñèñòåìàòà âè.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7221,14 +7296,14 @@ msgstr ""
"Ñëåä êàòî ñòàíå òîâà, ïðåïîðú÷âàìå âè äà ðåñòàðòèðàòå X\n"
"ñðåäàòà ñè, çà äà èçáåãíåòå ïðîáëåìè ñúñ ñìÿíàòà èìåòî íà õîñòà."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7239,7 +7314,7 @@ msgstr ""
"Ïðîñòî ïðèåìåòå, çà äà îñòàâèòå óñòðîéñòâîòî íàñòðîåíî.\n"
"Ïîïðàâêàòà íà ïîëåòàòà ïî-äîëó ùå ïðåçàïèøå òàçè íàñòðîéêà."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7249,43 +7324,43 @@ msgstr ""
"Âñÿêî óñòðîéñòâî òðÿáâà äà áúäå âúâåäåíî êàòî IP àäðåñ\n"
"ñ òî÷êîâî-äåñåòè÷íî îçíà÷åíèå (íàïðèìåð, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Íàñòðîéêà íà ìðåæîâîòî óñòðîéñòâî %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (äðàéâåð %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP àäðåñ"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Ìðåæîâà ìàñêà"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Àâòîìàòè÷åí IP àäðåñ"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Ïóñíàò ïðè ñòàðòèðàíå"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7297,42 +7372,53 @@ msgstr ""
"êàòî ``mybox.mylab.myco.com''.\n"
"Ìîæåòå ñúùî äà âúâåäåòå IP àäðåñà íà Âàøèÿ gateway, àêî èìàòå òàêúâ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS ñúðâúð"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway óñòðîéñòâî"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Íàñòðîéêà íà proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Ïðîñëåäÿâàíå íà ID íà ìðåæîâàòà êàðòà (ïîëåçíî ïðè ëàïòîïè)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy-ñúðâúðà òðÿáâà äà å http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ñúðâúðà òðÿáâà äà å ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL òðÿáâà äà å çàïî÷âà ñ 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8779,7 +8865,7 @@ msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9313,11 +9399,6 @@ msgstr ""
"Ìîëÿ, ïîïúëíåòå èíôîðìàöèÿòà çà FTP proxy.\n"
"Îñòàâåòå ïðàçíî, àêî íå èñêàòå FTP proxy."
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL òðÿáâà äà å çàïî÷âà ñ 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9365,6 +9446,43 @@ msgstr "mkraid ïðîïàäíà (ìîæå áè raidtools ëèïñâàò ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Íÿìà äîñòàòú÷íî äÿëîâå çà RAID íèâî %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Íèâî íà ñèãóðíîñò"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Íèâî íà ñèãóðíîñò"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Îòäàëå÷åíà àäìèíèñòðàöèÿ"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Ïî ïîäðàçáèðàíå)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Èçáåðåòå íèâî íà ñèãóðíîñò"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ìîëÿ, èç÷àêàéòå, ïîäãîòâÿíå íà èíñòàëàöèÿòà"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ïóñíè ALSA (Advanced Linux Sound Architecture) çâóêîâàòà ñèñòåìà"
@@ -9671,7 +9789,7 @@ msgstr "Èíòåðíåò"
msgid "File sharing"
msgstr "Ïîäåëÿíå íà ôàéëîâå"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Ñèñòåìà"
@@ -9763,7 +9881,7 @@ msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9810,7 +9928,7 @@ msgstr "Ìðåæîâ èíòåðôåéñ"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9835,7 +9953,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9851,7 +9969,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9866,7 +9984,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9915,8 +10033,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9952,11 +10070,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ìîëÿ èçëåçòå îò ñåñèÿòà è èçïîëçâàéòå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ìîëÿ âëåçòå îòíîâî â %s, çà äà àêòèâèðàòå ïðîìåíèòå"
@@ -10004,17 +10122,6 @@ msgstr "Äîáàâè ïîòðåáèòåë"
msgid "Add/Del Clients"
msgstr "DHCP êëèåíò"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Ïîìîù"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10067,53 +10174,68 @@ msgstr "Äîáàâè ïîòðåáèòåë"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP êëèåíò"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Íàñòðîéêà ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "ïðåíàñòðîéêà"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Ñëîæåòå ñòàðòèðàùàòà äèñêåòà â óñòðîéñòâî %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Íÿìà ôëîïè óñòðîéñòâî"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10238,13 +10360,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Òåñòîâè ñòðàíèöè"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10253,41 +10375,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Áåç ïàðîëà"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Íå ìîãà äà îòâîðÿ %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10298,68 +10420,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10367,926 +10489,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Èçáîð íà ïàêåòè"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ïðåìàõíè Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Ïðåõâúðëè"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "îùå âåäíúæ ïàðîëà"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Ïðåõâúðëè"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Èçáåðåòå ôàéë"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Ìðåæîâ èíòåðôåéñ"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Âèä"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Åäèí ìîìåíò"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Îïöèè íà ìîäóëà:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Óñòðîéñòâî íà ìèøêàòà: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îïöèè"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN âðúçêà"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Èçáåðåòå âðúçêà êúì ïðèíòåðà"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Âúçñòàíîâè îò äèñêåòà"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Äðóãà"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Âúçñòàíîâè îò äèñêåòà"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Èìå íà õîñò:"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Ïàðîëà"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Èìå íà õîñò:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Êëèåíòñêà"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Ïðåäèøåí"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ñúñòîÿíèå"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò èíñòàëèðàíè"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Çàïàçè âúâ ôàéë"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íàñòðîéêà"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11318,7 +11442,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11327,7 +11451,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11368,7 +11492,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11396,17 +11520,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11423,7 +11547,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11463,7 +11587,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11474,7 +11598,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11487,7 +11611,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11569,8 +11693,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Êîíçîëíè èíñòðóìåíòè"
@@ -11646,28 +11770,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "ïîðò"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
@@ -11768,10 +11892,6 @@ msgstr "Ìàãüîñíèê..."
msgid "Apply"
msgstr "Ïðèëîæè"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Ìîëÿ, ïî÷àêàéòå ... Ïðèëàãàíå íà íàñòðîéêèòå"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ñâúðçàí"
@@ -11889,7 +12009,7 @@ msgstr "Èìå íà ìîäóë"
msgid "Size"
msgstr "Ãîëåìèíà"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11954,12 +12074,12 @@ msgstr "Ðåçóëòàò"
msgid "Build the disk"
msgstr "Ñúçäàé äèñêúò"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Ïðîâåðåòå èìàòå ëè äèñêåòà â óñòðîéñòâîòî %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11968,12 +12088,12 @@ msgstr ""
"Íÿìà äèñêåòà â óñòîéñòâîòî %s.\n"
"Ìîëÿ ïîñòàâåòå äèñêåòà."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Íå ìîæå äà ñå ðàáîòè ñ: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12460,157 +12580,157 @@ msgstr ""
"\n"
"Öúêíåòå ``Íàñòðîé'', àêî èñêàòå äà ñòàðòèðàíå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Ðàáîòíà ãðóïà"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "äÿë %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Èçòðèé"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Ãîòîâî"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Äîáàâè ìîäóëà"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Äîáàâè ïðèíòåð"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Ïðèåìè ïîòðåáèòåë"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Âåðñèÿ: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Ïîðò"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Çàïàçè èçáîð íà ïàêåòè"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Ðàáîòíà ãðóïà"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Íå ñâúðçàí"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12622,137 +12742,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "ñúäàâàíå íà ñòàðòèðàùà äèñêåòà"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Èçáåðåòå ôàéë"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Îáùî èìå"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Èçõîä"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Íàñòðîéêà íà óñëóãèòå"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "óñòðîéñòâî"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "óñòðîéñòâî"
+msgid "Save theme"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Èçáåðåòå ìîíèòîð"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Èçáîð ìîäåë íà ïðèíòåðà"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Çàñè÷àíå íà óñòðîéñòâà ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12893,6 +13023,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "óïîòðåáà: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "óïîòðåáà: keyboarddrake [--expert] [keyboard]\n"
@@ -12923,11 +13060,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Íå ìîãà äà ïóñíà îáíîâÿâàíåòî !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "ëîãäðåéê"
@@ -13211,16 +13348,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13296,7 +13430,7 @@ msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
msgid "Exit install"
msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13543,6 +13677,21 @@ msgstr "Ìóëòèìåäèÿ - îïè÷àíå íà CD"
msgid "Scientific Workstation"
msgstr "Íàó÷íà ðàáîòíà ñòàíöèÿ"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy-ñúðâúðà òðÿáâà äà å ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Èçõîä"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -13831,9 +13980,6 @@ msgstr "Íàó÷íà ðàáîòíà ñòàíöèÿ"
#~ msgid "Test again"
#~ msgstr "Òåñòâàé îòíîâî"
-#~ msgid "Setting security level"
-#~ msgstr "Èçáåðåòå íèâî íà ñèãóðíîñò"
-
#~ msgid "Select a graphics card"
#~ msgstr "Èçáåðåòå ãðàôè÷íà êàðòà"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index e778cf6b3..f8d39e598 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-08-21 17:14GMT\n"
"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
@@ -89,24 +89,24 @@ msgstr "Konfiguriši sve glave odvojeno"
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguriši samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"Vaša kartica može imati podršku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
"Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ msgstr ""
"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "RuÄno izaberi"
@@ -171,32 +171,32 @@ msgstr "Rezolucija"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Izlaz"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Izaberite rezoluciju i dubinu boja"
msgid "Graphics card: %s"
msgstr "GrafiÄka karta: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Odustani"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Mogu podesiti vaÅ¡ raÄunar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Koje je vrste vaša ISDN konekcija?"
@@ -485,7 +485,7 @@ msgstr "Kompaktno"
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video mod"
@@ -493,17 +493,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "ÄŒekanje prije bootanja default preslike"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Å ifra"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Å ifra (ponovo)"
@@ -537,14 +537,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``OgraniÄi opcije komandne linije'' je beskorisna bez Å¡ifre"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Molimo pokušajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Å ifre se ne poklapaju"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,148 +589,148 @@ msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke želite dodati?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-veliÄina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ukloni stavku"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Prazna labela nije dozvoljena"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -739,7 +739,7 @@ msgstr ""
"Sada možete navesti opcije za modul %s.\n"
"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"ime2=vrijednost2 ...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcije modula"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -777,15 +777,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti raÄunar,\n"
"ali ne bi trebalo izazvati nikakvu Å¡tetu."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -794,64 +794,64 @@ msgstr ""
"UÄitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ova šifra je previše jednostavna"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Molimo navedite korisniÄko ime"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "KorisniÄko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ovo korisniÄko ime je već dodano"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ovo korisniÄko ime je već dodano"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -860,32 +860,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "KorisniÄko ime"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -893,54 +893,54 @@ msgstr ""
"Mogu podesiti vaÅ¡ raÄunar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -949,11 +949,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -961,31 +961,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Dobrodošli u Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Loš"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "ParanoiÄan"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -995,7 +995,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti koriÅ¡ten za raÄunar koji je spojen na\n"
"druge ili na Internet. Nema pristupa Å¡ifrom."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1003,7 +1003,7 @@ msgstr ""
"Å ifra je sada aktivirana, ali koriÅ¡tenje za mrežni raÄunar joÅ¡ nije "
"preporuÄeno."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1011,7 +1011,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporuÄena za raÄunar koji će biti "
"korišten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1019,7 +1019,7 @@ msgstr ""
"Već postoje odreÄ‘ena ograniÄenja, a viÅ¡e automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1035,7 +1035,7 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaÅ¡ raÄunar samo klijent na "
"Internetu, možda je bolje da izaberete niži nivo."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1043,35 +1043,35 @@ msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite nivo sigurnosti"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1079,7 +1079,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1096,58 +1096,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "pomoć još nije implementirana.\n"
@@ -1199,106 +1199,106 @@ msgstr "Lilo/grub mod"
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistem instalacije"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Napravi novu particiju"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Greška"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Izaberite klasu instalacije"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1307,22 +1307,22 @@ msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na KonfiguriÅ¡i kako bi se pokrenuo Äarobnjak za podeÅ¡avanje."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguriši"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Spasi izbor paketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1331,44 +1331,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem mod"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ne, ne želim da se autologiram"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za Äitanje: %s"
@@ -1465,53 +1465,61 @@ msgstr "Austrija"
msgid "United States"
msgstr "SAD"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "TaÄka montiranja"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite brzinu cd pisaÄa"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "TaÄka montiranja: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1602,7 +1610,7 @@ msgstr "Prazno"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ostalo"
@@ -1746,7 +1754,7 @@ msgstr ""
"Backup tabela particija nema istu veliÄinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Upozorenje"
@@ -2305,7 +2313,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "KorisniÄko ime"
@@ -2319,23 +2327,23 @@ msgstr "NIS domen"
msgid "Search servers"
msgstr "Traži servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška u demontiranju %s: %s"
@@ -2421,48 +2429,111 @@ msgstr "Nemam Å¡ta da radim"
msgid "Error opening %s for writing: %s"
msgstr "Greška u otvaranju %s za pisanje: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Podešavanje CUPSa"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drajver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo saÄekajte... Primjenjujem konfiguraciju"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Molimo saÄekajte"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "X drajver"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Nepoznat model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2589,7 +2660,8 @@ msgid "/_Quit"
msgstr "Izlaz"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoć"
@@ -2609,76 +2681,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Prijavi grešku"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Pomoć/_O programu..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Ispitivanje"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Prepoznavanje hard diska"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Pogledaj hardware info"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Prikaži informacije"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Podešavanje miša"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detektovan na portu %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Molimo saÄekajte"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam Å¡tampaÄ \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
@@ -4563,7 +4636,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4588,7 +4661,7 @@ msgstr ""
"\n"
"Da li zaista želite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4597,20 +4670,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4618,12 +4691,12 @@ msgstr ""
"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "GreÅ¡ka u Äitanju datoteke %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4869,7 +4942,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4899,11 +4972,11 @@ msgstr "Klasa instalacije"
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Izbor pojedinaÄnih paketa"
@@ -4979,7 +5052,7 @@ msgstr "Automatski prikaži izabrane pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalacija"
@@ -4999,7 +5072,7 @@ msgstr "Minimalna instalacija"
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instaliram"
@@ -5026,17 +5099,17 @@ msgid "Installing package %s"
msgstr "Instaliram paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5053,16 +5126,16 @@ msgstr ""
"ROMa."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "DoÅ¡lo je do greÅ¡ke pri naruÄivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Došlo je do greške kod instaliranja paketa:"
@@ -5186,7 +5259,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5304,7 +5377,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5381,7 +5454,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatura"
@@ -5590,11 +5663,11 @@ msgstr "Ubacite disketu koja sadrži izbor paketa"
msgid "Selected size is larger than available space"
msgstr "Izabrana veliÄina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5603,19 +5676,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju želite"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporuÄeno)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5625,16 +5698,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, iskljuÄite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5643,21 +5716,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Post-instalacijsko podešavanje"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5731,7 +5804,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5751,160 +5824,160 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podešen na GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nema Å¡tampaÄa"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvuÄnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vaÅ¡u zvuÄnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvuÄna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Å tampaÄ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ZvuÄna kartica"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root Å¡ifru"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez Å¡ifre"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5920,21 +5993,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domena"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5966,19 +6039,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "PreskoÄi"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6004,7 +6077,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6018,29 +6091,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, pošto XFS traži veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju želite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6052,11 +6125,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vaÅ¡eg raÄunara"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6064,15 +6137,15 @@ msgstr ""
"Greška u instaliranju aboota, \n"
"da li da pokuÅ¡am nasilnu instalaciju Äak i ako to uniÅ¡ti prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6090,17 +6163,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6110,7 +6183,7 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6143,16 +6216,16 @@ msgstr ""
"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vaÅ¡eg ZvaniÄnog Mandrake Linux priruÄnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6166,15 +6239,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -6210,14 +6283,14 @@ msgstr "Napredno"
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Prethodni"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Sljedeći"
@@ -6667,7 +6740,7 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "Kružno montiranje %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logiÄke volumene\n"
@@ -6806,15 +6879,15 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miša"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Molimo testirajte miš"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miša,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
@@ -6851,11 +6924,11 @@ msgstr "Smanji stablo"
msgid "Toggle between flat and group sorted"
msgstr "PrekidaÄ izmeÄ‘u ravnog i grupnog sortiranja"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6865,23 +6938,19 @@ msgstr ""
"Neke konekcije koriste pptp, a vrlo rijetke koriste dhcp.\n"
"Ako ne znate, izaberite 'koristi pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "koristi dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "koristi pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "koristi pptp"
@@ -6983,7 +7052,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -6999,15 +7068,15 @@ msgstr ""
"Naziv vaÅ¡eg raÄunara bi trebao biti puno-kvalifikovani naziv,\n"
"kao Å¡to je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -7054,8 +7123,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Stara konfiguracija (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Podešavanje ISDNa"
@@ -7091,23 +7160,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Koju vrstu kartice imate?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ne znam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7121,19 +7195,19 @@ msgstr ""
"\n"
"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Prekid"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Nastavak"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Koja je vaša ISDN kartica ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7141,7 +7215,7 @@ msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nije pronađena nijedna ISDN PCI kartica. Molimo izaberite jednu na idućem "
@@ -7195,7 +7269,7 @@ msgstr "Prvi DNS server (opcionalno)"
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7203,7 +7277,7 @@ msgstr ""
"\n"
"Možete se diskonektovati ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7211,11 +7285,11 @@ msgstr ""
"\n"
"Možete prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7223,32 +7297,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podešavanje"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7267,12 +7341,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7283,7 +7357,7 @@ msgstr ""
"Kliknite na Ok da zadržite tu konfiguraciju ili Odustani za podešavanje vaše "
"Internet & Mrežne konekcije.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7295,72 +7369,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, iskljuÄite opciju.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podešavanje"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertni mod"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju želite podesiti"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7370,23 +7444,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mrežu"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7397,7 +7471,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7407,7 +7481,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7415,7 +7489,7 @@ msgstr ""
"Nakon Å¡to je to gotovo, preporuÄujemo da restartujete vaÅ¡ X\n"
"okoliÅ¡ kako bi se izbjegao problem sa promjenom naziva raÄunara."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7425,7 +7499,7 @@ msgstr ""
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, možete ponovo pokrenuti podešavanje"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7436,7 +7510,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7446,43 +7520,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj taÄkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Pokrenut na bootu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7494,42 +7568,53 @@ msgstr ""
"kao Å¡to je ``mojcomp.mojlab.mojafirma.com''.\n"
"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mrežne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba poÄinjati sa 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9024,7 +9109,7 @@ msgstr "Å tampam na Å¡tampaÄ \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9575,11 +9660,6 @@ msgstr ""
"Molimo popunite informacije o ftp proxiju\n"
"Ostavite polja praznim ako ne želite ftp proxy"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url treba poÄinjati sa 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9627,6 +9707,43 @@ msgstr "mkraid nije uspio (možda nedostaju raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nivo sigurnosti"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nivo sigurnosti"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Udaljena administracija"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Default)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Podešavanje nivoa sigurnosti"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Molimo saÄekajte, pripremam instalaciju"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvuÄni sistem (Advanced Linux Sound Architecture)"
@@ -9930,7 +10047,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistem"
@@ -10030,7 +10147,7 @@ msgstr "Spoji se na Internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10090,7 +10207,7 @@ msgstr "KorisniÄki okoliÅ¡"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10119,7 +10236,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Pretvorite vaÅ¡ raÄunar u moćan server sa svega nekoliko klikova miÅ¡em: Web "
@@ -10137,7 +10254,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10153,7 +10270,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
"'potrepštine', dostupni su u našoj online radnji"
@@ -10204,8 +10321,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10241,11 +10358,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
@@ -10293,16 +10410,6 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pomoć"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10355,53 +10462,68 @@ msgstr "Dodaj korisnika"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Podešavam..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Napredno podešavanje"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguriši"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nema pogodne disketne jedinice"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10550,13 +10672,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10565,41 +10687,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Bez Å¡ifre"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne mogu otvoriti %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10610,65 +10732,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup-uj korisniÄke datoteke..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10676,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10685,7 +10807,7 @@ msgstr ""
"lista datoteka poslana putem FTPa: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10696,39 +10818,39 @@ msgstr ""
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Greška tokom slanja pošte. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10736,26 +10858,26 @@ msgstr ""
"\n"
"Molimo ukljuÄite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "ZaobiÄ‘i kritiÄne datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10763,65 +10885,67 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje želite ukljuÄiti u vaÅ¡ backup."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Ne ukljuÄuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime raÄunara ili IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10830,68 +10954,68 @@ msgstr ""
"Molimo unesite direktorij za\n"
" smjeÅ¡taj backupa na ovom raÄunaru."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Molimo unesite vaš login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Molimo unesite vašu šifru"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Zapamti ovu Å¡ifru"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Molimo izaberite vaš CD prostor"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10899,36 +11023,36 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Izaberite datoteku"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10936,57 +11060,57 @@ msgstr ""
"Molim unesite maksimalnu veliÄinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tip"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "sedmiÄno"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mjeseÄno"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10994,7 +11118,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11002,7 +11126,7 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11010,71 +11134,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Å ta"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Više opcija"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Podešavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje želite backupovati"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Molim izaberite šta želite backupovati"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "RuÄno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11082,7 +11206,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11090,7 +11214,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11098,7 +11222,7 @@ msgstr ""
"\n"
"- korisniÄke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11106,7 +11230,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11115,32 +11239,32 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Uređaj miša: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11149,12 +11273,12 @@ msgstr ""
"\n"
"- spasi na FTPu na raÄunaru: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11163,7 +11287,7 @@ msgstr ""
"\n"
"- spasi na FTPu na raÄunaru: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11172,7 +11296,7 @@ msgstr ""
"\t\t korisniÄko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11180,19 +11304,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNe ukljuÄuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11201,41 +11325,41 @@ msgstr ""
"\n"
"- Demon (%s) ukljuÄuje :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Mrežu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11243,7 +11367,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11251,256 +11375,256 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Molimo iskljuÄite ili pobriÅ¡ite ga idući put."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspješno spašeni na %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je znaÄajan)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP konekcija"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sigurna konekcija"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smješteni backupi"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "PobriÅ¡i korisniÄke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host name"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Å ifra"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "KorisniÄko ime"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Hostname: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "RuÄno vraćanje"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11511,14 +11635,14 @@ msgstr ""
" vaš mail izvještaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11527,19 +11651,19 @@ msgstr ""
"Greška tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vašu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11547,59 +11671,59 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na ÄŒarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim saÄekajte."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup korisniÄkih datoteka"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Å aljem datoteke..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Napredno podešavanje"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -11660,7 +11784,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11674,7 +11798,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11752,7 +11876,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -11805,18 +11929,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11846,7 +11970,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11922,7 +12046,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11940,7 +12064,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11962,7 +12086,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12079,8 +12203,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Alati za konzolu"
@@ -12157,28 +12281,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post Uninstall"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
@@ -12280,10 +12404,6 @@ msgstr "ÄŒarobnjak..."
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo saÄekajte... Primjenjujem konfiguraciju"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektovan"
@@ -12404,7 +12524,7 @@ msgstr "Naziv modula"
msgid "Size"
msgstr "VeliÄina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12469,12 +12589,12 @@ msgstr "Ispis"
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12483,12 +12603,12 @@ msgstr ""
"Nema medija za ovaj uredjaj %s.\n"
"Molim ubacite ga."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu izvrsiti fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12972,158 +13092,158 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete Äarobnjak."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Radna grupa"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "particiji %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Obriši"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gotovo"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Dodaj modul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Dodaj novi Å¡tampaÄ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Ništa izabrano"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Prihvati korisnika"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Verzija: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Spasi izbor paketa"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Radna grupa"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nije konektovan"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13135,137 +13255,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Kreiranje boot diskete"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolucija"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Izaberi datoteku"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Share naziv"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Post-instalacijsko podešavanje"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Izlaz"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Sistem instalacije"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Podešavanje servisa"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Uređaj"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Uređaj"
+msgid "Save theme"
+msgstr "Sistem instalacije"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Izaberite monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Izbor modela Å¡tampaÄa"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Morate izabrati ili unijeti Å¡tampaÄ / ureÄ‘aj!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Prepoznajem uređaje ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13406,6 +13536,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
@@ -13435,11 +13572,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ne mogu da pokrenem live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13722,16 +13859,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13806,7 +13940,7 @@ msgstr "Instaliraj sistemske update"
msgid "Exit install"
msgstr "Napusti instalaciju"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
@@ -14053,6 +14187,21 @@ msgstr "Multimedija - Prženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Post-instalacijsko podešavanje"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy treba biti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Izlaz"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -14598,9 +14747,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Podešavanje nivoa sigurnosti"
-
#~ msgid "Select a graphics card"
#~ msgstr "Izaberite grafiÄku kartu"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 7e6f963e6..7bdc97c39 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatalà <traddrake@softcatala.org>\n"
"Language-Team: Catalan <traddrake@softcatala.org>\n"
@@ -93,24 +93,24 @@ msgstr "Configura tots els capçals independentment"
msgid "Use Xinerama extension"
msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura només la targeta \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,18 +120,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,12 +154,12 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instal·lació del controlador de pantalla"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalitzada"
@@ -179,32 +179,32 @@ msgstr "Resolució"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Surt"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -302,25 +302,25 @@ msgstr "Escolliu la resolució i la profunditat de color"
msgid "Graphics card: %s"
msgstr "Targeta gràfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancel·la"
@@ -398,11 +398,11 @@ msgstr "Servidor xFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Interficie gràfica a l'inici"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -412,7 +412,7 @@ msgstr ""
"l'interficie gràfica durant l'arrencada.\n"
"Voleu que XFree s'iniciï quan torneu a arrencar l'ordinador?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -424,7 +424,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Quin tipus de connexió XDSI teniu?"
@@ -497,7 +497,7 @@ msgstr "Compacte"
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mode de vídeo"
@@ -505,17 +505,17 @@ msgstr "Mode de vídeo"
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
@@ -551,14 +551,14 @@ msgstr ""
"L'opció ``Limita les opcions de la línia d'ordres'' no té cap ús sense una "
"contrasenya"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
@@ -600,7 +600,7 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -608,152 +608,152 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fet"
#
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predeterminat"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Elimina l'entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
#
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfícies %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sí"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Mira la informació del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'està instal·lant el programa de control per a la targeta de %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(mòdul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -763,7 +763,7 @@ msgstr ""
"Tingueu en compte que qualsevol adreça hauria de ser entrada amb el prefix "
"0x com '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -774,17 +774,17 @@ msgstr ""
"Les opcions estan en el format ``nom=valor nom2=valor2 ...''.\n"
"Per exemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcions del mòdul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -801,15 +801,15 @@ msgstr ""
"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, però això no causaria cap dany."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Exploració automàtica"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -818,65 +818,65 @@ msgstr ""
"Ha fallat la càrrega del mòdul %s.\n"
"Voleu tornar-ho a intentar amb altres paràmetres?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "accés a programes X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permet \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -885,33 +885,33 @@ msgstr ""
"Introduïu un usuari\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Entrada automàtica"
#
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -920,20 +920,20 @@ msgstr ""
"nom d'usuari.\n"
"Voleu activar aquesta característica?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
#
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -943,38 +943,38 @@ msgstr ""
"els llenguatges que volgueu instal·lar. Estaran disponibles\n"
"quan reinicieu el sistema després de que la instal·lació s'hagi completat."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tots"
#
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permet tots els usuaris"
#
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "No es comparteix"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -988,11 +988,11 @@ msgstr ""
"\n"
"\"Defecte\" permetre granularitat per usuari.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1000,32 +1000,32 @@ msgstr ""
"La compartició per usuari utilitza el grup \"ComparticióFitxers\".\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estàndard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alt"
#
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Més Alt"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1036,7 +1036,7 @@ msgstr ""
"d'utilitzar, però també molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1045,7 +1045,7 @@ msgstr ""
"segueix sense ser recomanable."
#
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1054,7 +1054,7 @@ msgstr ""
"s'utilitzarà per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1063,7 +1063,7 @@ msgstr ""
"automàtiques"
#
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1079,7 +1079,7 @@ msgstr ""
"un client d'internet, seria millor escollir un nivell menor"
#
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1087,38 +1087,38 @@ msgstr ""
"Això és similar al nivell anterior, però el sistema està completament tancat "
"i les característiques de seguretat estan al màxim."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Escolliu el nivell de seguretat"
#
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "El nivell de seguretat"
#
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Utilitzeu libsafe per als servidors"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una llibreria que el defensa contra els 'buffer overflow' i el atacs de "
"'format string'."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
#, fuzzy
msgid "Security Administrator (login or email)"
msgstr "Seguretat d'usuari (login o email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1131,7 +1131,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1156,13 +1156,13 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1170,45 +1170,45 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar-les"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prèvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarà automàticament dintre de %d segons."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el carregador d'arrencada a la partició %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "encara no s'ha implementat cap ajuda.\n"
@@ -1260,106 +1260,106 @@ msgstr "Mode LILO/Grub"
msgid "Yaboot mode"
msgstr "Mode Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instal·la el sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crea una nova partició"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Error"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiant %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Tipus d'instal·lació"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,22 @@ msgstr ""
"Actualment utilitzeu %s com a carregador d'arrencada\n"
"Feu click en Configura per a executar l'auxiliar de configuració."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Desa la selecció de paquets"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mode de sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "No, no vull l'entrada automàtica"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, vull l'entrada automàtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "D'acord"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "no es pot obrir /etc/inittab per a lectura: %s"
@@ -1533,25 +1533,33 @@ msgstr "Àustria"
msgid "United States"
msgstr "Estats Units"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Nou"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
@@ -1559,26 +1567,26 @@ msgid "Mount point"
msgstr "Punt de muntatge"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau entreu la velocitat d'escriptura del cd"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Servidor: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
@@ -1668,7 +1676,7 @@ msgstr "Buit"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Altres"
@@ -1820,7 +1828,7 @@ msgstr ""
"La còpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advertència"
@@ -2392,7 +2400,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Nom d'usuari"
@@ -2405,23 +2413,23 @@ msgstr "Domini"
msgid "Search servers"
msgstr "Cerca servidors"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "La partició a muntar %s en el directori %s ha fallat"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produït un error en desmuntar %s: %s"
@@ -2511,50 +2519,114 @@ msgstr "Res a fer"
msgid "Error opening %s for writing: %s"
msgstr "S'ha produït un error en obrir %s per escriure: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
#
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configuració de CUPS"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Programa de control"
#
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Ajuda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'està aplicant la configuració"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "Dispositiu X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Model desconegut"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2679,7 +2751,8 @@ msgid "/_Quit"
msgstr "/_Surt"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
@@ -2698,75 +2771,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Informeu d'un error"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "_Quant a..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Exploració automàtica"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecció del disc dur"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Mira la informació del maquinari"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mostra la informació"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Configura el ratolí"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detectat al port %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "S'està esborrant la impressora \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d segons"
@@ -4862,7 +4936,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "També heu de formatar %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4888,7 +4962,7 @@ msgstr ""
"\n"
"Voleu realment instal·lar aquests servidors?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4897,20 +4971,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no està formatat en FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4918,12 +4992,12 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instal·lació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produït un error en llegir el fitxer %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -5172,7 +5246,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -5204,11 +5278,11 @@ msgstr "Tipus d'instal·lació"
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instal·lació següents:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
@@ -5286,7 +5360,7 @@ msgstr "Mostra automàticament els paquets seleccionats"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instal·la"
@@ -5309,7 +5383,7 @@ msgstr "Instal·lació Mínima"
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instal·lar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "S'està instal·lant"
@@ -5336,17 +5410,17 @@ msgid "Installing package %s"
msgstr "S'està instal·lant el paquet %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepta"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5363,16 +5437,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "S'ha produït un error en ordenar els paquets:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "S'ha produït un error en instal·lar els paquets:"
@@ -5501,7 +5575,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5682,7 +5756,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclat"
@@ -5905,11 +5979,11 @@ msgid "Selected size is larger than available space"
msgstr "La mida seleccionada és superior a la disponible"
#
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipus d'instal·lació"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5918,19 +5992,19 @@ msgstr ""
"Escolliu la instal·lació mínima que voleu:"
#
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Amb X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Amb documentació bàsica (recomenada!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instal·lació realment mínima (especialment no urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5940,16 +6014,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancel·la.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "S'està preparant la instal·lació"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5958,21 +6032,21 @@ msgstr ""
"S'està instal·lant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuració després de la instal·lació"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu el disquet d'Actualització de Mòduls a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -6039,7 +6113,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -6061,172 +6135,172 @@ msgstr ""
"Voleu instal·lar aquestes actualitzacions ?"
#
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'està contactant amb el servidor Mandrake Linux per obtenir la llista de "
"rèpliques disponibles..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'està contactant amb la rèplica per a obtenir la llista dels paquets "
"disponibles..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
#
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador està regulat per GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de la hora (usant NTP)"
#
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Cap impressora"
#
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Teniu una targeta de so ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Executeu \"sndconfig\" després de la instal·lació per a configurar la "
"targeta de so"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
"instal·lació"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zona horària"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Aconsegueix les Fons de Windows"
#
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Impressores local"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa curta (ha de tenir com a mínim %d caràcters)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
#
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
#
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Servidor LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autenticació NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6243,21 +6317,21 @@ msgid ""
msgstr ""
#
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nom de domini"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6287,19 +6361,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6327,7 +6401,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6341,30 +6415,30 @@ msgstr ""
"creant un disquet d'arrencada per un de 1.44 Mb molt probablement fallarà,\n"
"perquè XFS necessita una unitat molt gran)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "S'està creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "S'està preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6376,11 +6450,11 @@ msgstr ""
"La instal·lació continuarà, però haureu\n"
"d'utilitzar el BootX per a arrencar el vostre ordinador"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6390,17 +6464,17 @@ msgstr ""
"primera partició?"
#
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instal·lant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instal·lació del carregador d'arrencada. S'ha produït l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6419,17 +6493,17 @@ msgstr ""
" Després, escriviu: shut-down\n"
"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "S'està creant el diquet d'instal·lació automàtica"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6439,7 +6513,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6472,15 +6546,15 @@ msgstr ""
"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instal·lació automàtica"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6495,15 +6569,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la instal·lació.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automàtica"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -6540,15 +6614,15 @@ msgstr "Avançat"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Següent"
@@ -7011,7 +7085,7 @@ msgstr "Tecla de \"Windows\" Dreta"
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lògics\n"
@@ -7151,15 +7225,15 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
@@ -7196,11 +7270,11 @@ msgstr "Redueix l'arbre"
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7210,23 +7284,19 @@ msgstr ""
"Algunes connexions utilitzen pptp, unes poques utilitzen dhcp.\n"
"Si no ho sabeu, escolliu 'utilitza pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "utilitza dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "utilitza pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "utilitza pptp"
@@ -7332,7 +7402,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "S'està configurant la xarxa"
@@ -7349,15 +7419,15 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Auxiliar de configuració de xarxa"
@@ -7406,8 +7476,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Antiga configuració (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuració de l'XDSI"
@@ -7447,23 +7517,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Quin tipus de targeta teniu?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "No sé"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7477,19 +7552,19 @@ msgstr ""
"\n"
"Si teniu una targeta PCMCIA, us en cal saber l'\"irq\" i l'\"io\".\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Interromp"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continua"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7497,7 +7572,7 @@ msgstr ""
"He detectat una targeta PCI XDSI, però no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla següent."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
@@ -7552,7 +7627,7 @@ msgstr "Primer servidor DNS (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7560,7 +7635,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7568,11 +7643,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7580,33 +7655,33 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Desconnecta"
#
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configura la connexió"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Connexió i configuració d'Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ara configurarem la connexió %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7625,12 +7700,12 @@ msgstr ""
"\n"
"Premeu D'acord per a continuar."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7642,7 +7717,7 @@ msgstr ""
"Feu clic a D'acord per conservar la configuració, o a Cancel·la per tornar a "
"configurar la connexió a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7655,75 +7730,75 @@ msgstr ""
"Si no voleu utilitzar la detecció automàtica, desactiveu el quadre de "
"verificació.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Utilitza la detecció automàtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mode expert"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Connexió normal per mòdem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Connexió XDSI"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
#
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Connexió ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfície %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Connexió de cable"
#
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Connexió de cable detectada"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Connexió LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
#
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Escolliu la connexió per voleu configurar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7734,23 +7809,23 @@ msgstr ""
"\n"
#
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Connexió a Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexió en arrencar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "La xarxa necessita ésser reiniciada"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7761,7 +7836,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7771,7 +7846,7 @@ msgstr ""
"\n"
"Ara s'aplicarà la configuració al sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7779,7 +7854,7 @@ msgstr ""
"Després d'això, és recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7789,7 +7864,7 @@ msgstr ""
"Testegeu la connexió via net_monitor o mcc. Si la connexió no funciona "
"correctament, voldreu tornar a fer la configuració."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7800,7 +7875,7 @@ msgstr ""
"Només cal que accepteu per a mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7810,43 +7885,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adreça IP amb notació decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "S'està configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Adreça IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Submàscara de la xarxa"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automàtic"
#
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Inicia en l'arrencada"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7858,42 +7933,54 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreça IP de la passarel·la, si en teniu una"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passarel·la(Gateway) (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositiu de la passarel·la"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Vigila id de la targera de xarxa(d'utilitat per a laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "El proxy ha de ser ftp://..."
+#
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "La Url hauría de començar amb 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9493,7 +9580,7 @@ msgstr "S'està imprimint en la impressora \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -10097,12 +10184,6 @@ msgstr ""
"Per favor, entreu les informacions del proxy ftp\n"
"Deixeu en blanc si no voleu un proxy ftp"
-#
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "La Url hauría de començar amb 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -10154,6 +10235,45 @@ msgstr "mkraid ha fallat (potser manquen eines del RAID(raidtools)?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "El nivell de seguretat"
+
+#
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "El nivell de seguretat"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Seguretat d'usuari (login o email)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Predeterminat)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "S'està establint el nivell de seguretat"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Si us plau, espereu, s'està preparant la instal·lació..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Llançar el sistema de so ALSA (Advanced Linux Sound Architecture)"
@@ -10474,7 +10594,7 @@ msgid "File sharing"
msgstr "Compartició de fitxers"
#
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10576,7 +10696,7 @@ msgstr "Connecta't a internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10636,7 +10756,7 @@ msgstr "Interfícies d'usuari"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10666,7 +10786,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Transformeu el vostre ordinador en un poderós servidor amb només uns quants "
@@ -10685,7 +10805,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10701,7 +10821,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Trobareu tota la gama de solucions Linux, així com ofertes especials en "
"productes en la nostra botiga online"
@@ -10753,8 +10873,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#
@@ -10792,11 +10912,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'està instal·lant els paquets..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
@@ -10847,17 +10967,6 @@ msgstr "Afegeix un usuari"
msgid "Add/Del Clients"
msgstr "Client DHCP"
-#
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Ajuda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10912,53 +11021,69 @@ msgstr "Afegeix un usuari"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "Client DHCP"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "S'està configurant..."
-#: ../../standalone/drakTermServ_.c:870
+#
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configuració Avançada"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "torna a configurar"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -11114,12 +11239,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Progrés total"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -11128,41 +11253,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "No es pot obrir %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -11173,69 +11298,69 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Còpia de seguretat de fitxers del sistema..."
#
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Els fitxers de la còpia de seguretat del disc dur..."
#
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Còpia de seguretat de fitxers d'usuari..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progrès de la còpia de seguretat en disc dur..."
#
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Els fitxers de còpia de seguretat d'altres fitxers..."
#
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Utilitzar la cinta per a fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11243,7 +11368,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11252,7 +11377,7 @@ msgstr ""
"llista de fitxers enviada per FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -11262,14 +11387,14 @@ msgstr ""
" problema en la connexió FTP: No ha estat possible enviar els fitxers de la "
"còpia de seguretat per FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -11277,25 +11402,25 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " S'ha produït un error en enviar el correu electrònic. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecció de fitxers"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccioneu els fitxers i directoris i feu clic en 'Afegir'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11303,26 +11428,26 @@ msgstr ""
"\n"
"Per favor, comproveu totes les opcions que necessiteu.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Aquestes opcions poden fer còpia de seguretat i restaurar els fitxers en el "
"directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Fer còpia de seguretat dels fitxers del Sistema. ( directori /etc ) "
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilitzar còpia incremental (no reemplaça còpies antigues)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incloure fitxers crítics (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -11331,71 +11456,73 @@ msgstr ""
" del directori /etc."
#
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Si us plau, escolliu tots els usuaris que voleu incloure en la còpia de "
"seguretat."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "No incloure la memòria cau del navegador"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilitza còpies incrementals (no reemplaça antigues còpies)"
#
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Elimina el seleccionat"
#
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
#
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Usuaris"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Utilitza connexió FTP per fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Transferir"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Si us plau, proporcioneu el nom de l'ordinador o la IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -11405,29 +11532,29 @@ msgstr ""
" posar la còpia de seguretat d'aquest ordinador central."
#
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Si us plau, entreu la entrada"
#
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Si us plau, entreu la contrasenya"
#
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Recordar aquesta contrasenya"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Utilitzar CD/DVDROM per fer la còpia"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11435,44 +11562,44 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Si us plau, escolliu l'espai del CD"
#
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11480,37 +11607,37 @@ msgstr ""
"Si us plau, entreu el nom del dispositiu del CD Writer\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Utilitzar la cinta per a fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
"Si us plau, subministreu el nom del dispositiu a utilitzar per fer la còpia"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11519,61 +11646,61 @@ msgstr ""
" permesa per a Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Utilitzar la cuota de disc per als fitxers de còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Xarxa"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disc Dur / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipus"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "diària"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "setmanal"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mensual"
#
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Utilitza dimoni"
#
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11582,7 +11709,7 @@ msgstr ""
"de temps entre cada còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11590,7 +11717,7 @@ msgstr ""
"Si us plau, trieu el\n"
"medi per a la còpia."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11599,80 +11726,80 @@ msgid ""
msgstr ""
"Si us plau assegureu-vos que el dimoni cron està inclòs en els serveis."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Envieu informe per correu electrònic després de cada còpia a :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Que"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "On"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Quant"
#
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Més opcions"
#
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configuració de Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu on voleu fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "en el Disc Dur"
#
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "per la Xarxa"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu de què voleu fer la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Còpia del seguretat del sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Còpia de seguretat dels usuaris"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Seleccioneu l'usuari manualment"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11680,7 +11807,7 @@ msgstr ""
"\n"
"Fonts de la còpia: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11688,7 +11815,7 @@ msgstr ""
"\n"
"- Fitxers del Sistema:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11696,7 +11823,7 @@ msgstr ""
"\n"
"- Fitxers d'Usuari:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11704,7 +11831,7 @@ msgstr ""
"\n"
"- Altres Fitxers:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11713,32 +11840,32 @@ msgstr ""
"\n"
"- Desar-ho en el Disc Dur en el camí: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11747,12 +11874,12 @@ msgstr ""
"\n"
"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11761,7 +11888,7 @@ msgstr ""
"\n"
"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11771,7 +11898,7 @@ msgstr ""
"\t\t en el camí: %s \n"
#
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11779,19 +11906,19 @@ msgstr ""
"\n"
"- Opcions:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNo incloure Fitxers del Sistema\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLes còpies de seguretat utilitzen tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tLes còpies de seguretat utilitzen tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11800,39 +11927,39 @@ msgstr ""
"\n"
"- Dimoni (%s) inclòs :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t.Disc dur.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Xarxa per FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Xarxa per SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Xarxa per webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Cap configuració, si us plau cliqueu en Auxiliar o Avançat.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11840,7 +11967,7 @@ msgstr ""
"Llista de dades per a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11849,142 +11976,142 @@ msgstr ""
"\n"
#
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Si us plau, deseleccioneu o esborreu-ho la pròxima vegada."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Els fitxers de la còpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Totes les dades seleccionades han estat "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Restaurades Correctament en %s "
#
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Configuració de Restauració "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "D'acord per a restaurar els altres fitxers."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Llista d'usuaris per a restaurar (només és important la data més recent per "
"usuari)"
#
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Abans còpia de seguretat de fitxers del sistema:"
#
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu la data a restaurar"
#
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Utilitzar el Disc Dur per a fer la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Connexió FTP"
#
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Connexió Segura"
#
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Si us plau, entreu el directori on les còpies es guarden"
#
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu un altre medi des del qual restaurar"
#
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Altres Medis"
#
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restaura el Sistema"
#
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "seleccioneu camí al qual restaurar ( en comptes de / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Fer nova còpia de seguretat abans de restaurar (només per les còpies "
"incrementals.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Esborrar directoris d'usuaris abans de restaurar."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Elimina el seleccionat"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Els fitxers de la còpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11992,17 +12119,17 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -12010,119 +12137,119 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Restaura la taula de particions"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nom de l'ordinador central"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Contrasenya"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nom de l'ordinador central: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Restaurar totes les còpies"
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restauració Personalitzada"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Restaura la taula de particions"
#
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaura els Usuaris"
#
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Anterior"
#
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Desa"
#
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Construeix la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaura"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -12133,14 +12260,14 @@ msgstr ""
" el vostre missatge d'informe no ha estat enviat\n"
" Si us plau configureu el sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -12148,19 +12275,19 @@ msgstr ""
"Error durant l'enviament del fitxer via FTP.\n"
" Si us plau corregiu la configuració de FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Si us plau, seleccioneu les dades per a restaurar..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Si us plau seleccioneu el medi per a la còpia..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Si us plau seleccioneu les dades per fer la còpia..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -12168,68 +12295,68 @@ msgstr ""
"No s'ha trobat el fitxer de configuració \n"
"si us plau feu clic en Auxiliar o Avançat."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Sota Desenvolupament ... si us plau espereu."
#
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Còpia de seguretat dels fitxers del sistema"
#
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Còpia de seguretat de fitxers d'usuari"
#
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Còpia de seguretat d'altres fitxers"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Progrés Total"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "fitxers que s'estan enviant per FTP"
#
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Enviant els fitxers..."
#
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Fes la Còpia de Seguretat des del fitxer de configuració"
#
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Veure la Configuració de la Còpia de Seguretat"
#
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Auxiliar de Configuració"
#
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configuració Avançada"
#
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Fes Còpia de Seguretat"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -12290,7 +12417,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12304,7 +12431,7 @@ msgstr ""
" definir myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12382,7 +12509,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -12435,18 +12562,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft per DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12476,7 +12603,7 @@ msgstr ""
" amb el programa; si no és així, escriuviu a la Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12552,7 +12679,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12571,7 +12698,7 @@ msgstr ""
"dur abans d'enviar-la al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12593,7 +12720,7 @@ msgstr ""
"dades. És important de tenir cura i no modificar a mà els \n"
"fitxers de còpia de seguretat.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12710,8 +12837,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Eines de consola"
@@ -12784,7 +12911,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12792,22 +12919,22 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
#
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post Desinstal·lació"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Les instàncies estaran disponibles després d'instal·lar a %s"
@@ -12909,10 +13036,6 @@ msgstr "Auxiliar..."
msgid "Apply"
msgstr "Aplica"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'està aplicant la configuració"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connectat"
@@ -13036,7 +13159,7 @@ msgstr "Nom del mòdul"
msgid "Size"
msgstr "Mida"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -13101,12 +13224,12 @@ msgstr "Sortida"
msgid "Build the disk"
msgstr "Munta el disc"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -13115,12 +13238,12 @@ msgstr ""
"No hi ha cap suport al dispositiu %s.\n"
"Si us plau, inseriu-ne un."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "No es pot bifurcar: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13636,54 +13759,54 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grup de treball"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partició %s"
#
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Usuari"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Suprimeix"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fet"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Afegeix un mòdul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -13691,107 +13814,107 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Afegiu una impressora"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Deselecciona Tot"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
#
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Elimina el seleccionat"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Accepta l'usuari"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versió: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Utilitza la detecció automàtica"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Utilitza la detecció automàtica"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Desa la selecció de paquets"
#
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Usuari"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grup de treball"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "No s'ha detectat cap targeta de TV!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -13813,141 +13936,151 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creació de discs d'arrencada"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolució"
#
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Trieu un fitxer"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nom de compartició"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Configuració després de la instal·lació"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Surt"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instal·la el sistema"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Configura els serveis"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositiu"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositiu"
+msgid "Save theme"
+msgstr "Instal·la el sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Escolliu un monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
#
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Selecció del model d'impressora"
#
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
#
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "S'estan detectant els dispositius..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -14106,6 +14239,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
@@ -14135,13 +14275,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "No es pot iniciar l'actualització en directe !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió "
"actual"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -14435,16 +14575,13 @@ msgstr ""
"Ara podeu scannejar documents utilitzant ``XSane'' des de Multimedia/Gràfics "
"en el menú d'aplicacions."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -14520,7 +14657,7 @@ msgstr "Instal·la actualitzacions del sistema"
msgid "Exit install"
msgstr "Surt de la instal·lació"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14770,6 +14907,21 @@ msgstr "Multimèdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació científica de treball"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuració després de la instal·lació"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "El proxy ha de ser ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Surt"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -15454,9 +15606,6 @@ msgstr "Estació científica de treball"
#~ msgid "Package List to Install"
#~ msgstr "Llista de Paquets a instal·lar"
-#~ msgid "Setting security level"
-#~ msgstr "S'està establint el nivell de seguretat"
-
#
#~ msgid "Setting security user"
#~ msgstr "S'està establint l'usuari de seguretat"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 7be85d319..f249a041a 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 22:03-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
"Language-Team: Cymraeg <cy@li.org>\n"
@@ -89,24 +89,24 @@ msgstr "Ffurfweddu pob pen yn annibynnol"
msgid "Use Xinerama extension"
msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree: %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"mewn 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"mewn 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Arddull"
@@ -175,32 +175,32 @@ msgstr "Cydraniad"
msgid "Test"
msgstr "Prawf"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Gadael"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -296,25 +296,25 @@ msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Diddymu"
@@ -390,11 +390,11 @@ msgstr "Gwasanaethwr XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Rhyngwyneb graffigol wrth gychwyn"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
"Hoffech chi i XFree ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -423,7 +423,7 @@ msgstr ""
"\n"
"Ydy'r nodwedd hon gennych?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Pa norm mae eich teledu'n ei ddefnyddio?"
@@ -495,7 +495,7 @@ msgstr "Cryno"
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modd fideo"
@@ -503,17 +503,17 @@ msgstr "Modd fideo"
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
@@ -548,14 +548,14 @@ msgid ""
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
@@ -597,7 +597,7 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -605,148 +605,148 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Rhagosodedig"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Maint intrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Tynnu cofnod"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Nid yw label gwag yn cael ei ganiatáu"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych unrhyw rhyngwyneb %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Gweler gwybodaeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
"e.e, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Dewisiadau modiwl:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -797,15 +797,15 @@ msgstr ""
"unrhyw\n"
"ddifrod."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -814,62 +814,62 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -878,32 +878,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -912,19 +912,19 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -934,37 +934,37 @@ msgstr ""
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ailgychwyn eich system."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi ei "
"ddefnyddio"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -978,11 +978,11 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +990,31 @@ msgstr ""
"Mae rhannu yn ôl defnyddiwr yn defnyddio grwp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1024,7 +1024,7 @@ msgstr ""
"ddefnyddio ond mae'n sensitif iawn: rhaid peidio defnyddio'r peiriant i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1032,7 +1032,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymhellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1040,7 +1040,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1048,7 +1048,7 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1064,7 +1064,7 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os maei cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1072,33 +1072,33 @@ msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig ac "
"mae nodweddion diogelwch ar eu huchaf."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Dewisiadau Sylfaenol DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Dewiswch lefel diogelwch"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Gweinyddwr Diogelwch (mewngfnodi neu e-bost)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1109,7 +1109,7 @@ msgstr ""
"arall)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1126,58 +1126,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'c' am y llinell orchymyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Bwrdd Gwaith"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar raniad %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nid oes cymorth ar gael eto.\n"
@@ -1229,63 +1229,63 @@ msgstr "Modd Lilo/grub"
msgid "Yaboot mode"
msgstr "Modd Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Gosod themâu"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Dangos thema yn y consol"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Creu thema newydd"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Cadw %s i %s.old wrth gefn"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Gwall"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "methu cadw neges lilo wrth gefn"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Copïo %s i %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "methu newid neges lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Heb ganfod neges lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Ysgrifennu %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1293,17 +1293,17 @@ msgstr ""
"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
"Heb ganfod y ffeil"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1312,24 +1312,24 @@ msgstr ""
"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
"LiLo'n llawn."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Ail gychwyh 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Nodyn"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Themâu LiLo a Croeso Cychwyn wedi eu gosod yn llwyddiannus"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Methodd gosod y thema!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1338,21 +1338,21 @@ msgstr ""
"Rydych yn defnyddio %s fel rheolwr cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ffurfweddu"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Dewis sgrin croeso"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Themâu"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1366,44 +1366,44 @@ msgstr ""
"mae modd eu dewis\n"
"ar wahân"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Sgrin Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Croeso Cychwyn"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modd system"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn yr amgylchedd graffigol wrth gychwyn eich system"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, bwrdd gwaith)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Iawn"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
@@ -1500,50 +1500,58 @@ msgstr "Awstria"
msgid "United States"
msgstr "Yr Unol Daleithiau"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Newydd"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Gwasanaethwr"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Rhowch URL gwasanaethwr WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Gwasanaethwr:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
@@ -1631,7 +1639,7 @@ msgstr "Gwag"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Arall"
@@ -1772,7 +1780,7 @@ msgstr ""
"Nid yw'r tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Rhybudd"
@@ -2335,7 +2343,7 @@ msgstr ""
"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
"gwesteiwr."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Enw defnyddiwr"
@@ -2347,23 +2355,23 @@ msgstr "Parth"
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "methodd fformatio %s o %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng nghyfeiriadur %s"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2449,46 +2457,109 @@ msgstr "Dim i'w wneud"
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Dim gyrwyr eraill"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr "Nid oes gyrrwr OSS/ALSA hysbys ar gyfer eich cerdyn sain (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Furfweddiad sain"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
"sain (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Gyrrwr:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Cymorth"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Dim gyrrwr hysbys"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Gyrrwr anhysbys"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2616,7 +2687,8 @@ msgid "/_Quit"
msgstr "/_Gadael"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Cymorth"
@@ -2637,14 +2709,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Adrodd ar Wallau"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Ynghylch..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Ynghylch Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2652,56 +2728,53 @@ msgstr ""
"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
"Fersiwn:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Awdur"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 fersiwn "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Caledwedd canfyddwyd"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Gwybodaeth"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Modd ffurfweddu"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Rhedeg offeryn ffurfweddu"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Canfod ar waith"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Rhedeg \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "cynradd"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "eilradd"
@@ -4659,7 +4732,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Rhaid fformatio %s hefyd"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4682,7 +4755,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4696,20 +4769,20 @@ msgstr ""
"\n"
"Ydych chi am dynnu'r pecynnau hyn?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb barth NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4717,12 +4790,12 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4964,7 +5037,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4994,11 +5067,11 @@ msgstr "Gosod Dosbarth"
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
@@ -5074,7 +5147,7 @@ msgstr "Dangoswch y pecynnau dewis awtomatig"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Gosodiad"
@@ -5094,7 +5167,7 @@ msgstr "Gosodiad lleiaf"
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Gosod"
@@ -5121,17 +5194,17 @@ msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Derbyn"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5146,16 +5219,16 @@ msgstr ""
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -5281,7 +5354,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5471,7 +5544,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ydych chi'n siwr eich bod am wrthod y drwydded?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Allweddell"
@@ -5680,11 +5753,11 @@ msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5692,19 +5765,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5714,16 +5787,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5732,21 +5805,21 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ffurfweddiad ôl osod"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5821,7 +5894,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5840,155 +5913,155 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6015,19 +6088,19 @@ msgstr ""
"system.\n"
"Bydd y gorchymyn 'wbinfo -t' yn gwirio a yw eich cyfrinachau dilysu'n addas."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Dilysu Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6058,19 +6131,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6095,7 +6168,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6109,28 +6182,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6144,11 +6217,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6156,15 +6229,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6182,17 +6255,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6202,7 +6275,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6234,15 +6307,15 @@ msgstr ""
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6257,15 +6330,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -6301,14 +6374,14 @@ msgstr "Uwch"
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Cynt"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Nesaf"
@@ -6754,7 +6827,7 @@ msgstr "Bysell \"Windows\" de"
msgid "Circular mounts %s\n"
msgstr "Gosodiadau cylch %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
@@ -6891,15 +6964,15 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
@@ -6935,11 +7008,11 @@ msgstr "Cau'r goeden"
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Cysylltu â'r We"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6949,23 +7022,19 @@ msgstr ""
"Mae rhai cysylltiadau'n defnyddio pptp, a rhai dhcp.\n"
"Os nad ydych yn gwybod pa un, dewiswch pppoe."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "usb Alcatel Speedtouch"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "defnyddiwch dhccp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "defnyddiwch pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "defnyddiwch pptp"
@@ -7066,7 +7135,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -7082,15 +7151,15 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Enw gwesteiwr"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
@@ -7138,8 +7207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Hen ffurfweddiad (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Ffurfweddiad ISDN"
@@ -7175,23 +7244,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Pa fath o gerdyn sydd gennych?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Dim syniad"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7204,19 +7278,19 @@ msgstr ""
"\n"
"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Peidio"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Parhau"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Pa un yw eich cerdyn IDSN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7224,7 +7298,7 @@ msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
"cerdyn PCI ar y sgrin nesaf."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrin nesaf."
@@ -7276,7 +7350,7 @@ msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7284,7 +7358,7 @@ msgstr ""
"\n"
"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7292,11 +7366,11 @@ msgstr ""
"\n"
"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Rydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7304,32 +7378,32 @@ msgstr ""
"\n"
"Medrwch gysylltu â'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Nid ydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Cysylltu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Dadgysylltu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Ffurfweddu'r gysylltiad"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Cysylltiad â'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7348,12 +7422,12 @@ msgstr ""
"\n"
"Pwyswch Iawn i barhau."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7365,7 +7439,7 @@ msgstr ""
"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7377,72 +7451,72 @@ msgstr ""
"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modd Uwch"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Cysylltiad modem arferol"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "canfyddwyd ar borth %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Cysylltiad ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "canfyddwyd ar rhyngwyneb %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "canfyddwyd cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "cysylltiad LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "cerdyn ethernet wedi ei ganfod"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7452,23 +7526,23 @@ msgstr ""
"Dewiswch ba un rydych am ei ddefnyddio.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Cysylltiad â'r Rhyngrwyd"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ffurfweddiad y rhwydwaith"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Rhaid ail gychwyn y rhwydwaith"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7479,7 +7553,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7489,7 +7563,7 @@ msgstr ""
"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7498,7 +7572,7 @@ msgstr ""
"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
"."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7508,7 +7582,7 @@ msgstr ""
"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7520,7 +7594,7 @@ msgstr ""
"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7530,42 +7604,42 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Cychwyn y peiriant"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7577,42 +7651,52 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Dylai rhif porth fod yn ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9213,7 +9297,7 @@ msgstr "Argraffu ar argraffydd \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9780,10 +9864,6 @@ msgstr ""
"Llanwxh y gwybodaeth dirprwy ftp\n"
"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9831,6 +9911,41 @@ msgstr "methodd mkraid (efallai bod raidtools ar goll)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Lefel diogelwch:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Lefel diogelwch"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Gweinyddwr Diogelwch:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "(Rhagosodedig)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Dewiswch lefel diogelwch"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Arhoswch, paratoi'r gosodiad"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernïaeth Sain Linux Uwch)"
@@ -10146,7 +10261,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10238,7 +10353,7 @@ msgstr "Cael y mwyaf o'r Rhyngrwyd"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10295,7 +10410,7 @@ msgstr "Rhyngwynebau defnyddwyr"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10321,7 +10436,7 @@ msgstr "Trowch eich peiriant i fod yn wasanaethwr dibynadwy"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
@@ -10341,7 +10456,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Mae'r mur cadarn hwn yn cynnwys nodwedd rhwydwaith i'ch galluogi i gyflawni "
@@ -10358,7 +10473,7 @@ msgstr "Y siop MandrakeSoft swyddogol"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
@@ -10412,8 +10527,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10450,11 +10565,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
@@ -10495,16 +10610,6 @@ msgstr "Ychwanegu/Diddymu Defnyddwyr"
msgid "Add/Del Clients"
msgstr "Ychwanegu/Dileu Cleientiaid"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Cymorth"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disg Meddal Cychwyn"
@@ -10553,48 +10658,64 @@ msgstr "Pob Defnyddiwr-->"
msgid "<-- Del User"
msgstr "<-- Dileu Defndyddiwr"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Delweddau Cychwyn y Rhwyd"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Ychwanegu Cleient -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<--Diddymu Cleient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Ffurfweddu dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Ffurfweddiad Uwch"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Ysgrifenu ffurfweddu"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Mewnosodwch ddisg meddal:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Maethu cael mynediad i'r disg meddal!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Mae modd tynnu'r disg meddal nawr"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Does dim gyrrwr disg meddal ar gael!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "%s yw'r delwedd ISO etherboot"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Aeth rhywbeth o'i le! - ydy mkisofs wedi ei osod?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Mae angen creu /etc/dhcpd.conf yn gyntaf"
@@ -10738,12 +10859,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10756,41 +10877,41 @@ msgstr ""
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Bydd hyn yn cymryd amser i gynhyrchu'r allweddi"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "GWALL; methu taenu %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Dim cais am gyfrinair ar %s ym mhorth %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Cyfrinair gwallus yn %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Gwrthodwyd caniatâd wrth drosglwyddo %s i %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Methu canfod %s ar %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "Nid yw %s yn ymateb"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10807,64 +10928,64 @@ msgstr ""
"ssh -i %s %s\\@%s\n"
"heb dderbyn cais am gyfrinair"
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Mae safle pell WebDAV eisioes wedi cydamseru!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "Method trosglwyddiad WebDaAV!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Dim CDR/DVDR yn y gyrrwr!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Nid yw'n ymddangos fel cyfrwng cofnodi."
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Nid cyfrwng dileuadwy!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Bydd yn cymryd ychydig o amser i ddileu'r cyfrwng."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Anhawsterau caniatâd wrth gael mynediad i'r CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Dim tâp yn %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Dim newid i'r ffeil wrth gefn"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10875,7 +10996,7 @@ msgstr ""
"Gweithgaredd Drakbackup drwy %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10884,7 +11005,7 @@ msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10894,7 +11015,7 @@ msgstr ""
" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
"drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10904,7 +11025,7 @@ msgstr ""
"Gweithgaredd Drakbackup drwy CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10914,24 +11035,24 @@ msgstr ""
"Gweithgaredd Drakbackup drwy dâp:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Methu creu catalog!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10939,26 +11060,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10966,43 +11087,43 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad rhwydwaith i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Dull Rhwyd:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Defnyddiwch Expect ar gyfer SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -11010,7 +11131,7 @@ msgstr ""
"Creu/Trosglwyddo\n"
"allweddi wrth gefn ar gyfer SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -11018,15 +11139,18 @@ msgstr ""
"Trosglwyddo \n"
"Nawr"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Allewddi yn eu lle yn barod"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -11034,27 +11158,27 @@ msgstr ""
"Rhowch y cyfeiriadur(neu fodiwl) i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Angen enw gwesteiwr, enw defnyddiwr a chyfrinair"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11064,35 +11188,35 @@ msgstr ""
"(Gwasgwch Enter i drosglwyddo'r gosodiadau i feysydd eraill.\n"
"Nid yw'r maes hwn yn angenrheidiol, dim ond offeryn i lanw'r ffurflen.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Dewiswch maint eich gofod CD/DVD"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Gwiriwch os ydych yn defnyddio CD amlsesiwn"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Gwiriwch os ydych am ddileu eich cyfrwng RW(Sesiwn 1af)"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr "Dileu Nawr"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11100,33 +11224,33 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Heb ddiffinio dyfais CD!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
"Gwiriwch os ydych am ddefnyddio'r dyfais nad yw'n mynd nôl i'e ddechrau."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "Gwiriwch os ydych am ddileu eich tâp cyn y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr "Gwiriwch os ydych am dynnu eich tâp ar ôl y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11134,55 +11258,55 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Tâp"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11190,7 +11314,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11198,7 +11322,7 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11208,71 +11332,71 @@ msgstr ""
"\n"
"Sylwer bod yr holl gyfrwn \"gwe\" yn defnyddio'r ddisg caled."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "ar CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "ar Ddyfais Tâp"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11280,7 +11404,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11288,7 +11412,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11296,7 +11420,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11304,7 +11428,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11313,7 +11437,7 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11321,7 +11445,7 @@ msgstr ""
"\n"
"- Dileu ffeiliau tar y disg caled wedi'r cadw wrth gefn.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11329,20 +11453,20 @@ msgstr ""
"\n"
"-Llosgi i CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr "(aml-sesiwn)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11351,12 +11475,12 @@ msgstr ""
"\n"
"- Cadw i dâp ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tDileu=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11365,7 +11489,7 @@ msgstr ""
"\n"
"- Cadw drwy %s ar westeiwr: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11374,7 +11498,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11382,19 +11506,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11403,39 +11527,39 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tâp \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Rhwydwaith drwy rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Rhwydwaith drwy webday.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11443,7 +11567,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11451,104 +11575,104 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Cysylltiad FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -11556,7 +11680,7 @@ msgstr ""
"Adfer Cofnod\n"
"Catalog Ddewiswyd"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11564,7 +11688,7 @@ msgstr ""
"Adfer y Dewis\n"
"Ffeiliau"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11572,12 +11696,12 @@ msgstr ""
"Newid\n"
"Llwybr Adfer"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11586,16 +11710,16 @@ msgstr ""
"Rhowch yr CD gyda label cynnwys%s\n"
"yn yr gyrrwr CD o dan bwynt gosod /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Adfer o'r CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Nid yr label CD cywir. Disg wedi ei labelu %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11604,102 +11728,102 @@ msgstr ""
"Rhowch y tâp gyda label cynnwys%s\n"
"yn yr gyrrwr tâp %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Adfer o Dâp"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Nid yr label tâp cywir. Tâp wedi ei labelu %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Adfer drwy'r Rhwydwaith"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Adfer drwy Protocol Rhwydwaith: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Enw Gwesteiwr"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Llwybr Gwesteiwr neu Fodwil "
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Mae angen cyfrinair"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Mae angen enw defnyddiwr"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Mae angen enw gwesteiwr"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Llwybr neu Fodiwl angenrheidiol"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Adferwyd ffeiliau..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Methodd Adfer..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "CD yn ei le - ewch ymlaen"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Pori i'r ystorfa newydd adferwyd"
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Adfer o'r Catalog"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Adfer Cynnydd"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11709,7 +11833,7 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11717,7 +11841,7 @@ msgstr ""
"Mae'r pecynnau canlynol i'w gosod:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11725,19 +11849,19 @@ msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11745,59 +11869,59 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11855,7 +11979,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11864,7 +11988,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11941,7 +12065,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11990,20 +12114,20 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" yn diweddaru 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12035,7 +12159,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12111,7 +12235,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12130,7 +12254,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12152,7 +12276,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12278,8 +12402,8 @@ msgid "Synchronization tool"
msgstr "Offeryn Cydamseru"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Offer Unigol"
@@ -12344,7 +12468,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12353,24 +12477,24 @@ msgstr ""
"\n"
"\n"
"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
-"Bydd hyn yn agor ffenestr porwr gwe yn https://www.bugzilla.com\n"
+"Bydd hyn yn agor ffenestr porwr gwe yn https://drakbug.mandrakesoft.com\n"
" lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
"drosglwyddo i'r gwasanaethwr\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Adroddiad"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Heb ei osod"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "cysylltwyd â dewin Bugzilla..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Dim porwr ar gael! Gosodawch un"
@@ -12471,10 +12595,6 @@ msgstr "Dewin..."
msgid "Apply"
msgstr "Gosod"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Wedi cysylltu"
@@ -12597,7 +12717,7 @@ msgstr "Enw'r modiwl"
msgid "Size"
msgstr "Maint"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12662,12 +12782,12 @@ msgstr "Allbwn"
msgid "Build the disk"
msgstr "Adeiladu'r ddisg"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12676,12 +12796,12 @@ msgstr ""
"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
"Rhowch un i mewn.."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Methu fforchio: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13168,159 +13288,159 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grwp gwaith"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "rhaniad %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Defnyddiwr"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Dileu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gorffen"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Ychwanegu modiwl"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr ""
"Adfer y Dewis\n"
"Ffeiliau"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "pori"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Derbyn defnyddiwr"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Fersiwn: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porth"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Defnyddio awto ganfod"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Defnyddio awto ganfod"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Dewis sgrin croeso"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Defnyddiwr"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grwp gwaith"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Heb ganfod Cerdyn Sain!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13340,123 +13460,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "i weithio'n iawn mae angen ImageMagick"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "creu'r cam cyntaf"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "cydraniad terfynnol"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "dewis ffeil delwedd"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Enw Thema"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "make bootsplash step 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "mynd i fffurfweddiad lilosplash"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "gadael"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "cadw thema"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "pori"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Ffurfweddu llun croeso cychwyn"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr "blwch testun cydfesuryn x mewn rhif nodau"
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
-msgstr "blwch testun cydfesuryn mewn rhif nodauy"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn x\n"
+"mewn rhif nodau"
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn y\n"
+"mewn rhif nodauy"
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "lled testun"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "uchder blwch testun"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "bar cynnydd cydfesuryn x yn ei gornel uchaf chwith"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "bar cynnydd cydfesuryn y yn ei gornel uchaf chwith"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn x\n"
+"yn ei gornel uchaf chwith"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn y\n"
+"yn ei gornel uchaf chwith"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "lled y bar cynnydd"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "uchder y bar cynnydd"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "lliw'r bar cynnydd"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "mynd nôl"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "rhagolwg"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "dewis lliw"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "cadw thema"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "dewis lliw"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Darddangos logo yn y Consol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Gwneud neges y cnewyllyn yn dawel drwy ragosodiad"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Does gan y thema ddim croeso cychwyn yn %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "cadw thema Croeso cychwyn..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Dewis lliw ProgressBar"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Cynhyrchu rhagolwg..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Methu creu rhagolwg Croeso Cychwyn"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13609,6 +13752,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"defnydd: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "defnydd: keyboarddrake [--expert] [keyboard]\n"
@@ -13637,13 +13788,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Methu cychwyn diweddariad byw!!! \n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13915,16 +14066,14 @@ msgstr ""
"Medrwch ddefnyddio \"XSane\" i sganio dogfennau o'r ddewislen rhaglenni Aml-"
"gyfrwng/Graffigau."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Cafodd rhai dyfeisiau yn nosbarth %s eu hychwanegu:\n"
@@ -14001,7 +14150,7 @@ msgstr "Diweddariadau system gosod"
msgid "Exit install"
msgstr "Gadael gosod"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14252,8 +14401,45 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Methu creu rhagolwg Croeso Cychwyn"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
+#~ "Bydd hyn yn agor ffenestr porwr gwe yn https://www.bugzilla.com\n"
+#~ " lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
+#~ "drosglwyddo i'r gwasanaethwr\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "make bootsplash step 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "mynd i fffurfweddiad lilosplash"
+
+#~ msgid "Go back"
+#~ msgstr "mynd nôl"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr "Nid oes gyrrwr OSS/ALSA hysbys ar gyfer eich cerdyn sain (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Dylai rhif porth fod yn ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "gadael"
#~ msgid ""
#~ "To share your own knowledge and help build Linux tools, join the "
@@ -14263,16 +14449,6 @@ msgstr "Gweithfan Gwyddonol"
#~ "a chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w "
#~ "cael yn ein tudalennau gwe \"Cymuned\""
-#~ msgid ""
-#~ "Mandrake Linux 9.0 has selected the best software for you. Surf the Web "
-#~ "and view animations with Mozilla and Konqueror, or read your mail and "
-#~ "handle your personal information with Evolution and Kmail"
-#~ msgstr ""
-#~ "Mae Mandrake Linux 9.0 yn cynnig y feddalwedd orau i gael mynediad i "
-#~ "bopeth sydd gan y Rhyngrwyd i'w gynnig. Syrffiwch y we a gwyliwch "
-#~ "animeddiadau gyda Mozilla a Konqueror, cyfnewidiwch e-bost a threfnu eich "
-#~ "gwybodaeth gyda Evolution a Kmail, a llawr iawn rhagor. "
-
#~ msgid "Discover the most up-to-date graphics and multimedia tools!"
#~ msgstr "Darganfyddwch yr offer graffigol ac amlgyfrwng mwyaf diweddar!"
@@ -14284,14 +14460,14 @@ msgstr "Gweithfan Gwyddonol"
#~ "antur, cardiau, chwaraeon, strategaeth..."
#~ msgid ""
-#~ "Mandrake Linux 9.0 provides 11 user interfaces which can be fully "
+#~ "Mandrake Linux 9.0 provides 11 user interfaces that can be fully "
#~ "modified: KDE 3, Gnome 2, WindowMaker..."
#~ msgstr ""
#~ "Mae Mandrake 9.0 yn darpary 11 rhyngwyneb defnyddiwr y mae modd eu "
#~ "haddasu'n llawn: KDE 3, Gnome 2, WindowMaker..."
#~ msgid ""
-#~ "Transform your machine into a powerful server in a few clicks of your "
+#~ "Transform your machine into a powerful server with a few clicks of your "
#~ "mouse: Web server, mail, firewall, router, file and print server..."
#~ msgstr ""
#~ "Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
@@ -14329,15 +14505,6 @@ msgstr "Gweithfan Gwyddonol"
#~ "MandrakeSoft."
#~ msgid ""
-#~ "Join the MandrakeSoft support teams and the Linux Community online to "
-#~ "share your knowledge and help others by becoming a recognized Expert on "
-#~ "the online technical support website:"
-#~ msgstr ""
-#~ "Ymunwch â thimau cefnogi MandrakeSoft a'r Gymuned Linux arlein i rannu "
-#~ "eich gwybodaeth a cynnig cymorth i eraill drwy ddod yn Arbennigwr "
-#~ "cydnabyddedig ar safle cefnogaeth dechnegol arlein:"
-
-#~ msgid ""
#~ "Sorry, perl-Expect is not installed/enabled. To use\n"
#~ "this feature, install perl-Expect and comment lines 772-774,\n"
#~ " as well as 788,789. Then uncomment line 787."
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index a6bc7852d..fbed35db8 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-05 12:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
@@ -92,24 +92,24 @@ msgstr "Konfigurér alle skærme uafhængigt"
msgid "Use Xinerama extension"
msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurér kun kort \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,18 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understøttelse med XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"ned.\n"
"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
"ned."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skærmdriver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Tilpasset"
@@ -176,32 +176,32 @@ msgstr "Opløsning"
msgid "Test"
msgstr "Afprøv"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "O.k."
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afslut"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -300,25 +300,25 @@ msgstr "Vælg opløsning og farvedybde"
msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Annullér"
@@ -395,11 +395,11 @@ msgstr "XFree86-server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -408,7 +408,7 @@ msgstr ""
"Jeg kan sætte din maskine op til automatisk at starte X ved\n"
"opstart. Ønsker du at starte X hver gang du genstarter?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -428,7 +428,7 @@ msgstr ""
"\n"
"Har du denne funktion?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Hvilken standard bruger dit tv?"
@@ -500,7 +500,7 @@ msgstr "Kompakt"
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Videoindstilling"
@@ -508,17 +508,17 @@ msgstr "Videoindstilling"
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Adgangskode (igen)"
@@ -554,14 +554,14 @@ msgstr ""
"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Prøv igen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
@@ -603,7 +603,7 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -611,148 +611,148 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tilføj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Færdig"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ændr"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Vedhæft"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Læs-skriv"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Mærkat"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Forvalgt"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-størrelse"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Ingen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Fjern indgang"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s grænsesnit"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Har du én til?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grænsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Se info for maskinel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -761,7 +761,7 @@ msgstr ""
"Du kan nu angive parametre til modul %s.\n"
"Bemærk at alle adresser bør indtastes med foranstillet 0x, fx '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -772,17 +772,17 @@ msgstr ""
"Parametrene er i formatet ``navn=værdi navn2=værdi2 ...''.\n"
"F.eks., ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulindstillinger:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prøve?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -802,15 +802,15 @@ msgstr ""
"burde\n"
"ikke forårsage nogen skader."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specificér parametre"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -819,61 +819,61 @@ msgstr ""
"Indlæsning af modul %s mislykkedes.\n"
"Ønsker du at prøve igen med andre parametre?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet må kun indeholde små bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Tilføj bruger"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -882,32 +882,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -915,19 +915,19 @@ msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på.\n"
"Ønsker du at bruge denne finesse?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Vælg det sprog, der skal bruges."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -935,35 +935,35 @@ msgid ""
msgstr ""
"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal være installeret. Ønsker du at installere den?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krævet pakke %s mangler"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -976,11 +976,11 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -988,31 +988,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Høj"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Højere"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1023,7 +1023,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1031,7 +1031,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netværksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1039,7 +1039,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1047,7 +1047,7 @@ msgstr ""
"Der er allerede nogle begrænsninger, og flere automatiske kontroller bliver "
"kørt hver nat."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1061,7 +1061,7 @@ msgstr ""
"forbindelser fra mange klienter. Bemærk: hvis din maskine kun er en klient "
"på internettet bør du hellere vælge et lavere niveau."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1069,33 +1069,33 @@ msgstr ""
"Baseret på det foregående niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu på deres højeste niveau."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Basale valgmuligheder for DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Vælg det ønskede sikkerhedniveau"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverløb og formatstrenge."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1110,7 +1110,7 @@ msgstr ""
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1135,58 +1135,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvælgeren!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vælge mellem mulighederne."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne før opstart, eller 'c' for en kommandolinie."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhævede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "endnu er ingen hjælp implementeret.\n"
@@ -1238,63 +1238,63 @@ msgstr "Lilo/grub modus"
msgid "Yaboot mode"
msgstr "Yaboot modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Installér temaer"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Visningstema under konsol"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Opret nyt tema"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Sikkerhedskopiér %s til %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fejl"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "kunne ikke lave sikkerhedskopi af lilo-besked"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiér %s til %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "kan ikke ændre lilo-besked"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Lilo-besked ikke fundet"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Skriv %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1302,17 +1302,17 @@ msgstr ""
"Kan ikke skrive /etc/sysconfig/bootsplash\n"
"Fil ikke fundet."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Kan ikke opstarte mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1321,24 +1321,24 @@ msgstr ""
"Start \"lilo\" som root på kommandolinjen for at færdiggøre installationen "
"af Lilo-tema."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Genstart 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Bemærk"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Problemfri installation af temaer for LiLo- og opstartsskærm"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Installation af tema mislykkedes"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1347,21 +1347,21 @@ msgstr ""
"Du bruger for øjeblikket % som opstartshåndterer.\n"
"Klik på Konfigurér for at starte opsætnings-vejlederen."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurér"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Valg af opstartsskærm"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Temaer"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1375,44 +1375,44 @@ msgstr ""
"du kan vælge\n"
"dem separat"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Lilo-skærm"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Opstartsskærm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Systemtilstand"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nej, jeg ønsker ikke automatisk login"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg ønsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "O.k."
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan ikke læse /etc/inittab: %s"
@@ -1509,50 +1509,58 @@ msgstr "Østrig"
msgid "United States"
msgstr "U.S.A."
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Ny"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Afmontér"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montér"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// or https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
@@ -1639,7 +1647,7 @@ msgstr "Tom"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Andet"
@@ -1782,7 +1790,7 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme størrelse\n"
"Fortsæt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advarsel"
@@ -2342,7 +2350,7 @@ msgstr ""
"Indtast venligst dit brugernavn, din adgangskode og dit domænenavn for at få "
"adgang til denne vært."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Brugernavn"
@@ -2354,23 +2362,23 @@ msgstr "Domæne"
msgid "Search servers"
msgstr "Søg efter servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2456,47 +2464,110 @@ msgstr "Ingenting at lave"
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved åbning af %s for skrivning: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Intet alternativ drivprogram"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Der findes intet kendt alternativ OSS/ALSA-drivprogram for lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Lyd-konfiguration"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Her kan du vælge et alternativ drivprogram (enten OSS eller ALSA) for "
"lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Drivprogram:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Hjælp"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Sætter konfigurationen i anvendelse"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Vent venligst"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Ingen kendt driverrutine"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Der findes intet kendt drivprogram for lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Ukendt drivprogram"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2695,8 @@ msgid "/_Quit"
msgstr "/_Afslut"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hjælp"
@@ -2645,14 +2717,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Rapportér fejl"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Om..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Om Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2660,56 +2736,53 @@ msgstr ""
"Dette er HardDrake, et Mandrake-værktøj for konfigurering af maskinel.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Forfatter:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 version "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Fundet maskinel"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informationer"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfigurér modul"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Kør konfigurationsværktøj"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Søgning udføres"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Du kan konfigurere hver parameter for modulet her."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Kører \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr "Undersøger $Ident-klasse\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Undersøger %s-klasse\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "primær"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "sekundær"
@@ -4549,7 +4622,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Du skal også formatere %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4573,7 +4646,7 @@ msgstr ""
"\n"
"Ønsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4586,20 +4659,20 @@ msgstr ""
"\n"
"Ønsker du virkelig at fjerne disse pakker?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domæne"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indsæt en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4607,12 +4680,12 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved læsning af filen %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4854,7 +4927,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Intet tilgængeligt diskettedrev"
@@ -4884,11 +4957,11 @@ msgstr "Installationsmetode"
msgid "Please choose one of the following classes of installation:"
msgstr "Vælg en af de følgende installations-måder:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
@@ -4966,7 +5039,7 @@ msgstr "Vis automatisk valgte pakker"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installér"
@@ -4986,7 +5059,7 @@ msgstr "Minimal installation"
msgid "Choose the packages you want to install"
msgstr "Vælg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installerer"
@@ -5013,17 +5086,17 @@ msgid "Installing package %s"
msgstr "Installerer pakke %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Acceptér"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Nægt"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5039,16 +5112,16 @@ msgstr ""
"Hvis du ikke har den så tryk på Annullér, så undgås installation fra denne cd"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Fortsæt alligevel?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -5170,7 +5243,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5335,7 +5408,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Er du sikker på at du afviser licensen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5542,11 +5615,11 @@ msgstr "Indsæt en diskette med pakkevalget"
msgid "Selected size is larger than available space"
msgstr "Valgt størrelse er større end tilgængelig plads"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5554,19 +5627,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vælg den minimale installation du ønsker"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5576,16 +5649,16 @@ msgstr ""
"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
"Hvis kun nogen cd'er mangler, fravælg dem, og klik så Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5594,21 +5667,21 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indsæt opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indsæt Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5676,7 +5749,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5695,155 +5768,155 @@ msgstr ""
"\n"
"Ønsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgængelige spejle"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgængelige pakker"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Kør \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prøv at køre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domain"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sæt root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gætte (det skal mindst være på %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP grundlæggende dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domæne"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5872,19 +5945,19 @@ msgstr ""
"Kommandoen 'wbinfo -t' vil afprøve om dine hemmelige autentifikationsdata er "
"i orden."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Autentifikations Windowsdomæne"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Brugernavn for domæneadministrator"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Adgangskode for domæneadministrator"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5912,19 +5985,19 @@ msgstr ""
"Hvis du ønsker at lave en opstartsdiskette til dit system, indsæt en "
"diskette i dit første diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Første diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5949,7 +6022,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5963,28 +6036,28 @@ msgstr ""
"oprettelse af en opstartsdiskette på en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS kræver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Der er desværre ikke noget tilgængeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vælg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indsæt en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Opretter opstartsdiskette..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Forbereder opstarter..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5995,11 +6068,11 @@ msgstr ""
"opstartsindlæseren vil ikke virke for dig. Installationen vil fortsætte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ønsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6008,15 +6081,15 @@ msgstr ""
"forsøg at gennemtvinge installation selv om dette kan ødelægge den første "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6033,17 +6106,17 @@ msgstr ""
" Skriv så: shut-down\n"
"Ved næste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indsæt en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6053,7 +6126,7 @@ msgstr ""
"\n"
"Er du sikker på du ønsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6085,15 +6158,15 @@ msgstr ""
"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6107,15 +6180,15 @@ msgstr ""
"\n"
"Du foretrækker måske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -6151,14 +6224,14 @@ msgstr "Avanceret"
msgid "Basic"
msgstr "Basal"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Forrige"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Næste"
@@ -6604,7 +6677,7 @@ msgstr "Højre Windows-tast"
msgid "Circular mounts %s\n"
msgstr "Cirkulære monteringer %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver først\n"
@@ -6741,15 +6814,15 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT PÅ HJULET!"
@@ -6785,11 +6858,11 @@ msgstr "Sammenfold træ"
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Lav forbindelse til Internettet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6799,23 +6872,19 @@ msgstr ""
"Nogen forbindelser bruger pptp, og nogle få bruger DHCP.\n"
"Hvis du ikke ved noget, vælg 'brug pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "brug dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "brug pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "brug pptp"
@@ -6917,7 +6986,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Konfigurerer netværk"
@@ -6933,15 +7002,15 @@ msgstr ""
"Dit værtsnavn bør være et fuldt kvalificeret værtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Værtsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Konfigurér netværk"
@@ -6990,8 +7059,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Gammel konfiguration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfiguration"
@@ -7027,23 +7096,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hvilken protokol ønsker du at bruge?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Hvad slags kort har du?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Det ved jeg ikke"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7056,19 +7130,19 @@ msgstr ""
"\n"
"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Afbryd"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Fortsæt"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Hvilket er dit ISDN-kort?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7076,7 +7150,7 @@ msgstr ""
"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vælg et PCI-"
"kort i næste skærmbillede."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ingen ISDN PCI-kort fundet. Vælg ét i næste skærmbillede."
@@ -7128,7 +7202,7 @@ msgstr "Første DNS-server (valgfri)"
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7137,7 +7211,7 @@ msgstr ""
"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
"forbindelse."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7145,11 +7219,11 @@ msgstr ""
"\n"
"Du kan genkonfigurere din forbindelse"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Du har forbindelse til Internettet nu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7157,32 +7231,32 @@ msgstr ""
"\n"
"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Tilslut"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Afbryd"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfigurér forbindelsen"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetforbindelse & -konfiguration"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7201,12 +7275,12 @@ msgstr ""
"\n"
"Tryk OK for at begynde."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurér netværk"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7218,7 +7292,7 @@ msgstr ""
"Klik OK for at beholde din konfiguration, eller annullér for at "
"omkonfigurere din Internet- og netværksforbindelse.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7230,72 +7304,72 @@ msgstr ""
"Vi skal til at konfigurere din internet- eller netværksforbindelse.\n"
"Hvis du ikke ønsker at bruge autodetektering, så fravælg afkrydsningsboksen\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Vælg profilen der skal konfigureres"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Eksperttilstand"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modemforbindelse"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Detekteret på port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "Detekteret %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL opkobling"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "Detekteret på grænseflade %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelforbindelse"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelopkobling detekteret"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Lokalnet-konfiguration"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet-kort detekteret"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Vælg den opkobling, du ønsker at konfigurere"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7305,23 +7379,23 @@ msgstr ""
"Venligst vælg den du ønsker at bruger.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet opkobling"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Ønsker du at starte din forbindelse ved opstart?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netværks konfiguration"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Netværket skal startes op igen"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7332,7 +7406,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7342,7 +7416,7 @@ msgstr ""
"Konfigurationen vil nu blive anvendt på dit system.\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7350,7 +7424,7 @@ msgstr ""
"Derefter anbefaler vi at du genstarter dit X-miljø for\n"
"at undgå problemer med det ændrede værtsnavn"
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7360,7 +7434,7 @@ msgstr ""
"Afprøv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prøve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7372,7 +7446,7 @@ msgstr ""
"Ved kun at trykke på OK beholder du den nuværende konfiguration.\n"
"Ændringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7381,42 +7455,42 @@ msgstr ""
"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netværksenheden %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Start ved opstart"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7428,42 +7502,52 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"så lad navne-server-felterne være blanke."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvært (proxy)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Følg id for netværkskort (nyttigt for bærbare)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy skal være http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy skal være ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url burde begynde med 'ftp:' eller 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9054,7 +9138,7 @@ msgstr "Udskriver på printeren '%s'"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9615,10 +9699,6 @@ msgstr ""
"Udfyld venligst oplysningerne om ftp-proxy\n"
"Lad det være blankt hvis du ikke ønsker en ftp-proxy"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url burde begynde med 'ftp:' eller 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9666,6 +9746,41 @@ msgstr "mkraid fejlede (måske mangler raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Sikkerhedsniveau:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sikkerhedsniveau"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Sikkerhedsadministrator:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Forvalgt)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Vælg det ønskede sikkerhedniveau"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Vent venligst, forbereder installationen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -9968,7 +10083,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10061,7 +10176,7 @@ msgstr "Få det meste fra Internettet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10116,7 +10231,7 @@ msgstr "Brugergrænseflader"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 tilbyder dig 11 brugergrænseflader hvor alt kan "
@@ -10144,7 +10259,7 @@ msgstr "Lav din maskine om til en pålidelig server"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Lav din maskine om til en stærk server med bare nogen få klik med musen: "
@@ -10164,7 +10279,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Dette brandmursprodukt indholder netværksfunktioner som lader dig opfylde "
@@ -10181,7 +10296,7 @@ msgstr "Den officielle MandrakeSoft-butik"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Vores komplette udvalg af Linux-løsninger, så vel som specialtilbud på "
"produkter og andre godbidder, er tilgængelige via nettet i vores e-butik:"
@@ -10240,8 +10355,8 @@ msgstr "Find løsningerne på dine problemer via MandrakeSofts online-support."
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
"Slut dig til MandrakeSofts supporthold og Linux-samfundet på nettet for at "
"dele din viden og hjælpe andre ved at blive en anerkendt Ekspert på det "
@@ -10286,11 +10401,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Log ud og tryk herefter på Ctrl-Alt-Bak"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Log ind i %s igen for at aktivere ændringerne"
@@ -10331,16 +10446,6 @@ msgstr "Tilføj/slet brugere"
msgid "Add/Del Clients"
msgstr "Tilføj/slet klienter"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Hjælp"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Start fra sdiskette"
@@ -10389,48 +10494,64 @@ msgstr "Tilføj bruger -->"
msgid "<-- Del User"
msgstr "<-- Slet bruger"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Opstartsbilleder for netopstart"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Tilføj klient -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Slet klient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Konfigurér dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Avanceret konfiguration"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Udskriv konfiguration"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Indsæt diskette:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kunne ikke få adgang til disketten!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Diskette kan fjernes nu"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Intet tilgængeligt diskettedrev!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO-aftryk er %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Noget gik galt! - er mkisofs installeret?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Skal oprette /etc/dhcpd.conf først!"
@@ -10576,12 +10697,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10594,41 +10715,41 @@ msgstr ""
"Advarsel: Hvis du allerede har lavet denne proces behøver du formodentlig\n"
" at fjerne posten fra authorized_keys på serveren."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Det kan tage lidt tid at generere nøglerne."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "Fejl: Kan ikke starte %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Ingen forespørgsel om adgangskode på %s ved port %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Dårlig adgangskode på %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Adgang nægtet ved overførsel af %s til %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Kan ikke finde %s på %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "%s svarer ikke"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10645,64 +10766,64 @@ msgstr ""
"\n"
"uden at blive spurgt om en adgangskode."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "WebDAV eksternt netsted allerede synkroniseret!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "WebDAV overførsel mislykkedes!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Ingen CDR/DVDR i drevet!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Ser ikke ud til at være et skrivbart medie!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Ikke sletbart medie!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Det kan tage lidt tid at slette mediet."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Problem med rettigheder ved adgang til CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Intet bånd i %s."
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Sikkerhedskopiér andre filer..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Ingen ændringer til sikkerhedskopi!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10713,7 +10834,7 @@ msgstr ""
"Drakbackup aktiviteter via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10722,7 +10843,7 @@ msgstr ""
"filliste sendt via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10732,7 +10853,7 @@ msgstr ""
"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10742,7 +10863,7 @@ msgstr ""
"Drakbackup aktiviteter via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10752,24 +10873,24 @@ msgstr ""
"Drakbackup aktiviteter via bånd:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Kan ikke oprette katalog!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Vælg filerne eller katalogerne og klik på 'Tilføj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10777,26 +10898,26 @@ msgstr ""
"\n"
"Markér alle muligheder som du behøver.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
"katalog.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10804,43 +10925,43 @@ msgstr ""
"Med denne valgmulighed vil du være i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlæser"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Brug netværksforbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Netmetode:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Brug Expect for SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10848,7 +10969,7 @@ msgstr ""
"Opret/overfør\n"
"sikkerhedskopieringsnøgler for SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10856,15 +10977,18 @@ msgstr ""
" Overfør \n"
"Nu"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Nøglerne findes allerede"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Indtast værtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10872,27 +10996,27 @@ msgstr ""
"Indtast kataloget (eller modulet) hvori\n"
" sikkerhedskopien skal lægges på denne maskine."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Behøver værtsnavn, brugernavn og adgangskode!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10902,35 +11026,35 @@ msgstr ""
"(Tryk Enter for at overføre indstillinger til andre felter.\n"
"Dette felt behøves ikke, det er kun et værktøj for at udfylde formularen.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Vælg cd/dvd-mediastørrelse"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Markér om du bruger en multisessions-cd"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Markér om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Markér om du vil slette dit CDRW-medie (1. session"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Slet nu "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Markér om du bruger en CDRW-enhed"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Markér om du bruger en DVDRAM-enhed"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10938,32 +11062,32 @@ msgstr ""
"Indtast din CD-brænders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Ingen cd-enhed defineret!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "brug bånd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr "Markér om du vil bruge den ikke-tilbagespolende enhed."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "Markér om du vil slette dit bånd før sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr "Markér om du vil udskyde dit bånd før sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10971,55 +11095,55 @@ msgstr ""
"Indtast den maksimale størrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget hvortil der skal gemmes:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netværk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Bånd"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "månedligt"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Brug dæmon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11027,7 +11151,7 @@ msgstr ""
"Vælg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11035,7 +11159,7 @@ msgstr ""
"Vælg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11044,71 +11168,71 @@ msgstr ""
"Forsikr dig gerne om at cron-dæmonen er med i dine tjenester.\n"
"Bemærk at alle 'net'-medier også bruger disken for nærværende."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Slet tar-filer på disken efter sikkerhedskopiering til andet medie."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Hvornår"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Vælg hvor du ønsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "på diskdrev"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "over netværk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "på cd-rom"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "på båndenhed"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Vælg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Håndpluk bruger"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11116,7 +11240,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11124,7 +11248,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11132,7 +11256,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11140,7 +11264,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11149,7 +11273,7 @@ msgstr ""
"\n"
"- Gem til diskdrev på stien: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11157,7 +11281,7 @@ msgstr ""
"\n"
"- Slet tar-filer på disken efter sikkerhedskopiering.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11165,20 +11289,20 @@ msgstr ""
"\n"
"- Brænd på CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " på enhed: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr " (multi-session)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11187,12 +11311,12 @@ msgstr ""
"\n"
"- Gem på bånd på enhed: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11201,7 +11325,7 @@ msgstr ""
"\n"
"- Gem via %s på vært: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11210,7 +11334,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t på sti: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11218,19 +11342,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11239,39 +11363,39 @@ msgstr ""
"\n"
"- Dæmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Netværk via FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Netværk via SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Netværk via rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Netværk via webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik på Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11279,7 +11403,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11287,100 +11411,100 @@ msgstr ""
"Liste over data der er ødelagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkér eller fjern det gerne næste gang."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er ødelagte"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl på %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler før:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Vælg dato for genskabning"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP forbindelse"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sikker forbindelse"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Vælg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "vælg sti at genskabe (i stedet for /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi før genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger før genskabning."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -11388,7 +11512,7 @@ msgstr ""
"Genskab valgt\n"
"katalogpost"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11396,7 +11520,7 @@ msgstr ""
"Genskab valgte\n"
"filer"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11404,12 +11528,12 @@ msgstr ""
"Ændr\n"
"Genskabelsessti"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Sikkerhedskopier fandtes ikke på %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11418,16 +11542,16 @@ msgstr ""
"Indsæt cd'en med volumetiket %s\n"
" i cd-enheden monteret på /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Genskab fra cd"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Ikke korrekt cd-etiket. Cd'en har etiket %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11436,102 +11560,102 @@ msgstr ""
"Indsæt båndet med volumeetiket %s\n"
" i båndenheden %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Genskab fra bånd"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Ikke korrekt båndetiket. Båndet har etiket %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Genskab via netværk"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Genskab via netværksprotokol: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Værtsnavn"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Stil til vært eller modul"
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Adgangskode krævet"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Brugernavn krævet"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Værtsnavn krævet"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Sti eller modul krævet"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Filer genskabte..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Genskabelse mislykkedes..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "Cd'en er på plads - fortsæt."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Bladr til nyt genskabelseslager."
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Genskab fra katalog"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Fremskridt for genskabelse"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11541,13 +11665,13 @@ msgstr ""
" Din rapport blev ikke sendt.\n"
" Konfigurér venligst sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "De følgende pakker vil blive installeret @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11555,19 +11679,19 @@ msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Udvælg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Vælg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Vælg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11575,59 +11699,59 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik på Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11687,7 +11811,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11701,7 +11825,7 @@ msgstr ""
" sætte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11777,7 +11901,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11826,20 +11950,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11871,7 +11995,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11945,7 +12069,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11963,7 +12087,7 @@ msgstr ""
"før den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11985,7 +12109,7 @@ msgstr ""
"Det er vigtigt at være forsigtig og ikke ændre sikkerhedskopieringens\n"
"datafiler i hånden.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12108,8 +12232,8 @@ msgid "Synchronization tool"
msgstr "Synkroniseringsværktøj"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Fritstående værktøjer"
@@ -12174,7 +12298,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12183,24 +12307,24 @@ msgstr ""
"\n"
"\n"
"For at indsende en fejlrapport klik da på rapport-knappen.\n"
-"Dette vil åbne et vindue i en netlæser på https://www.bugzilla.com\n"
+"Dette vil åbne et vindue i en netlæser på https://drakbug.mandrakesoft.com\n"
" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
"vil blive overført til den server\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Rapport"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Ikke installeret"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "Opkobler til vejleder for Bugzilla"
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Ingen netlæser til stede! Installér venligst én"
@@ -12301,10 +12425,6 @@ msgstr "Vejleder..."
msgid "Apply"
msgstr "Anvend"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Sætter konfigurationen i anvendelse"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Tilsluttet"
@@ -12426,7 +12546,7 @@ msgstr "Modulnavn"
msgid "Size"
msgstr "Størrelse"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12491,12 +12611,12 @@ msgstr "Uddata"
msgid "Build the disk"
msgstr "Opbyg disken"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12505,12 +12625,12 @@ msgstr ""
"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
"Indsæt venligst noget."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kan ikke fork(): %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12993,47 +13113,47 @@ msgstr ""
"Klik på Konfigurér for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "group"
msgstr "gruppe"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr "sti"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr "rettigheder"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "bruger"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr "Op"
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "slet"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr "redigér"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
msgid "Down"
msgstr "Ned"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
msgstr "Tilføj en regel"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr "vælg perm-fil at se eller redigere"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -13043,59 +13163,59 @@ msgstr ""
"grupper via msec.\n"
"Du kan også redigere dine egne regler som vil tilsidesætte standard-reglerne."
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
msgstr "Tilføj en ny regel i slutningen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr "Redigér aktuelle regel"
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr "Flyt valgte regel et niveau op"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr "Flyt valgte regel et niveau ned"
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
msgstr "Slet valgte regel"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "bladr"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
msgstr "Aktuelle bruger"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr "Rettigheder"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr "Sti"
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
msgid "Property"
msgstr "Egenskab"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr "Set-UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr "Set-GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
@@ -13103,35 +13223,35 @@ msgstr ""
"Brugt til katalog:\n"
" kun ejeren af kataloget eller filen i dette katalog kan slette den"
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr "Brug ejers id ved udførelsen"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr "Brug gruppe-id ved udførelsen"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr "ved kontrol vil ejer og gruppe ikke blive ændret"
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
msgstr "Valg af sti"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
msgid "user :"
msgstr "bruger:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
msgid "group :"
msgstr "gruppe:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Intet lydkort genkendt!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13151,123 +13271,142 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "pakken ImageMagick kræves for at det skal fungere korrekt"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "opretter første trin"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "endelig opløsning"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "vælg billedfil"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Tema-navn"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "lav startskærm trin 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "gå til konfiguration af Lilo-startskærm"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "afslut"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "gem temaer"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "bladr"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Konfigurér startskærmsbilled"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
+#: ../../standalone/draksplash_.c:100
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr "antal tegn i tekstrudens x-led"
-#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr "antal tegn i tekstrudens y-led"
-#: ../../standalone/draksplash_.c:101
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "tekstbredde"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "højde på tekstrude"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "x-koordinatet for forløbsindikatorens øvre venstre hjørne"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "y-koordinatet for forløbsindikatorens øvre venstre hjørne"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"x-koordinatet for forløbsindikatorens\n"
+"øvre venstre hjørne"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"y-koordinatet for forløbsindikatorens\n"
+"øvre venstre hjørne"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "bredden på forløbslinjen"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "højden på forløbslinjen"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "farven på forløbslinjen"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "gå tilbage"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "smugkig"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "vælg farve"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "gem temaer"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "vælg farve"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Vis logo på konsol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Skjul kernens beskeder som standard"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Dette tema har endnu ikke nogen startskærm i %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "gemmer startskærmstema..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Valg af farve for forløbslinje"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Du skal vælge en biledfil først!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Genererer smugkigning ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Kan ikke lave smugkig af opstartsskærm"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13421,6 +13560,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"brug: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "brug: keyboarddrake [--expert] [tastatur]\n"
@@ -13449,11 +13596,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kan ikke starte levende opgradering!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Ændringen er fortaget, men for at være effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13724,16 +13871,14 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Nogen enheder i maskinelklassen '%s' blev tilføjet:\n"
@@ -13810,7 +13955,7 @@ msgstr "Installér opdateringer"
msgid "Exit install"
msgstr "Afslut installation"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14056,8 +14201,46 @@ msgstr "Multimedie - CD-brænding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Kan ikke lave smugkig af opstartsskærm"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "For at indsende en fejlrapport klik da på rapport-knappen.\n"
+#~ "Dette vil åbne et vindue i en netlæser på https://www.bugzilla.com\n"
+#~ " hvor du vil finde en formular der kan udfyldes. Informationen vist "
+#~ "ovenfor vil blive overført til den server\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "lav startskærm trin 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "gå til konfiguration af Lilo-startskærm"
+
+#~ msgid "Go back"
+#~ msgstr "gå tilbage"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Der findes intet kendt alternativ OSS/ALSA-drivprogram for lydkortet (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy skal være ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "afslut"
#~ msgid ""
#~ "Sorry, perl-Expect is not installed/enabled. To use\n"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 57e1acff7..59c7cb5cd 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MandrakeInstaller\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-08-31 11:53+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
"Language-Team: German Translation Team <cooker-i18n@linux-mandrake.com>\n"
@@ -89,24 +89,24 @@ msgstr "Alle Karten getrennt konfigurieren"
msgid "Use Xinerama extension"
msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,17 +116,17 @@ msgstr ""
"XFree %s. Ihre Karte wird auch von XFree %s unterstützt, wodurch Sie \n"
"bessere 2D-Unterstützung erhalten können."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"XFree %s unterstützt, wodurch Sie bessere 2D-Unterstützung erhalten \n"
"können."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÃœHREN."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Benutzerdefiniert"
@@ -174,32 +174,32 @@ msgstr "Auflösung"
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optionen"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlassen"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -294,25 +294,25 @@ msgstr "Wählen Sie bitte Auflösung und Farbtiefe"
msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr " Abbruch "
@@ -388,11 +388,11 @@ msgstr "XFree86 Server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -402,7 +402,7 @@ msgstr ""
"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur Verfügung steht?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgstr ""
"\n"
"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Um welche Fernsehnorm handelt es sich?"
@@ -494,7 +494,7 @@ msgstr "Kompakt"
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video Modus"
@@ -502,17 +502,17 @@ msgstr "Video Modus"
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Passwort (erneut)"
@@ -548,14 +548,14 @@ msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
@@ -598,7 +598,7 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -606,148 +606,148 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Hinzufügen"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ändern"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Ãœbergeben"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Größe der Init-RamDisk"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Eintrag löschen"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Sie Müssen ein Kern-Abbild angeben"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Sie müssen die Verzeichnisbaumwurzel festlegen"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Verfügen Sie über weitere?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Verfügen Sie über %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Hardware Informationen anzeigen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers für die Karte %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Sie können nun die Optionen für Modul %s angeben.\n"
"Denken Sie daran, dass Adressen mit „0x“ beginnen müssen, etwa „0x300“"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Optionen haben die Form „name=wert name2=wert2“.\n"
"Beispielsweise: „io=0x300 irq=7“"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul-Optionen:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -795,15 +795,15 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -812,63 +812,63 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "Zugriff auf Compiler"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Dieses Benutzerkennzeichen ist zu lang"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Benutzer hinzufügen"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -877,32 +877,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -911,19 +911,19 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -932,37 +932,37 @@ msgstr ""
"Sie können andere Sprachen auswählen, die nach der Installation zur "
"Verfügung stehen."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Sie können die Dateien mittels Samba oder NFS anbieten. Welche Variante "
"wollen Sie?"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -977,11 +977,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +990,31 @@ msgstr ""
"Sie können UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Höher"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1025,7 +1025,7 @@ msgstr ""
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1033,7 +1033,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1041,7 +1041,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene für Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1049,7 +1049,7 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgeführt."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1066,7 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,32 +1074,32 @@ msgstr ""
"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec Grundeinstellungen"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Wählen Sie Ihre Sicherheitsebene"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1115,7 +1115,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1139,60 +1139,60 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Zum Starten des BS drÂcken Sie <Return>. Mit <e> k”nnen Sie das"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Arbeitsoberfläche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start-Menü"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
"Sie können den Betriebssystemstarter\n"
"nicht auf einer %s Partition installieren!\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Es steht noch keine Hilfe zur Verfügung.\n"
@@ -1244,79 +1244,79 @@ msgstr "LILO/GRUB Modus"
msgid "Yaboot mode"
msgstr "Yaboot Modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Themen installieren"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Bildschirm-Thema für die Konsole"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Ein neues Thema erzeugen"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fehler"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "Ich kann keine Sicherheitskopie der LILO-Nachricht anlegen."
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiere „%s“ nach „%s“"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "Ich kann die LILO-Nachricht nicht äern."
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Ich kann die LILO Nachricht nicht finden."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Schreiben von %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Ich kann „mkinitrd -f /boot/initrd-%s.img %s“ nicht ausführen."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Erstellen der RamDisk: „mkinitrd -f /boot/initrd-%s.img %s“."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1325,24 +1325,24 @@ msgstr ""
"Benutzerkennzeichen „lilo“ in einer Konsole aus, um die Themen-Installation "
"zu beenden."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "LILO ausführen"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Anmerkung"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Installation des LILO- und Start-Themas erfolgreich."
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Die Installation des Themas schlug fehl!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1351,21 +1351,21 @@ msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurieren"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Startschirmauswahl"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Themen"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1382,44 +1382,44 @@ msgstr ""
"unterschiedliche\n"
"Varianten wählen."
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "LILO-Menü"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Startschirm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "System-Modus"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nein ich will kein Autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr " Ok "
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ich kann „/etc/inittab“ nicht zum lesen öffnen: %s"
@@ -1517,50 +1517,58 @@ msgstr "Östereich"
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Neu"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aushängen"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Einhängen"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Einhängpunkt"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Bitte geben Sie die WebDAV-Server URL an"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Einhängpunkt: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
@@ -1647,7 +1655,7 @@ msgstr "Leer"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Andere"
@@ -1791,7 +1799,7 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Warnung"
@@ -2360,7 +2368,7 @@ msgid ""
msgstr ""
"Bitte geben Sie Benutzerkennzeichen, Passwort und Domäne des Rechners an."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Benutzerkennzeichen"
@@ -2372,25 +2380,25 @@ msgstr "Domäne"
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
@@ -2484,47 +2492,110 @@ msgstr "Nichts zu tun."
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Kein alternativer Treiber"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Es existiert kein alternativer OSS/ALSA Treiber für Ihre Soundkarte (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Sound Konfiguration"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Hier können Sie einen alternativen Treiber (entweder OSS odr ALSA) für Ihre "
"Soundkarte (%s) auswählen"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Treiber:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Kein bekannter Treiber"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Unbekannter Treiber"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, fuzzy, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2726,8 @@ msgid "/_Quit"
msgstr "/_Beenden"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hilfe"
@@ -2676,14 +2748,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Fehler Melden"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Ãœber ..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Ãœber HardDrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2691,56 +2767,53 @@ msgstr ""
"HardDrake - das Mandrake Linux Hardware-Konfigurationswerkzeug.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "HardDrake2 Version "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Gefundene Hardware"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informationen"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Modul konfigurieren"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Konfigurationswerkzeug starten"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Erkennung läuft"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Sie können alle Modulparamerter hier einstellen."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "„%s“ ausführen ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "Primär"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "Sekundär"
@@ -4779,7 +4852,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sie müssen auch %s formatieren."
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4804,7 +4877,7 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4818,22 +4891,22 @@ msgstr ""
"\n"
"Wollen Sie diese Pakete wirklich entfernen?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS Domäne angegeben wurde"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4841,12 +4914,12 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -5097,7 +5170,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfügbar"
@@ -5128,11 +5201,11 @@ msgstr "Installationsart"
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
@@ -5214,7 +5287,7 @@ msgstr "Anzeige automatisch markierter Pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installation"
@@ -5234,7 +5307,7 @@ msgstr "Minimal-Installation"
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswählen"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installation wird durchgeführt"
@@ -5261,17 +5334,17 @@ msgid "Installing package %s"
msgstr "Installation des Pakets %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akzeptieren"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Zurückweisen"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5287,16 +5360,16 @@ msgstr ""
"Falls Sie sie nicht vorliegen haben, drücken Sie Abbruch."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -5423,7 +5496,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5719,7 +5792,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Sind Sie sicher, dass Sie die Lizenz zurückweisen wollen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5934,11 +6007,11 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5946,19 +6019,19 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewählt\n"
"Bitte wählen Sie die minimale Installation, die Sie wünschen."
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5969,16 +6042,16 @@ msgstr ""
"falls nur einige der aufgeführten CDs fehlen, entfernen Sie die \n"
"entsprechende Markierung und wählen Sie dann „OK“."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5987,23 +6060,23 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Einstellungen für nach der Installation"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -6079,7 +6152,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -6098,163 +6171,163 @@ msgstr ""
"\n"
"Möchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
"verfügbarer Pakete zu erhalten."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Verbindung mit dem Mirror aufbauen, um eine Liste verfügbarer Pakete zu "
"erhalten."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "CUPS-Server im Netzwerkbetrieb"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Verfügen Sie über eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
"einzurichten."
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
"Installation."
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domäne"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6286,19 +6359,19 @@ msgstr ""
"Mit „wbinfo -t“ können Sie anschließend testetn, ob die Anmeldung "
"erfolgreich war."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Windows Domänenauthentifizierung"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Name des Domänenadministrators"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Paswort des Administrators"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6329,19 +6402,19 @@ msgstr ""
"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ãœberspringen"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6370,7 +6443,7 @@ msgstr ""
"Möchten Sie jetzt eine Startdiskette für Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6384,30 +6457,30 @@ msgstr ""
"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthält in „%s“ ein."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6421,11 +6494,11 @@ msgstr ""
"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6434,16 +6507,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Betriebssystemstarter installieren"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6461,17 +6534,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6481,7 +6554,7 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6511,15 +6584,15 @@ msgstr ""
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6536,15 +6609,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzuführen.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6580,14 +6653,14 @@ msgstr "Fortgeschritten"
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Zurück"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Weiter"
@@ -7032,7 +7105,7 @@ msgstr "Rechte „Windows“-Taste"
msgid "Circular mounts %s\n"
msgstr "Schleife bei den Einhängpunkten %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
@@ -7169,15 +7242,15 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
@@ -7213,11 +7286,11 @@ msgstr "Baum verkleinern"
msgid "Toggle between flat and group sorted"
msgstr "Umschalten zwischen unsortiert und gruppiert"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Internetverbindung"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7227,23 +7300,19 @@ msgstr ""
"Einige Verbindungen benutzen jedoch pptp, andere dhcp.\n"
"Wenn Sie nicht wissen was Sie brauchen, wählen Sie „pppoe verwenden“"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "DHCP verwenden"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "PPPOE verwenden"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "PPTP verwenden"
@@ -7347,7 +7416,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -7363,15 +7432,15 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Rechnername"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netzwerk Konfigurationsassistent"
@@ -7420,8 +7489,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Alte Konfiguration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfiguration"
@@ -7457,23 +7526,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Welches Protokoll wollen Sie verwenden?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Welchen Kartentyp verwenden Sie?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Keine Ahnung"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA/PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7488,19 +7562,19 @@ msgstr ""
"Falls Sie eine PCMCIA-Karte besitzen, müssen Sie IRQ und E/A-Bereich Ihrer "
"Karte kennen.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abbruch"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Fortfahren"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Bitte wählen Sie Ihre ISDN Karte"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7509,7 +7583,7 @@ msgstr ""
"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
"indem Sie im nächsten Menü eine auswählen."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Ich konnte keine PCI ISDN-Karte finden.\n"
@@ -7563,7 +7637,7 @@ msgstr "Erster DNS Server (optional)"
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7571,7 +7645,7 @@ msgstr ""
"\n"
"Sie können die Verbindung trennen oder sie neu konfigurieren."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7579,11 +7653,11 @@ msgstr ""
"\n"
"Sie können Ihre Internetverbindung neu konfigurieren"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7592,32 +7666,32 @@ msgstr ""
"Sie können eine Internetverbindung aufbauen oder die Verbindung neu "
"konfigurieren"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Verbindung trennen"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Die Verbindung konfigurieren"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetverbindung und -einrichtung"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7636,12 +7710,12 @@ msgstr ""
"\n"
"Wählen Sie „OK“, um fortzufahren."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netzwerk konfigurieren"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7653,7 +7727,7 @@ msgstr ""
"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
"konfigurieren.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7665,72 +7739,72 @@ msgstr ""
"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
"Falls Sie keine Autodetektion wünschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Expertenmodus"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Geräteerkennung..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale Modem Verbindung"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "an Prot %s gefunden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN Verbindung"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s gefunden"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL Verbindung"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "an Schnittstelle %s gefunden"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel Verbindung"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN Verbindung"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "Netzwerkkarte(n) gefunden"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7741,23 +7815,23 @@ msgstr ""
"ich versuchen soll.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet-Verbindung"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Möchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netzwerk Konfiguration"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7768,7 +7842,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7778,7 +7852,7 @@ msgstr ""
"\n"
"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7787,7 +7861,7 @@ msgstr ""
"neu zu starten, um Probleme, die durch die Änderung des\n"
"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7798,7 +7872,7 @@ msgstr ""
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7810,7 +7884,7 @@ msgstr ""
"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
"Fall Sie Felder verändern, wird die Konfiguration überschrieben."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7820,42 +7894,42 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Beim BS-Start aktivieren"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7867,42 +7941,52 @@ msgstr ""
"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway Gerät"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID überwachen (sinnvoll für Laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy muss „ftp://...“ sein"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9464,7 +9548,7 @@ msgstr "Drucken auf Drucker „%s“"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -10027,10 +10111,6 @@ msgstr ""
"Falls sie keinen FTP Proxy wolen, lassen Sie einfach\n"
"alle Felder leer."
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -10079,6 +10159,43 @@ msgstr "mkraid schlug Fehl (Möglicherweise fehlen die RAID-Tools)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genügend Partitionen für RAID Level %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sicherheitsebene"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sicherheitsebene"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Standard)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Wählen Sie Ihre Sicherheitsebene"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Bitte warten, bereite Installation vor"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -10420,7 +10537,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10516,7 +10633,7 @@ msgstr "Nutzen Sie das Internet nach Ihren Wünschen"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10575,7 +10692,7 @@ msgstr "Arbeitsumgebungen"
#: ../../share/advertising/07-desktop.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 bietet 11 Arbeitsumgebungen, die Sie nach Ihren Wünschen "
@@ -10605,7 +10722,7 @@ msgstr "Verwandeln Sie Ihren Rechner in einen zuverlässigen Server."
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
@@ -10626,7 +10743,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Dieses Firewall-Produkt enthält die Netzwerkkomponenten, um all Ihren "
@@ -10643,7 +10760,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -10691,8 +10808,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10728,11 +10845,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Bitte loggen Sie sich aus, und drücken Sie Ctrl-Alt-Rücktaste"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -10778,16 +10895,6 @@ msgstr "Benutzer hinzufügen"
msgid "Add/Del Clients"
msgstr "DHCP-Klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Hilfe"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Bootdiskette"
@@ -10838,49 +10945,64 @@ msgstr "Benutzer hinzufügen -->"
msgid "<-- Del User"
msgstr "<-- Benutzer löschen"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Klient hinzufügen -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Klient löschen"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "DHCP Konfigurieren ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Expertenkonfiguration"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Konfiguration speichern"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Bitte legen Sie eine Diskette ein:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kein Diskettenzugriff möglich!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Sie können die Diskette nun entfernen"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Kein Disketten-Laufwerk verfügbar"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Es trat ein Fehler auf! Ist „mkisofs“ installiert?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "„/etc/dhcpd.conf“ muss erst angelegt werden!"
@@ -11024,13 +11146,13 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -11039,41 +11161,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Kein Passwort"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -11084,65 +11206,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11150,7 +11272,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11159,7 +11281,7 @@ msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -11170,41 +11292,41 @@ msgstr ""
"(!) FTP Verbindungsprobleme: Es war nicht möglich, Ihre Dateien per FTP zu "
"übertragen.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
"„Hinzufügen“"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11212,27 +11334,27 @@ msgstr ""
"\n"
"Bitte wählen Sie alle benötigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
"wiederherstellen\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht überschreiben)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -11240,66 +11362,68 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Ãœbertragen"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -11308,69 +11432,69 @@ msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
#, fuzzy
msgid "Need hostname, username and password!"
msgstr "Ich mich unter „%s“ micht anmelden! Stimmt das Passwort?"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Ãœbertragen"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11378,36 +11502,36 @@ msgstr ""
"Bitte geben Sie den Gerätenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Datei auswählen"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den Gerätenamen fü Archivierung an."
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11415,57 +11539,57 @@ msgstr ""
"Bitte geben Sie die Maximalgröße \n"
"für DrakBackup an."
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Quota für Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Typ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "stündlich"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "täglich"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "wöchendlich"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Dämon verwenden"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11473,7 +11597,7 @@ msgstr ""
"Bitte wählen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11481,7 +11605,7 @@ msgstr ""
"Bitte wählen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11489,71 +11613,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "über Netzwerk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswählen"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11561,7 +11685,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11569,7 +11693,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11577,7 +11701,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11585,7 +11709,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11594,32 +11718,32 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Mausschnittstelle: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11628,12 +11752,12 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11642,7 +11766,7 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11651,7 +11775,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11659,19 +11783,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11680,42 +11804,42 @@ msgstr ""
"\n"
"- Dämon (%s) enthält:\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11723,7 +11847,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11731,260 +11855,260 @@ msgstr ""
"Liste der beschädigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
"Bitte entfernen Sie die Markierung oder löschen Sie sie das nächste Mal."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschädigt."
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK, die übrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
"wichtig)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP Verbindung"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sichere Verbindung"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur für inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rechnername"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Passwort"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Benutzerkennzeichen"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Rechnername: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Benutzergeführte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "<- Zurück"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11995,14 +12119,14 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -12011,19 +12135,19 @@ msgstr ""
"Fehler bei der Ãœertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Bitte wählen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -12031,59 +12155,59 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "Datenüagung via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Dateien übertragen ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Assistentengestützte Konfiguration"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -12146,7 +12270,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12161,7 +12285,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12244,7 +12368,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -12315,18 +12439,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12356,7 +12480,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12396,7 +12520,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12414,7 +12538,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12437,7 +12561,7 @@ msgstr ""
"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12519,8 +12643,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolen-Werkzeuge"
@@ -12597,28 +12721,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
@@ -12718,10 +12842,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Anwenden"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Verbunden"
@@ -12845,7 +12965,7 @@ msgstr " Modulname "
msgid "Size"
msgstr " Größe "
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "DrakFloppy"
@@ -12910,12 +13030,12 @@ msgstr "Ausgabe"
msgid "Build the disk"
msgstr " Diskette erstellen "
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12924,12 +13044,12 @@ msgstr ""
"In Laufwerk %s liegt kein Medum.\n"
"Bitte legen Sie eins ein."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ich kann nicht forken: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13421,158 +13541,158 @@ msgstr ""
"\n"
"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Arbeitsgruppe"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Partition %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Benutzer"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Löschen"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fertig"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul hinzufügen"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Drucker hinzufügen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Markierung löschen"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Markierte entfernen"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Benutzer akzeptieren"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Version: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Autoerkennung benutzen"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Autoerkennung benutzen"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Startschirmauswahl"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Benutzer"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Arbeitsgruppe"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nicht Verbunden"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13584,136 +13704,146 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Boot-Disketten Erstellung"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Auflösung"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Wählen Sie eine Datei"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Freigabename"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Einstellungen für nach der Installation"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Verlassen"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Themen installieren"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Ich kan keine Start-Vorschau erzeugen"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Gerät"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Gerät"
+msgid "Save theme"
+msgstr "Themen installieren"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Wählen Sie Ihren Monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
#, fuzzy
msgid "Display logo on Console"
msgstr "Bildschirm-Thema für die Konsole"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Farbauswahl für den Fortschrittsbalken"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Vorschau erzeugen ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13848,6 +13978,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
@@ -13877,13 +14014,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ich bin nicht in der Lage, eine Live Aktualisierung durchzuführen!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "LogDrake"
@@ -14151,16 +14288,14 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Einige Geräte in der Klasse %s wurden entfernt:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Einige Geräte in der Klasse %s wurden hinzugefügt:\n"
@@ -14237,7 +14372,7 @@ msgstr "Systemaktualisierungen"
msgid "Exit install"
msgstr "Installation beenden"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14488,8 +14623,28 @@ msgstr "Multimedia / CD-Brenner"
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Ich kan keine Start-Vorschau erzeugen"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Einstellungen für nach der Installation"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Es existiert kein alternativer OSS/ALSA Treiber für Ihre Soundkarte (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy muss „ftp://...“ sein"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlassen"
#~ msgid "%s"
#~ msgstr "%s"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 37c9a428e..856746718 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 00:12+0300\n"
"Last-Translator: Íßêïò Íýêôáñçò (Nick Niktaris) <niktaris@yahoo.com>\n"
"Language-Team: Greek <nls@hellug.gr>\n"
@@ -90,24 +90,24 @@ msgstr "Ñýèìéóç üëùí ôùí êåöáëþí áíåîÜñôçôá"
msgid "Use Xinerama extension"
msgstr "×ñÞóç åðÝêôáóçò Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ñýèìéóç ìüíï ôçò êÜñôáò \"%s\" %s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ìå åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,19 +118,19 @@ msgstr ""
"Ç êÜñôá óáò õðïóôçñßæåôáé áðü ôá XFree %s ôá ïðïßá ìðïñåß íá äßíïõí êáëýôåñç "
"õðïóôÞñéîç ãéá äéóäéÜóôáôá ãñáöéêÜ."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí óôá XFree "
"%s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ìå ÐÅÉÑÁÌÁÔÉÊÇ åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -143,7 +143,7 @@ msgstr ""
"Ç êÜñôá óáò õðïóôçñßæåôáé áðü ôá XFree %s ôá ïðïßá ìðïñåß íá äßíïõí êáëýôåñç "
"õðïóôÞñéîç ãéá äéóäéÜóôáôá ãñáöéêÜ."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ msgstr ""
"%s,\n"
"ÐÑÏÓÏ×Ç: ÐÅÉÑÁÌÁÔÉÊÇ ÕÐÏÓÔÇÑÉÎÇ - ÌÐÏÑÅÉ ÍÁ ÐÁÃÙÓÅÉ ÔÏÍ ÕÐÏËÏÃÉÓÔÇ ÓÁÓ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ïäçãüò ðñïâïëÞò åãêáôÜóôáóçò)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "ÐñïóáñìïóìÝíï"
@@ -178,32 +178,32 @@ msgstr "ÁíÜëõóç"
msgid "Test"
msgstr "ÄïêéìÞ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ÅðéëïãÝò"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "ÅíôÜîåé"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "¸îïäïò"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -300,25 +300,25 @@ msgstr "ÅðéëÝîôå áíÜëõóç êáé âÜèïò ÷ñþìáôïò"
msgid "Graphics card: %s"
msgstr "ÊÜñôá ãñáöéêþí: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "¶êõñï"
@@ -396,11 +396,11 @@ msgstr "ÅîõðçñåôçôÞò XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Ïäçãüò XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Ãñáöéêü ðåñéâÜëëïí óôçí åêêßíçóç"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"ãñáöéêü ðåñéâÜëëïí (XFree).\n"
"Åðéèõìåßôå ôçí áõôüìáôç åêêßíçóç ãñáöéêïý ðåñéâÜëëïíôïò;"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Ðïéï óýóôçìá ÷ñçóéìïðïéåß ç ôçëåüñáóç óáò;"
@@ -494,7 +494,7 @@ msgstr "ÓõìðáãÞò"
msgid "compact"
msgstr "óõìðáãÞò"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "ÁíÜëõóç ïèüíçò"
@@ -502,17 +502,17 @@ msgstr "ÁíÜëõóç ïèüíçò"
msgid "Delay before booting default image"
msgstr "ÊáèõóôÝñçóç ðñéí ôçí åêêßíçóç"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Êùäéêüò Ðñüóâáóçò"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Êùäéêüò Ðñüóâáóçò (îáíÜ)"
@@ -548,14 +548,14 @@ msgstr ""
"Ç åðéëïãÞ ``Áðáãüñåõóç åðéëïãþí ãñáììÞò åíôïëÞò'' åßíáé Ü÷ñçóôç ÷ùñßò êùäéêü "
"ðñüóâáóçò"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ðáñáêáëþ ðñïóðáèÞóôå îáíÜ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ïé êùäéêïß ðñüóâáóçò åßíáé áíüìïéïé"
@@ -597,7 +597,7 @@ msgstr ""
"\n"
"Áðü ðïéüí äßóêï îåêéíÜôå;"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -605,148 +605,148 @@ msgstr ""
"ÕðÜñ÷ïõí ïé áêüëïõèåò åðéëïãÝò.\n"
"Ìðïñåßôå íá ðñïóèÝóåôå êé Üëëåò Þ íá áëëÜîåôå ôéò õðÜñ÷ïõóåò."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ÐñïóèÞêç"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Ïëïêëçñþèçêå"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ôñïðïðïßçóç"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Ôé ôýðïõ åðéëïãÞ èÝëåôå íá ðñïóèÝóåôå;"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "¶ëëï ëåéôïõñãéêü (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "¶ëëï ëåéôïõñãéêü (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "¶ëëï ëåéôïõñãéêü (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Åéêüíá"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Ðßíáêáò"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "ÁíáóöáëÝò"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "ÅôéêÝôá"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ÐñïåðéëåãìÝíï"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "ìÝãåèïò Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "×ùñßòVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Áöáßñåóç åðéëïãÞò"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Äåí åðéôñÝðåôáé Üäåéá åôéêÝôá"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "ÐñÝðåé íá ïñßóåôå ìéá åéêüíá ðõñÞíá"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "ÐñÝðåé íá ïñßóåôå ìéá êáôÜôìçóç root"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "ÁõôÞ ç åôéêÝôá ÷ñçóéìïðïéåßôáé Þäç"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "ÂñÝèçêáí %s %s ðñïóáñìïãåßò"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "¸÷åôå Üëëïí;"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¸÷åôå êÜðïéïí ðñïóáñìïãÝá %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "¼÷é"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Íáé"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "ÐñïâïëÞ ðëçñïöïñéþí õëéêïý"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "ÅãêáôÜóôáóç ïäçãïý ãéá %s êÜñôá %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(Üñèñùìá %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Óçìåéþóôå üôé êÜèå äéåýèõíóç ðñÝðåé íá åéóÜãåôáé ìå ôï ðñüèåìá 0x üðùò "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Ïé ðáñÜìåôñïé Ý÷ïõí ôçí ìïñöÞ ``üíïìá=ôéìÞ üíïìá2=ôéìÞ2 ...''.\n"
"Ãéá ðáñÜäåéãìá, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "ÅðéëïãÝò áñèñþìáôïò:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ðïéüí ïäçãü %s íá äïêéìÜóù;"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -794,15 +794,15 @@ msgstr ""
"ôï õëéêü óáò ãéá ôéò ðáñáìÝôñïõò ðïõ ÷ñåéÜæåôáé; Ç åîÝôáóç áõôÞ ßóùò\n"
"ðñïêáëÝóåé ðÜãùìá ôïõ óõóôÞìáôïò, áëëÜ äåí èá ðñïêáëÝóåé âëÜâç."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Áõôüìáôç åîÝôáóç"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Ðñïóäéïñéóìüò ðáñáìÝôñùí"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -811,62 +811,62 @@ msgstr ""
"Ç öüñôùóç ôïõ áñèñþìáôïò %s áðÝôõ÷å.\n"
"ÈÝëåôå íá äïêéìÜóåôå îáíÜ ìå äéáöïñåôéêÝò ðáñáìÝôñïõò;"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "ðñüóâáóç óå ðñïãñÜììáôá ×"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "ðñüóâáóç óå åñãáëåßá rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "äõíáôüôçôá \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "ðñüóâáóç óå äéá÷åéñéóôéêÜ áñ÷åßá"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "ðñüóâáóç óå åñãáëåßá äéêôýïõ"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ôï %s Ý÷åé Þäç ðñïóôåèåß)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Ðáñáêáëþ åéóÜãåôå üíïìá ÷ñÞóôç"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ôï êùäéêü üíïìá ìðïñåß íá ðåñéÝ÷åé ìüíï ðåæÜ ãñÜììáôá, áñéèìïýò, `-' êáé `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Áõôü ôï üíïìá ÷ñÞóôç åßíáé ðïëý ìáêñý"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Áõôü ôï üíïìá ÷ñÞóôç õðÜñ÷åé Þäç"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "ÐñïóèÞêç ÷ñÞóôç"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -875,32 +875,32 @@ msgstr ""
"ÅéóÜãåôå ÷ñÞóôç\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Áðïäï÷Þ ÷ñÞóôç"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Ðñáãìáôéêü üíïìá"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "¼íïìá ÷ñÞóôç"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Öëïéüò (shell)"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Åéêïíßäéï"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Áõôüìáôç óýíäåóç"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,19 +909,19 @@ msgstr ""
"ôçí åêêßíçóç óå Ýíáí ÷ñÞóôç.\n"
"ÈÝëåôå áõôÞ ôçí äõíáôüôçôá;"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "ÅðéëÝîôå ôïí ðñïåðéëåãìÝíï ÷ñÞóôç:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "ÅðéëÝîôå ôïí äéá÷åéñéóôÞ ðáñáèýñùí ðïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Ðáñáêáëþ åðéëÝîôå ôç ãëþóóá."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -931,37 +931,37 @@ msgstr ""
"ôéò Üëëåò ãëþóóåò ðïõ èá åßíáé äéáèÝóéìåò ìåôÜ ôï ðÝñáò ôçò \n"
"åãêáôÜóôáóçò êáé ôçí åðáíåêêßíçóç ôïõ óõóôÞìáôüò óáò."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "¼ëá"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "ÅðéôñÝðåôáé ãéá üëïõò ôïõò ÷ñÞóôåò"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "×ùñßò êïéíÞ ÷ñÞóç"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ôï ðáêÝôï %s ðñÝðåé íá áíáâáèìéóôåß. ÈÝëåôå íá ôï åãêáôáóôÞóåôå;"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Ìðïñåßôå íá ãßíåé åîáãùãÞ ìå ôçí ÷ñÞóç NFS Þ Samba. Ðáñáêáëþ åðéëÝîôå ðïßï "
"èÝëåôå."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "¸íá áðáñáßôçôï áñ÷åßï (ôï %s ) äåí õðÜñ÷åé"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -975,11 +975,11 @@ msgstr ""
"\n"
"Ôï \"ÐñïóáñìïóìÝíï\" åðéôñÝðåé ôçí áíÜ ÷ñÞóôç ñýèìéóç.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Åêêßíçóç userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -988,31 +988,31 @@ msgstr ""
"Ìðïñåßôå íá ôçí ðñïóèÝóåôå óôïí êÜèå ÷ñÞóôç óå áõôÞ ôçí ïìÜäá ìå ôï "
"userdrake."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Êáëþò ïñßóáôå óôïõò Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Öôù÷ü"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ôõðéêü"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Õøçëü"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Õøçëüôåñï"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Ðáñáíïúêü"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1022,7 +1022,7 @@ msgstr ""
"ðéï åý÷ñçóôï, áëëÜ ðïëý åõáßóèçôï. Äåí ðñÝðåé íá ÷ñçóéìïðïéçèåß óå óýóôçìá\n"
"óõíäåäåìÝíï óôï Äéáäßêôõï Þ LAN. Äåí õðÜñ÷ïõí êùäéêïß ðñüóâáóçò."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1030,7 +1030,7 @@ msgstr ""
"Ôþñá õðÜñ÷ïõí êùäéêïß ðñüóâáóçò, áëëÜ ç ÷ñÞóç ôïõ óõóôÞìáôïò óå äßêôõï áêüìá "
"äåí óõíßóôáôáé."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1038,7 +1038,7 @@ msgstr ""
"Áõôü åßíáé ôï óõíçèéóìÝíï åðßðåäï áóöáëåßáò ãéá Ýíá óýóôçìá ðïõ èá óõíäåèåß "
"ùò ðåëÜôçò óôï Äéáäßêôõï."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1046,7 +1046,7 @@ msgstr ""
"ÕðÜñ÷ïõí Þäç êÜðïéïé ðåñéïñéóìïß, êáé ðåñéóóüôåñïé Ýëåã÷ïé åêôåëïýíôáé êÜèå "
"âñÜäõ."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1062,7 +1062,7 @@ msgstr ""
"Óçì: Áí ôï ìç÷Üíçìá åßíáé ìüíï ãéá ôçí ÷ñÞóç ùò ðåëÜôç óôï Äéáäßêôõï ôüôå "
"êáëýôåñá íá åðéëÝîåôå ÷áìçëüôåñï åðßðåäï áóöÜëåéáò"
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1070,32 +1070,32 @@ msgstr ""
"Ç áóöÜëåéá åßíáé ßäéá ôïõ ðñïçãïýìåíïõ åðéðÝäïõ, ìå ôï óýóôçìá ôåëåßùò "
"êëåéóôü. Ç áóöÜëåéá åßíáé óôï ìÝãéóôï äõíáôü."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "ÂáóéêÝò ÅðéëïãÝò DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "ÅðéëÝîôå ôï åðéèõìçôü åðßðåäï áóöáëåßáò"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Åðßðåäï áóöáëåßáò"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "×ñÞóç libsafe ãéá äéáêïìéóôÝò"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Äéá÷åéñéóôÞò Áóöáëåßáò (ðñïóðÝëáóç Þ ôá÷õäñïìåßï)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1111,7 +1111,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1135,58 +1135,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "äåí õðÜñ÷åé áñêåôüò ÷þñïò óôï /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Äåí ìðïñåßôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò óå êáôÜôìçóç %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "äåí õðÜñ÷åé áêüìá äéáèÝóéìç âïÞèåéá.\n"
@@ -1238,63 +1238,63 @@ msgstr "Ëåéôïõñãßá Lilo/grub"
msgid "Yaboot mode"
msgstr "Ëåéôïõñãßá Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "ÅãêáôÜóôáóç èåìÜôùí"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "ÅìöÜíéóç èÝìáôïò óôçí êïíóüëá"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Äçìéïõñãßá íÝïõ èÝìáôïò"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Áíôßãñáöï Áóöáëåßáò ôïõ %s óå %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "ÓöÜëìá"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "áäõíáìßá äçìéïõñãßáò áíôéãñÜöïõ áóöáëåßáò ôïõ ìçíýìáôïò lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "ÁíôéãñáöÞ %s óå %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "áäõíáìßá áëëáãÞò ìçíýìáôïò lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Äåí âñÝèçêå ôï ìÞíõìá lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Áäõíáìßá åããñáöÞò ôïõ /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "ÅããñáöÞ %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1302,17 +1302,17 @@ msgstr ""
"Áäõíáìßá åããñáöÞò /etc/sysconfig/bootsplash\n"
"Ôï áñ÷åßï äåí âñÝèçêå."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Áäõíáìßá åêêßíçóçò mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Äçìéïõñãßá initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1321,24 +1321,24 @@ msgstr ""
"ÅêôåëÝóôå \"lilo\" ùò root óôçí ãñáììÞ åíôïëþí ãéá íá ïëïêëçñùèåß ç "
"åãêáôÜóôáóç ôïõ èÝìáôïò LiLo"
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Åðáíåêêßíçóç 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Óçìåßùóç"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Åðéôõ÷Þò åãêáôÜóôáóç èåìÜôùí LiLo êáé Bootsplash"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Ç åãêáôÜóôáóç èÝìáôïò áðÝôõ÷å!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1347,21 +1347,21 @@ msgstr ""
"×ñçóéìïðïéåßôå ôïí %s ùò ðñüãñáììá åêêßíçóçò.\n"
"ÊÜíôå êëéê óôï Ñýèìéóç ãéá íá îåêéíÞóåôå ôïí ïäçãü åãêáôÜóôáóçò."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ñýèìéóç"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "ÔìÞìá Splash"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "ÈÝìáôá"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1376,44 +1376,44 @@ msgstr ""
"íá ôá åðéëÝîåôå êáé\n"
"îå÷ùñéóôÜ"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Ïèüíç Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "ÊáôÜóôáóç óõóôÞìáôïò"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Ëåéôïõñãßá ãñáöéêïý ðåñéâÜëëïíôïò êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "¼÷é, äåí åðéèõìþ áõôüìáôç ðñïóðÝëáóç"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Íáé, åðéèõìþ áõôüìáôç ðñïóðÝëáóç ìå (÷ñÞóôçò, ðåñéâÜëëïí)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "ÅíôÜîåé"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "áäõíáìßá áíïßãìáôïò ôïõ /etc/inittab ãéá áíÜãíùóç: %s"
@@ -1510,50 +1510,58 @@ msgstr "Áõóôñßá"
msgid "United States"
msgstr "Ç.Ð.Á."
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "ÍÝï"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Áðïóýíäåóç"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Óýíäåóç"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "ÅîõðçñåôçôÞò"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Óçìåßï óýíäåóçò"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Ðáñáêáëþ åéóÜãåôå ôçí äéåýèõíóç ôïõ åîõðçñåôçôÞ WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Ç äéåýèõíóç ðñÝðåé íá îåêéíÜ ìå http:// Þ https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "ÅîõðçñåôçôÞò:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Óçìåßï óýíäåóçò: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "ÅðéëïãÝò: %s"
@@ -1641,7 +1649,7 @@ msgstr "¶äåéï"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "¶ëëï"
@@ -1785,7 +1793,7 @@ msgstr ""
"Ï åöåäñéêüò ðßíáêáò êáôáôìÞóåùí Ý÷åé äéáöïñåôéêü ìÝãåèïò\n"
"Íá óõíå÷ßóù;"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Ðñïóï÷Þ"
@@ -2347,7 +2355,7 @@ msgstr ""
"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ÷ñÞóôç ôïí êùäéêü ðñüóâáóçò êáé ôï üíïìá ôïìÝá "
"ãéá ôç óýíäåóç óôïí host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "¼íïìá ÷ñÞóôç"
@@ -2359,23 +2367,23 @@ msgstr "ÔïìÝáò"
msgid "Search servers"
msgstr "ÁíáæÞôçóç äéáêïìéóôþí"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ìïñöïðïßçóç ôïõ %s áðÝôõ÷å"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "äåí îÝñù ðþò íá ìïñöïðïéÞóù ôï %s óå ôýðï %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "ç óýíäåóç ôçò êáôÜôìçóçò %s óôïí êáôÜëïãï %s áðÝôõ÷å"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "óöÜëìá êáôÜ ôçí áðïóýíäåóç ôïõ %s: %s"
@@ -2470,47 +2478,110 @@ msgstr "Êáìßá åíÝñãåéá ðñïò åêôÝëåóç"
msgid "Error opening %s for writing: %s"
msgstr "ÓöÜëìá êáôÜ ôï Üíïéãìá ôïõ %s ãéá åããñáöÞ: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "ÊáíÝíáò åíáëëáêôéêüò ïäçãüò"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Äåí õðÜñ÷åé ãíùóôüò åíáëëáêôéêüò ïäçãüò OSS/ALSA ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Ñýèìéóç Þ÷ïõ"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Åäþ ìðïñåßôå íá åðéëÝîåôå Ýíáí åíáëëáêôéêü ïäçãü (OSS Þ ALSA) ãéá ôçí êÜñôá "
"Þ÷ïõ óáò (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Ïäçãüò:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "ÂïÞèåéá"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå... ÅöáñìïãÞ ñõèìßóåùí"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "ÊáíÝíáò ãíùóôüò ïäçãüò"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Äåí õðÜñ÷åé êÜðïéïò ãíùóôüò ïäçãüò ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "¶ãíùóôïò ïäçãüò"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2628,7 +2699,8 @@ msgid "/_Quit"
msgstr "/_¸îïäïò"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_ÂïÞèåéá"
@@ -2649,14 +2721,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_ÁíáöïñÜ Bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Ó÷åôéêÜ ìå..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Ó÷åôéêÜ ìå ôï Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2664,56 +2740,53 @@ msgstr ""
"Áõôü åßíáé ôï HardDrake, Ýíá åñãáëåßï ñýèìéóçò ôçò Mandrake\n"
"¸êäïóç:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "¸êäïóç Harddrake2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Õëéêü ðïõ áíé÷íåýèçêå"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Ðëçñïöïñßåò"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Ñýèìéóç áñèñþìáôïò"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "ÅêôÝëåóç åñãáëåßï ñýèìéóçò"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "áíß÷íåõóç óå åîÝëéîç %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Åäþ ìðïñåßôå íá ñõèìßóåôå ôéò ðáñáìÝôñïõò ôïõ áñèñþìáôïò."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "ÅêôÝëåóç ôïõ \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "ðñùôåýïõóá"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "äåõôåñåýïõóá"
@@ -4105,7 +4178,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "ÐñÝðåé åðßóçò íá ìïñöïðïéÞóåôå ôï %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4130,7 +4203,7 @@ msgstr ""
"\n"
"ÈÝëåôå ðñáãìáôéêÜ íá åãêáôáóôÞóåôå áõôïýò ôïõò åîõðçñåôçôÝò;\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4143,20 +4216,20 @@ msgstr ""
"\n"
"ÈÝëåôå ðñáãìáôéêÜ íá áöáéñÝóôå áõôÜ ôá ðáêÝôá;\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Äåí ìðïñþ íá ÷ñçóéìïðïéÞóù broadcast ÷ùñßò ôïìÝá NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ÅéóÜãåôå ìéá ìïñöïðïéçìÝíç äéóêÝôá FAT óôïí ïäçãü %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "ÁõôÞ ç äéóêÝôá äåí Ý÷åé ìïñöïðïßçóç FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4164,12 +4237,12 @@ msgstr ""
"Ãéá íá ÷ñçóéìïðïéÞóåôå áõôÞí ôçí áðïèçêåõìÝíç åðéëïãÞ ðáêÝôùí, îåêéíÞóôå ôçí "
"åãêáôÜóôáóç ìå ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "ÓöÜëìá êáôÜ ôçí áíÜãíùóç ôïõ áñ÷åßïõ %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4418,7 +4491,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Êáëþò ïñßóáôå óôï %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
@@ -4449,11 +4522,11 @@ msgstr "Ôýðïò åãêáôÜóôáóçò"
msgid "Please choose one of the following classes of installation:"
msgstr "Ðáñáêáëþ åðéëÝîáôå ìéá áðü ôïõò ðáñáêÜôù ôýðïò åãêáôÜóôáóçò:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "ÅðéëïãÞ ÏìÜäùí ÐáêÝôùí"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "ÅðéëïãÞ îå÷ùñéóôþí ðáêÝôùí"
@@ -4530,7 +4603,7 @@ msgstr "Áõôüìáôç ðñïâïëÞ åðéëåãìÝíùí ðáêÝôùí"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "ÅãêáôÜóôáóç"
@@ -4550,7 +4623,7 @@ msgstr "ÅëÜ÷éóôç ÅãêáôÜóôáóç"
msgid "Choose the packages you want to install"
msgstr "ÅðéëÝîôå ôá ðáêÝôá ðïõ èÝëåôå íá åãêáôáóôÞóåôå"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "ÅãêáôÜóôáóç"
@@ -4577,17 +4650,17 @@ msgid "Installing package %s"
msgstr "ÅãêáôÜóôáóç ðáêÝôïõ %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Áðïäï÷Þ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "¶ñíçóç"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4602,16 +4675,16 @@ msgstr ""
"ÅÜí äåí ôï Ý÷åôå, ðáôÞóôå Áêýñùóç ãéá áðïöõãÞ åãêáôÜóôáóçò áðü áõôü ôï CdRom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Íá óõíå÷ßóù;"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí ôáîéíüìçóç ôùí ðáêÝôùí:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí åãêáôÜóôáóç ôùí ðáêÝôùí:"
@@ -4707,7 +4780,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4785,7 +4858,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Åßóôå âÝâáéïé ãéá ôçí Üñíçóç ôçò Üäåéáò ÷ñÞóçò;"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ðëçêôñïëüãéï"
@@ -4998,11 +5071,11 @@ msgstr "ÅéóÜãåôå äéóêÝôá ðïõ ðåñéÝ÷åé ôçí åðéëïãÞ ðáêÝôùí"
msgid "Selected size is larger than available space"
msgstr "Ôï åðéëåãìÝíï ìÝãåèïò åßíáé ìåãáëýôåñï áðü ôï äéáèÝóéìï ÷þñï"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Ôýðïò åãêáôÜóôáóçò"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5010,19 +5083,19 @@ msgstr ""
"Äåí Ý÷åôå åðéëÝîåé ïìÜäá ðáêÝôùí.\n"
"Ðáñáêáëþ åðéëÝîôå ôçí åëÜ÷éóôç åãêáôÜóôáóç ðïõ èÝëåôå:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Ìå ×"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Ìå ôçí âáóéêÞ ôåêìçñßùóç (óõíéóôÜôáé!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "ÐñáãìáôéêÜ åëÜ÷éóôç åãêáôÜóôáóç (åéäéêÜ ÷ùñßò urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5032,16 +5105,16 @@ msgstr ""
"ÅÜí äåí Ý÷åôå êáíÝíá áðü ôá ðáñáêÜôù CDs, ðáôÞóôå Áêýñùóç.\n"
"ÅÜí äåí Ý÷åôå êÜðïéá áðü áõôÜ, áðïåðéëÝîôå ôá êáé ðáôÞóôå Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ïíüìáôé \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ðñïåôïéìáóßá åãêáôÜóôáóçò"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5050,21 +5123,21 @@ msgstr ""
"ÅãêáôÜóôáóç ðáêÝôïõ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ñõèìßóåéò ìåôÜ ôçí åãêáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ðáñáêáëþ åéóÜãåôå ôç äéóêÝôá Åêêßíçóçò óôïí ïäçãü %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ðáñáêáëþ åéóÜãåôå ôç äéóêÝôá ÁíáâÜèìéóçò ÁñèñùìÜôùí óôïí ïäçãü %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5130,7 +5203,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5151,160 +5224,160 @@ msgstr ""
"ÈÝëåôå íá åãêáôáóôÞóåôå ôéò áíáâáèìßóåéò ;"
# fuzzy
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Óýíäåóç ìå ôçí ôïðïèåóßá ôçò Mandrake Linux ãéá ëÞøç ôùí äéáèÝóéìùí ôüðùí "
"ëÞøçò..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "ÅðéëÝîôå ôüðï áðü ôïí ïðïßï èá ãßíåé ç ëÞøç ðáêÝôùí"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Óýíäåóç ìå ôïí ôüðï ãéá ôçí ëÞøç ôùí äéáèÝóéìùí ðáêÝôùí..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Ðïéá åßíáé ç æþíç þñáò;"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Ôï ñïëüé ôïõ õðïëïãéóôÞ óáò åßíáé ñõèìéóìÝíï óå GMT (þñá Ãêñßíïõéôò)"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Áõôüìáôïò óõã÷ñïíéóìüò þñáò (÷ñÞóç NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "ÅîõðçñåôçôÞò NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "ÁðïìáêñõóìÝíïò åîõðçñåôçôÞò CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "ÊáíÝíáò åêôõðùôÞò"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "¸÷åôå êÜñôá Þ÷ïõ ISA;"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"ÅêôåëÝóôå \"sndconfig\" ìåôÜ ôçí åãêáôÜóôáóç ãéá ôçí ñýèìéóç ôçò êÜñôáò"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Äåí âñÝèçêå êÜñôá Þ÷ïõ. ÄïêéìÜóôå ôï \"harddrake\" ìåôÜ ôçí åãêáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ðåñßëçøç"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ðïíôßêé"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "ÙñïëïãéáêÞ Æþíç"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ÅêôõðùôÞò"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ÊÜñôá ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ÊÜñôá Þ÷ïõ"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "ÊÜñôá TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "ÔïìÝáò Windows "
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "ÔïðéêÜ áñ÷åßá"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Êùäéêüò ðñüóâáóçò root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "×ùñßò êùäéêü ðñüóâáóçò"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Áõôüò ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò (ðñÝðåé íá Ý÷åé ôïõëÜ÷éóôïí %d "
"÷áñáêôÞñåò)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ðéóôïðïßçóç"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Ðéóôïðïßçóç LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "ÅîõðçñåôçôÞò LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Ðéóôïðïßçóç NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "ÔïìÝáò NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "ÅîõðçñåôçôÞò NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5320,19 +5393,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Ðéóôïðïßçóç ÔïìÝá Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "¼íïìá ×ñÞóôç Äéá÷åéñéóôÞ ÔïìÝá"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Êùäéêüò Ðñüóâáóçò Äéá÷åéñéóôÞ ÔïìÝá"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5363,19 +5436,19 @@ msgstr ""
"ïäçãü\n"
"äéóêÝôáò êáé ðáôÞóôå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ðñþôïò ïäçãüò äéóêÝôáò"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Äåýôåñïò ïäçãüò äéóêÝôáò"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "ÐáñÜëåéøç"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5401,7 +5474,7 @@ msgstr ""
"ÈÝëåôå íá äçìéïõñãÞóåôå äéóêÝôá åêêßíçóçò;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5415,28 +5488,28 @@ msgstr ""
"ç äçìéïõñãßá äéóêÝôá åêêßíçóçò ìåãÝèïõò 1.44 Mb ìÜëëïí èá áðïôý÷åé,\n"
"åðåéäÞ ôï XFS ÷ñåéÜæåôáé ðïëý ìåãÜëïõò ïäçãïýò.)"
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "ËõðÜìáé, äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ÅðéëÝîôå ïäçãü äéóêÝôáò ãéá äçìéïõñãßá äéóêÝôáò åêêßíçóçò"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "ÅéóÜãåôå äéóêÝôá óôïí ïäçãü %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Äçìéïõñãßá äßóêïõ åêêßíçóçò..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ðñïåôïéìáóßá ðñïãñÜììáôïò åêêßíçóçò..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5448,11 +5521,11 @@ msgstr ""
"Ç åãêáôÜóôáóç èá óõíå÷éóôåß, áëëÜ\n"
"èá ÷ñåéáóôåß íá ÷ñçóéìïðïéÞóåôå ôï BootX ãéá íá îåêéíÞóåôå ôï ìç÷ÜíçìÜ óáò"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "ÈÝëåôå íá ÷ñçóéìïðïéÞóåôå ôï aboot;"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5461,17 +5534,17 @@ msgstr ""
"ðñïóðÜèåéá âåâéáóìÝíçò åãêáôÜóôáóçò, áêüìá êáé áí áõôü Ý÷åé óáí áðïôÝëåóìá "
"ôçí êáôáóôñïöÞ ôçò ðñþôçò êáôÜôìçóçò;"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Ðñüãñáììá åêêßíçóçò"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ç åãêáôÜóôáóç ôïõ ðñïãñÜììáôïò åêêßíçóçò áðÝôõ÷å. ÐñïêëÞèçêå ôï áêüëïõèï "
"óöÜëìá:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5490,17 +5563,17 @@ msgstr ""
"Óôçí åðüìåíç åêêßíçóç èá ðñÝðåé íá äåßôå ôçí ðñïôñïðÞ ôïõ ðñïãñÜììáôïò "
"åêêßíçóçò ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ÅéóÜãåôå Üäåéá äéóêÝôá óôïí ïäçãü %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5510,7 +5583,7 @@ msgstr ""
"\n"
"ÈÝëåôå óßãïõñá íá åãêáôáëåßøåôå ôþñá;"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5544,15 +5617,15 @@ msgstr ""
"ó÷åôéêü\n"
"êåöÜëáéï ôïõ åðßóçìïõ ïäçãïý ÷ñÞóçò ôïõ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5566,15 +5639,15 @@ msgstr ""
"\n"
"Ìðïñåß íá ðñïôéìÜôå íá åðáíáëÜâåôå ôçí åãêáôÜóôáóç.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Áõôüìáôï"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Åðáíáöüñôùóç"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "ÁðïèÞêåõóç åðéëïãÞò ðáêÝôùí"
@@ -5610,14 +5683,14 @@ msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
msgid "Basic"
msgstr "ÂáóéêÞ"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Ðñïçãïýìåíï"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Åðüìåíï"
@@ -6060,7 +6133,7 @@ msgstr "Äåîéü ðëÞêôñï \"Windows\""
msgid "Circular mounts %s\n"
msgstr "ÊõêëéêÝò óõíäÝóåéò %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "ÁöáéñÝóôå ðñþôá ôéò ëïãéêÝò ìïíÜäåò\n"
@@ -6197,15 +6270,15 @@ msgstr "êáíÝíá"
msgid "No mouse"
msgstr "×ùñßò ðïíôßêé"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Ðáñáêáëþ äïêéìÜóôå ôï ðïíôßêé"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Ãéá åíåñãïðïßçóç ðïíôéêéïý"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ÊÉÍÇÓÔÅ ÔÏ ÑÏÄÁÊÉ!"
@@ -6241,11 +6314,11 @@ msgstr "Óýìðôõîç äÝíôñïõ"
msgid "Toggle between flat and group sorted"
msgstr "ÅíáëëáãÞ ìåôáîý åðßðåäçò êáé ïìáäéêÞò ôáîéíüìçóçò"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Óýíäåóç óôï Äéáäßêôõï"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6255,23 +6328,19 @@ msgstr ""
"ÏñéóìÝíåò óõíäÝóåéò ÷ñçóéìïðïéïýí pptp, êÜðïéåò ëßãåò dhcp.\n"
"ÅÜí äåí îÝñåôå, åðéëÝîôå '÷ñÞóç pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "÷ñÞóç dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "÷ñÞóç pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "÷ñÞóç pptp"
@@ -6374,7 +6443,7 @@ msgstr ""
msgid "no network card found"
msgstr "äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Ñýèìéóç äéêôýïõ"
@@ -6390,15 +6459,15 @@ msgstr ""
"Ôï üíïìá áõôü ðñÝðåé íá åßíáé Ýíá ðëÞñåò üíïìá óõóôÞìáôïò,\n"
"üðùò ð.÷. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "¼íïìá óõóôÞìáôïò"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Ïäçãüò Ñýèìéóçò Äéêôýïõ"
@@ -6446,8 +6515,8 @@ msgid "Old configuration (isdn4net)"
msgstr "ÐáëéÜ ñýèìéóç (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Ñõèìßóåéò ISDN"
@@ -6483,23 +6552,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Ðïéï ðñùôüêïëëï èÝëåôå íá ÷ñçóéìïðïéÞóåôå;"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Ôé åßäïõò êÜñôáò Ý÷åôå;"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Äåí îÝñù"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6512,19 +6586,19 @@ msgstr ""
"\n"
"ÅÜí Ý÷åôå PCMCIA êÜñôá, ðñÝðåé íá îÝñåôå ôï irq êáé ôï io ôçò êÜñôáò óáò.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Áêýñùóç"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "ÓõíÝ÷åéá"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Ðïéá åßíáé ç ISDN êÜñôá óáò;"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6532,7 +6606,7 @@ msgstr ""
"Åíôüðéóá ìéá ISDN êÜñôá, áëëÜ äåí îÝñù ôïí ôýðï ôçò. Ðáñáêáëþ åðéëÝîôå ìéá "
"êÜñôá PCI áðü ôçí ðáñáêÜôù ïèüíç."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Äåí âñÝèçêå êÜñôá ISDN. Ðáñáêáëþ åðéëÝîôå ìéá áðü ôçí ðáñáêÜôù ïèüíç."
@@ -6584,7 +6658,7 @@ msgstr "Ðñþôïò åîõðçñåôçôÞò DNS (ðñïáéñåôéêü)"
msgid "Second DNS Server (optional)"
msgstr "Äåýôåñïò åîõðçñåôçôÞò DNS (ðñïáéñåôéêü)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6592,7 +6666,7 @@ msgstr ""
"\n"
"Ìðïñåßôå íá áðïóõíäåèåßôå Þ íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6600,11 +6674,11 @@ msgstr ""
"\n"
"Ìðïñåßôå íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "ÁõôÞ ôç óôéãìÞ åßóôå óõíäåäåìÝíïé óôï Äéáäßêôõï."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6612,32 +6686,32 @@ msgstr ""
"\n"
"Ìðïñåßôå íá óõíäåèåßôå óôï Äéáäßêôõï Þ íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "ÁõôÞ ôç óôéãìÞ äåí åßóôå óõíäåäåìÝíïé óôï Äéáäßêôõï."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Óýíäåóç"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Áðïóýíäåóç"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Ñýèìéóç ôçò óýíäåóçò"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Óýíäåóç êáé ñýèìéóç Äéáäéêôýïõ"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ôþñá èá ñõèìßóïõìå ôçí %s óýíäåóç."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6656,12 +6730,12 @@ msgstr ""
"\n"
"ÐáôÞóôå ôï OK ãéá íá îåêéíÞóåôå"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ñõèìßóåéò äéêôýïõ"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6672,7 +6746,7 @@ msgstr ""
"ÊÜíôå êëéê óôï Ok ãéá íá äéáôçñÞóåôå ôéò ñõèìßóåéò óáò, Þ Üêõñï ãéá "
"íáîáíáñõèìßóåôå ôç óýíäåóç óôï Äéáäßêôõï.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6685,72 +6759,72 @@ msgstr ""
"Áí äåí èÝëåôå íá ÷ñçóéìïðïéÞóåôå ôçí áõôüìáôç áíß÷íåõóç, áðïåðéëÝîôå ôï "
"êïõôÜêé.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "ÅðéëÝîôå ôï ðñïößë ãéá ñýèìéóç"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Åíôïðéóìüò óõóêåõþí..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "ÁðëÞ óýíäåóç ìå ìüíôåì"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "áíé÷íåýèçêå óôçí ðüñôá %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Óýíäåóç ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "áíé÷íåýèçêå ôï %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Óýíäåóç ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "áíé÷íåýèçêå óôçí äéåðáöÞ %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "ÊáëùäéáêÞ óýíäåóç"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "áíé÷íåýèçêå êáëùäéáêÞ óýíäåóç"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Óýíäåóç LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "áíé÷íåýèçêáí êÜñôá(åò) ethernet"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "ÅðéëÝîôå ôç óýíäåóç ðïõ èÝëåôå íá ñõèìßóåôå"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6760,23 +6834,23 @@ msgstr ""
"ÅðéëÝîôå áõôüí ðïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Óýíäåóç Äéáäéêôýïõ"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "ÈÝëåôå íá óõíäÝåóôå êáôÜ ôçí åêêßíçóç;"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ñõèìßóåéò äéêôýïõ"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Ôï äßêôõï ðñÝðåé íá åðáíåêêéíçèåß"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6787,7 +6861,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6797,7 +6871,7 @@ msgstr ""
"Ïé ñõèìßóåéò èá åöáñìïóôïýí ôþñá óôï óýóôçìÜ óáò.\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6805,7 +6879,7 @@ msgstr ""
"Áöïý ãßíåé áõôü, ðñïôåßíïõìå íá åðáíåêêéíÞóåôå ôï ×ðåñéâÜëëïí ãéá íá "
"áðïöýãåôå ôá ðñïâëÞìáôá áëëáãÞò hostname."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6815,7 +6889,7 @@ msgstr ""
"ÄïêéìÜóôå ôç óýíäåóç ìå ôï net_monitor Þ ôï mcc. Áí äåí ëåéôïõñãÞóåé ç "
"óýíäåóç, ôüôå èá ðñÝðåé íá åêêéíÞóåôå îáíÜ ôç ñýèìéóç."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6827,7 +6901,7 @@ msgstr ""
"ÁðëÜ ðáôÞóôå OK ãéá íá êñáôÞóåôå ôéò õðÜñ÷ïõóåò ñõèìßóåéò.\n"
"ÁëëÜæïíôáò ôá ðáñáêÜôù ðåäßá èá áëëÜîåôå ôçí õðÜñ÷ïõóá ñýèìéóç."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6837,42 +6911,42 @@ msgstr ""
"ÊÜèå óôïé÷åßï ðñÝðåé íá åéóá÷èåß ùò IP äéåýèõíóç ìå áñéèìïýò\n"
"÷ùñéóìÝíïõò ìå ôåëåßåò (ðáñÜäåéãìá: 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ñýèìéóç óõóêåõÞò äéêôýïõ %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (ïäçãüò %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Äéåýèõíóç IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "ÌÜóêá äéêôýïõ"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Áõôüìáôï IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Óôçí åêêßíçóç óõóôÞìáôïò"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6884,43 +6958,53 @@ msgstr ""
"üðùò ð.÷. ``mybox.mylab.myco.com''.\n"
"Ìðïñåßôå åðßóçò íá åéóÜãåôå êáé ôçí äéåýèõíóç IP ôçò ðýëçò äéêôýïõ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "ÅîõðçñåôçôÞò DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Ðýëç (ð.÷. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "ÓõóêåõÞ ðýëçò"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Ñõèìßóåéò proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
"ÁíáæÞôçóç ôáõôüôçôáò ôçò êÜñôáò äéêôýïõ (÷ñÞóéìï ãéá öïñçôïýò õðïëïãéóôÝò)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Ï proxy ðñÝðåé íá åßíáé http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Ï proxy ðñÝðåé íá åßíáé ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Ôï URL ðñÝðåé íá îåêéíÜ ìå 'http:' Þ 'ftp:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8410,7 +8494,7 @@ msgstr "Åêôýðùóç óôïí åêôõðùôÞ \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8957,10 +9041,6 @@ msgstr ""
"Ðáñáêáëþ óõìðëçñþóôå ôéò ðëçñïöïñßåò ãéá ôï ftp proxy\n"
"ÁöÞóôå ôá êåíÜ áí äåí åðéèõìåßôå ftp proxy"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Ôï URL ðñÝðåé íá îåêéíÜ ìå 'http:' Þ 'ftp:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9010,6 +9090,43 @@ msgstr "áðïôõ÷ßá mkraid (ìÞðùò áðïõóéÜæïõí ôá raidtools;)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Äåí õðÜñ÷ïõí áñêåôÝò êáôáôìÞóåéò ãéá RAID åðéðÝäïõ %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Åðßðåäï áóöáëåßáò"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Åðßðåäï áóöáëåßáò"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Äéá÷åéñéóôÞò Áóöáëåßáò (ðñïóðÝëáóç Þ ôá÷õäñïìåßï)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (ÐñïåðéëåãìÝíïò)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Ñýèìéóç åðéðÝäïõ áóöáëåßáò"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ðñïåôïéìáóßá åãêáôÜóôáóçò..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Åêêßíçóç ôïõ ALSA (Advanced Linux Sound Architecture) óõóôÞìáôïò Þ÷ïõ"
@@ -9327,7 +9444,7 @@ msgstr "Äéáäßêôõï"
msgid "File sharing"
msgstr "Êïéíü÷ñçóôá áñ÷åßá"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Óýóôçìá"
@@ -9417,7 +9534,7 @@ msgstr "Óýíäåóç óôï Äéáäßêôõï"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9462,7 +9579,7 @@ msgstr "ÄéåðáöÝò ×ñçóôþí"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9487,7 +9604,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9503,7 +9620,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9518,7 +9635,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9567,8 +9684,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9604,11 +9721,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "ÅãêáôÜóôáóç ðáêÝôùí..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ðáñáêáëþ áðïóõíäåèåßôå êáé ìåôÜ ðáôÞóôå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ðáñáêáëþ åðáíáóõíäåèåßôå ùò %s ãéá åíåñãïðïßçóç ôùí áëëáãþí"
@@ -9649,16 +9766,6 @@ msgstr "ÐñïóèÞêç/Áöáßñåóç ×ñçóôþí"
msgid "Add/Del Clients"
msgstr "ÐñïóèÞêç/Áöáßñåóç Ðåëáôþí"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "ÂïÞèåéá"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "ÄéóêÝôá Åêêßíçóçò"
@@ -9707,48 +9814,64 @@ msgstr "ÐñïóèÞêç ÷ñÞóôç -->"
msgid "<-- Del User"
msgstr "<-- ÄéáãñáöÞ ×ñÞóôç"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Åéêüíåò Net Boot"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "ÐñïóèÞêç ÐåëÜôç -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- ÄéáãñáöÞ ÐåëÜôç"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Ñýèìéóç dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Ðñï÷ùñçìÝíåò Ñõèìßóåéò"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "ÅããñáöÞ Ñýèìéóçò"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Ðáñáêáëþ åéóÜãåôå äéóêÝôá Åêêßíçóçò:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Äåí åßíáé äõíáôÞ ç ðñüóâáóç óôç äéóêÝôá!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Ôþñá ìðïñåßôå íá áöáéñÝóôå ôç äéóêÝôá"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Ç åéêüíá Etherboot ISO åßíáé ç %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "ÊÜôé äåí ðÞãå êáëÜ! Åßíáé ôï mkisofs åãêáôåóôçìÝíï;"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "ÐñÝðåé íá äçìéïõñãÞóù ðñþôá ôï /etc/dhcpd.conf!"
@@ -9879,12 +10002,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "ÓõíïëéêÞ ðñüïäïò"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9893,41 +10016,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Ìðïñåß íá ÷ñåéáóôïýí ìåñéêÜ ëåðôÜ ãéá ôç äçìéïõñãßá ôùí êëåéäéþí:"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "×ùñßò óõíèçìáôéêü"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Áäõíáìßá áíïßãìáôïò %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9945,64 +10068,64 @@ msgstr ""
"\n"
"÷ùñßò íá æçôçèåß êùäéêüò ðñüóâáóçò."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Ôï áðïìáêñõóìÝíï WebDAV åßíáé Þäç óå óõã÷ñïíéóìü!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "Ç ìåôáöïñÜ WebDAV áðÝôõ÷å!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Äåí õðÜñ÷åé CDR/DVDR óôïí ïäçãü!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "ºóùò ÷ñåéáóôïýí ìåñéêÜ ëåðôÜ ãéá íá óâçóôåß ôï ìÝóï."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Ðñüâëçìá äéêáéùìÜôùí óôçí ðñüóâáóç ôïõ CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Áíôßãñáöï Áóöáëåßáò óõóôÞìáôïò áñ÷åßùí..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Áíôßãñáöá Áóöáëåßáò Óêëçñïý Äßóêïõ"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Áíôßãñáöï Áóöáëåßáò ôùí áñ÷åßùí ×ñçóôþí..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Äéáäéêáóßá ÁíôéãñÜöùí áóöáëåßáò óôïí Óêëçñü Äßóêï..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Áíôßãñáöï Áóöáëåßáò ¶ëëùí áñ÷åßùí..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Äåí õðÜñ÷ïõí áëëáãÝò ãéá íá ãßíïõí áíôßãñáöá áóöáëåßáò!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10010,14 +10133,14 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10027,39 +10150,39 @@ msgstr ""
" ÓöÜëìá óôç óýíäåóç FTP . Äåí Þôáí äõíáôÞ ç áðïóôïëÞ ôùí áíôéãñÜöùí "
"áóöáëåßáò ìÝóù FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "ÓöÜëìá êáôÜ ôçí áðïóôïëÞ ìçíýìáôïò. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Áäýíáôç ç äçìéïõñãßá êáôáëüãïõ!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "ÅðéëïãÞ Áñ÷åßïõ"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Ðáñáêáëþ åðéëÝîôå ôá áñ÷åßá Þ ôïõò êáôáëüãïõò êáé êÜíôå êëéê óôï 'ðñïóèÞêç'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10067,26 +10190,26 @@ msgstr ""
"\n"
"Ðáñáêáëþ åðéëÝîôå üëåò ôéò åðéëïãÝò ðïõ ÷ñåéÜæåóôå.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"ÁõôÝò ïé åðéëïãÝò ìðïñïýí íá ðÜñïõí áíôßãñáöá áóöáëåßáò êáé íá åðáíáöÝñïõí "
"ôï /etc\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Áíôßãñáöï áóöáëåßáò ôùí áñ÷åßùí ÓõóôÞìáôïò (êáôÜëïãïò /etc )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10094,50 +10217,50 @@ msgstr ""
"Ìå áõôÞ ôçí åðéëïãÞ èá ìðïñåßôå íá åðáíáöÝñåôå ïðïéáäÞðïôå\n"
"Ýêäïóç ôïõ êáôáëüãïõ /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Ðáñáêáëþ åðéëÝîôå üóïõò ÷ñÞóôåò èÝëåôå íá õðÜñ÷ïõí óôá áíôßãñáöá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Áöáßñåóç ÅðéëåãìÝíùí"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "×ñÞóôåò"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "×ñÞóç óýíäåóç äéêôýïõ ãéá ôá áñ÷åßá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10145,76 +10268,78 @@ msgstr ""
" ÌåôáöïñÜ \n"
"Ôþñá"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Ðáñáêáëþ ïñßóôå ôïí äéêôõáêü üíïìá Þ ôçí IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Ðáñáêáëþ åéóÜãåôå ôï üíïìá ÷ñÞóôç"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Ðáñáêáëþ åéóÜãåôå ôïí êùäéêü ðñüóâáóçò"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Áðïìíçìüíåõóç ôïõ êùäéêïý ðñüóâáóçò"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "×ñÞóç CD/DVDROM ãéá ôá áñ÷åßá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Ðáñáêáëþ ïñßóôå ôïí ÷þñï ôïõ CD/DVD "
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr "ÓâÞóéìï Ôþñá "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10222,33 +10347,33 @@ msgstr ""
"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôçò óõóêåõÞò åããñáöÞò CD\n"
"ð.÷. : 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Äåí êáèïñßóôçêå óõóêåõÞ CD"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "×ñÞóç ôáéíßáò ãéá ôá áñ÷åßá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
"Ðáñáêáëþ åéóÜãåôáé ôï üíïìá óõóêåõÞò ãéá ôç ÷ñÞóç ôùí áíôéãñÜöùí áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10256,55 +10381,55 @@ msgstr ""
"Ðáñáêáëþ åðéëÝîôå ôï ìÝãéóôï ìÝãåèïò\n"
"ðïõ åðéôñÝðåôáé óôï Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Ðáñáêáëþ ïñßóôå ôïí êáôÜëïãï áðïèÞêåõóçò: "
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Äßêôõï"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Óêëçñüò Äßóêïò / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ùñéáßá"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "êáèçìåñéíÜ"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "åâäïìáäéáßá"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ìçíéáßá"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "×ñÞóç äáßìïíá"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10313,7 +10438,7 @@ msgstr ""
"äéÜóôçìá ìåôáîý ôïõ êÜèå\n"
"áíôßãñáöïõ áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10322,79 +10447,79 @@ msgstr ""
"ìÝóï ãéá ôá áíôßãñáöá \n"
"áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
"ÁðïóôïëÞ çëåêôñïíéêïý ìçíýìáôïò ìåôÜ áðü êÜèå ëÞøç áíôéãñÜöùí áóöáëåßáò óôï:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Ôé"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Ðïõ"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Ðüôå"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Ðåñéóóüôåñåò ÅðéëïãÝò"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Ñõèìßóåéò Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Ðáñáêáëþ åðéëÝîôå ôçí èÝóç ôùí áíôéãñÜöùí áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "óôïí Óêëçñü Äßóêï"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "óôï Äßêôõï"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "óôï CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Ðáñáêáëþ åðéëÝîôå ôé èÝëåôå íá ðÜñåôå óå áíôßãñáöá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Áíôßãñáöï Áóöáëåßáò ÓõóôÞìáôïò"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Áíôßãñáöï Áóöáëåßáò ×ñçóôþí"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "ÅðéëïãÞ ÷ñÞóôç ÷åéñïêßíçôá"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10402,7 +10527,7 @@ msgstr ""
"\n"
"- ÐçãÝò ÁíôéãñÜöùí Áóöáëåßáò:\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10410,7 +10535,7 @@ msgstr ""
"\n"
"- Áñ÷åßá ÓõóôÞìáôïò:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10418,7 +10543,7 @@ msgstr ""
"\n"
"- Áñ÷åßá ×ñçóôþí:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10426,7 +10551,7 @@ msgstr ""
"\n"
"- ¶ëëá Áñ÷åßá:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10435,13 +10560,13 @@ msgstr ""
"\n"
"- ÁðïèÞêåõóç óôïí óêëçñü äßóêï óôçí èÝóç: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10449,39 +10574,39 @@ msgstr ""
"\n"
"- ÅããñáöÞ óå CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "Óôç ÓõóêåõÞ : %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10490,7 +10615,7 @@ msgstr ""
"\t\t üíïìá ÷ñÞóôç: %s\n"
"\t\t óôç èÝóç: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10498,19 +10623,19 @@ msgstr ""
"\n"
"- ÅðéëïãÝò:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\t×ùñßò ôï Áñ÷åßï ÓõóôÞìáôïò\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tÁíôßãñáöá Áóöáëåßáò ùò tar êáé bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tÁíôßãñáöá Áóöáëåßáò ùò tar êáé gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10519,39 +10644,39 @@ msgstr ""
"\n"
"- Äáßìïíáò (%s) ìáæß ìå :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Óêëçñüò Äßóêïò.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Äßêôõï ìÝóù FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Äßêôõï ìÝóù SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10559,7 +10684,7 @@ msgstr ""
"Ëßóôá ôùí äåäïìÝíùí ðñïò åðáíáöïñÜ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10567,106 +10692,106 @@ msgstr ""
"Ëßóôá ôùí êáôåóôñáììÝíùí äåäïìÝíùí:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Ðáñáêáëþ áöáéñÝóôå ôï ôçí åðüìåíç öïñÜ."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Ôá áíôßãñáöá áóöáëåßáò åßíáé êáôåóôñáììÝíá"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " ¼ëá ôá åðéëåãìÝíá äåäïìÝíá Ý÷ïõí "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Áíáêôçèåß ìå åðéôõ÷ßá óôï %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Ñõèìßóåéò ÅðáíáöïñÜò "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "ÅíôÜîåé ãéá ôçí åðáíáöïñÜ ôùí Üëëùí áñ÷åßùí."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Áíôßãñáöá áóöáëåßáò áñ÷åßùí óõóôÞìáôïò ðñéí áðü:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Ðáñáêáëþ åðéëÝîôå ôçí çìåñïìçíßá åðáíáöïñÜò"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "×ñÞóç óêëçñïý äßóêïõ ãéá ôá áíôßãñáöá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Ðáñáêáëþ ïñßóôå ôïí êáôÜëïãï áðïèÞêåõóçò: "
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Óýíäåóç FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Áóöáëåßò óýíäåóç"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "ÅðáíáöïñÜ áðü ôïí óêëçñü äßóêï."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Ðáñáêáëþ åéóÜãåôå ôïí êáôÜëïãï ðïõ âñßóêïíôáé ôá áíôßãñáöá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "ÅðéëÝîôå Üëëï ìÝóï ãéá ôçí áíÜêôçóç"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "¶ëëá ÌÝóá"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "ÅðáíáöïñÜ óõóôÞìáôïò"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "ÅðáíáöïñÜ ×ñçóôþí"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "ÅðáíáöïñÜ ¶ëëùí"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "åðéëÝîôå ôç èÝóç åðáíáöïñÜò (áíôß ôïõ /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Áöáßñåóç êáôáëüãùí ÷ñçóôþí ðñéí áðü ôçí åðáíáöïñÜ."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -10674,7 +10799,7 @@ msgstr ""
"ÅðáíáöïñÜ ÅðéëåãìÝíùí\n"
"Áñ÷åßùí"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -10682,131 +10807,131 @@ msgstr ""
"ÁëëáãÞ\n"
"ÈÝóç ÅðáíáöïñÜò"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Ôá áíôßãñáöá áóöáëåßáò äåí âñÝèçêáí óôï %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "ÅðáíáöïñÜ áðü CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "ÅðáíáöïñÜ ìÝóù äéêôýïõ"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "¼íïìá ÓõóôÞìáôïò"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Áðáéôåßôáé êùäéêüò ðñüóâáóçò"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Áðáéôåßôáé üíïìá ÷ñÞóôç"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Ç ÈÝóç Þ ôï ¶ñèñùìá áðáéôåßôáé"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Ç ÅðáíáöïñÜ ÁðÝôõ÷å..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "ÅðáíáöïñÜ üëùí ôùí áíôéãñÜöùí áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "ÐñïóáñìïóìÝíç ÅðáíáöïñÜ"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "Ôï CD åßíáé óôç èÝóç ôïõ - óõíÝ÷åéá"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "ÅðáíáöïñÜ áðü ÊáôÜëïãï"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "ÅðáíáöïñÜ áðü áñ÷åßï"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Ðñïçãïýìåíï"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "ÁðïèÞêåõóç"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Äçìéïõñãßá áíôéãñÜöùí áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "ÅðáíáöïñÜ"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10816,7 +10941,7 @@ msgstr ""
" Ç áíáöïñÜ äåí óôÜëèçêå\n"
" ðáñáêáëþ ñõèìßóôå ôï sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10824,7 +10949,7 @@ msgstr ""
"Ôá ðáñáêÜôù ðáêÝôá ðñÝðåé íá åãêáôáóôáèïýí:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10832,19 +10957,19 @@ msgstr ""
"ÓöÜëìá êáôÜ ôçí áðïóôïëÞ áñ÷åßïõ ìÝóù FTP.\n"
"Ðáñáêáëþ äéïñèþóôå ôç ñýèìéóç ôïõ FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Ðáñáêáëþ åðéëÝîôå ôá äåäïìÝíá ðñïò åðáíáöïñÜ..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Ðáñáêáëþ åðéëÝîôå ôï ìÝóï ãéá ôá áíôßãñáöá áóöáëåßáò..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Ðáñáêáëþ åðéëÝîôå ôá áñ÷åßá ðïõ èá ãßíïõí áíôßãñáöá áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10852,59 +10977,59 @@ msgstr ""
"Äåí âñÝèçêå ñýèìéóç\n"
"ðáñáêáëþ êÜíôå êëéê óôï Ïäçãü Þ óôï Ðñï÷ùñçìÝíï."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Õðü ÁíÜðôõîç ... ðáñáêáëþ ðåñéìÝíåôå."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Áíôßãñáöá áóöáëåßáò ôïõ óõóôÞìáôïò áñ÷åßùí"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Áíôßãñáöá áóöáëåßáò áñ÷åßùí ÷ñçóôþí"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Áíôßãñáöá áóöáëåßáò Üëëùí áñ÷åßùí"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "ÓõíïëéêÞ Ðñüïäïò"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "áðïóôïëÞ áñ÷åßùí ìÝóù FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "ÁðïóôïëÞ áñ÷åßùí..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Äçìéïõñãßá ÁíôéãñÜöùí Áóöáëåßáò áðü ôï áñ÷åßï ñõèìßóåùí"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "ÐñïâïëÞ Ñõèìßóåùí ÁíôéãñÜöùí Áóöáëåßáò"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Ñõèìßóåéò Ïäçãïý"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Ðñï÷ùñçìÝíåò Ñõèìßóåéò"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Áíôßãñáöá áóöáëåßáò Ôþñá"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10936,7 +11061,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10945,7 +11070,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10986,7 +11111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11014,20 +11139,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
"áíáâáèìßóåéò 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11044,7 +11169,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11084,7 +11209,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11220,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11108,7 +11233,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11222,8 +11347,8 @@ msgid "Synchronization tool"
msgstr "Åñãáëåßï Óõã÷ñïíéóìïý"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -11288,26 +11413,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "ÁíáöïñÜ"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr ""
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "óýíäåóç óôïí ïäçãü Bugzilla ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Äåí âñÝèçêå ðåñéçãçôÞò! Ðáñáêáëþ åãêáôáóôÞóôå ôïí"
@@ -11408,10 +11533,6 @@ msgstr "Ïäçãüò..."
msgid "Apply"
msgstr "ÅöáñìïãÞ"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå... ÅöáñìïãÞ ñõèìßóåùí"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "ÓõíäÝèçêå"
@@ -11533,7 +11654,7 @@ msgstr "¼íïìá áñèñþìáôïò"
msgid "Size"
msgstr "ÌÝãåèïò"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11598,12 +11719,12 @@ msgstr "¸îïäïò"
msgid "Build the disk"
msgstr "Äçìéïõñãßá äéóêÝôáò"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Óéãïõñåõôåßôå ðùò Ýíá ìÝóï åßíáé ðáñüí ãéá ôç óõóêåõÞ %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11612,12 +11733,12 @@ msgstr ""
"Äåí õðÜñ÷åé ìÝóï Þ õðÜñ÷åé ðñïóôáóßá åããñáöÞò ãéá ôç óõóêåõÞ %s.\n"
"Ðáñáêáëþ åéóÜãåôå Ýíá."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Áäõíáìßá fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12104,159 +12225,159 @@ msgstr ""
"\n"
"ÊÜíôå êëéê óôï Ñýèìéóç ãéá íá îåêéíÞóåôå ôïí ïäçãü åãêáôÜóôáóçò."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "ÏìÜäá åñãáóßáò:"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "êáôÜôìçóç %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "×ñÞóôçò"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "ÄéáãñáöÞ"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Ïëïêëçñþèçêå"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "ÐñïóèÞêç áñèñþìáôïò"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "ÐñïóèÞêç íÝïõ åêôõðùôÞ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "ÁðïåðéëïãÞ ¼ëùí"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr ""
"ÅðáíáöïñÜ ÅðéëåãìÝíùí\n"
"Áñ÷åßùí"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "áíáæÞôçóç"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Áðïäï÷Þ ÷ñÞóôç"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "¸êäïóç: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Èýñá"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "ÔìÞìá Splash"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "×ñÞóôçò"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "ÏìÜäá åñãáóßáò:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Äåí âñÝèçêå ÊÜñôá ¹÷ïõ!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12268,123 +12389,138 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "ôï ðáêÝôï ImageMagick áðáéôåßôáé ãéá ôç óùóôÞ ëåéôïõñãßá"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "ðñþôï âÞìá äçìéïõñãßáò"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "ôåëéêÞ áíÜëõóç"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "ÅðéëÝîôå ìéá åéêüíá"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "¼íïìá èÝìáôïò"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "äçìéïõñãßá bootsplash âÞìá 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "ðÞãáéíå óôç ñýèìéóç ôïõ lilosplash"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "¸îïäïò"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "áðïèÞêåõóç èÝìáôïò"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "áíáæÞôçóç"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Ñýèìéóç åéêüíáò bootsplash"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "ðëÜôïò êåéìÝíïõ"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "ýøïò ðëáéóßïõ êåéìÝíïõ"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "ôï ðëÜôïò ôçò ãñáììÞò ðñïüäïõ"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "ôï ýøïò ôçò ãñáììÞò ðñïüäïõ"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "Ôï ÷ñþìá ôçò ãñáììÞò ðñïüäïõ"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "ðñïåðéóêüðçóç"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "ÅðéëÝîôå ÷ñþìá"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "áðïèÞêåõóç èÝìáôïò"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "ÅðéëÝîôå ÷ñþìá"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "ÅìöÜíéóç ëïãüôõðïõ óôçí Êïíóüëá"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Áõôü ôï èÝìá äåí Ý÷åé áêüìá êÜðïéï bootsplash óôï %s !"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "áðïèÞêåõóç èÝìáôïò Bootsplash ..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "ÅðéëïãÞ ÷ñþìáôïò ãñáììÞò ðñïüäïõ"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "ÐñÝðåé íá åðéëÝîôå ðñþôá ìéá åéêüíá!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Äçìéïõñãßá ðñïåðéóêüðçóçò ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Áäõíáìßá äçìéïõñãßáò ðñïåðéóêüðçóçò Bootsplash"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12538,6 +12674,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "÷ñÞóç: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "÷ñÞóç: keyboarddrake [--expert] [keyboard]\n"
@@ -12566,11 +12709,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Äåí ìðïñþ íá îåêéíÞóù ôï live upgrade!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Ç áëëáãÞ Ýãéíå, áëëÜ ãéá íá éó÷ýóåé èá ðñÝðåé íá ãßíåé áðïóýíäåóç"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12844,16 +12987,13 @@ msgstr ""
"Ìðïñåßôå ôþñá íá óáñþóåôå Ýããñáöá ìå ôï ``XSane'' áðü ôï ìåíïý ÐïëõìÝóá/"
"ÃñáöéêÜ áðü ìåíïý åöáñìïãþí."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12928,7 +13068,7 @@ msgstr "ÅãêáôÜóôáóç áíáâáèìßóåùí"
msgid "Exit install"
msgstr "¸îïäïò"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13175,8 +13315,26 @@ msgstr "ÐïëõìÝóá - ÅããñáöÞ CD"
msgid "Scientific Workstation"
msgstr "Óôáèìüò Åñãáóßáò Åðéóôçìïíéêþí åöáñìïãþí"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Áäõíáìßá äçìéïõñãßáò ðñïåðéóêüðçóçò Bootsplash"
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "äçìéïõñãßá bootsplash âÞìá 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "ðÞãáéíå óôç ñýèìéóç ôïõ lilosplash"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Äåí õðÜñ÷åé ãíùóôüò åíáëëáêôéêüò ïäçãüò OSS/ALSA ãéá ôçí êÜñôá Þ÷ïõ óáò "
+#~ "(%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Ï proxy ðñÝðåé íá åßíáé ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "¸îïäïò"
#~ msgid ""
#~ "The \"%s\" driver for your sound card is unlisted\n"
@@ -13646,9 +13804,6 @@ msgstr "Óôáèìüò Åñãáóßáò Åðéóôçìïíéêþí åöáñìïãþí"
#~ "Ðáñáêáëþ åðéëÝîôå áí èÝëåôå íá îåíéêÜ ôï CD áõôüìáôá êáôÜ ôçí åêêßíçóç "
#~ "ôïõ õðïëïãéóôÞ. "
-#~ msgid "Setting security level"
-#~ msgstr "Ñýèìéóç åðéðÝäïõ áóöáëåßáò"
-
#~ msgid "Setting security user"
#~ msgstr "Ñýèìéóç áóöáëåßáò ÷ñÞóôç"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 2a66ed081..9093f3c98 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -87,24 +87,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "ISDN-a Konfigura¼on"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -113,17 +113,17 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,7 +135,7 @@ msgstr ""
"KOMPUTILON.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,12 +144,12 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"NOTU KE ÆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Akomodata"
@@ -170,32 +170,32 @@ msgstr "Distingivo"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcioj"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Jeso"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Æesu"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Elektu distingivon kaj kolorprofundon"
msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Nuligu"
@@ -387,11 +387,11 @@ msgstr "XFree86 servilo: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X Fenestro æe komenco"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Mi povas konfiguri vian komputilon tiel ke øi aýtomate lanæos X kiam øi\n"
"ekfunkcias. Æu vi deziras ke X aýtomate lanæos?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kia estas via ISDN-a konekta¼o?"
@@ -485,7 +485,7 @@ msgstr "Kompakta"
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Grafika reøimo"
@@ -493,17 +493,17 @@ msgstr "Grafika reøimo"
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaý starti defaýltan sistemon"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasvorto (denove)"
@@ -537,14 +537,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,156 +589,156 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aý þanøi la ekzistantajn."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Þanøu"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Danøera"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Defaýlta"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grandeco"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Forigu enskribon"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Vi devas havi interþanøan subdiskon"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Æi tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Æu vi havas alian?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Æu vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Vidu hardvaran informon"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -749,17 +749,17 @@ msgstr ""
"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
"Ekzemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulaj opcioj:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -776,15 +776,15 @@ msgstr ""
"por la informo øi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"øi ne devus kaýzi difekton."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aýtomate esploru"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -793,62 +793,62 @@ msgstr ""
"Þargado de modulo %s malsukcesis.\n"
"Æu vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Æi tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Æi tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Æi tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -857,32 +857,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Þelo"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Aýtomata-enregistrado"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -891,20 +891,20 @@ msgstr ""
"Mi povas konfiguri vian komputilon por aýtomate enregistri unu uzulon kiam\n"
"øi startas. Se vi ne deziras uzi æi tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanæi:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -912,39 +912,39 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Æiuj"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Æi tiu paka¼o devus esti promociata.\n"
"Æu vi certas ke vi deziras malelekti øin?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -953,42 +953,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Laýnorma"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -998,7 +998,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi øi surrete.\n"
"Øi ne havas pasvortojn."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1006,7 +1006,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraý\n"
"ne rekomendita."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1015,13 @@ msgstr ""
"Æi tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1035,7 @@ msgstr ""
"La sekureco nun estas sufiæe alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,36 +1044,36 @@ msgstr ""
"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
"malfermita. Sekurecaj aspektoj estas æe iliaj maksimumoj."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcioj"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Elektu sekurnivelon?"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1081,7 +1081,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1098,20 +1098,20 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
@@ -1119,39 +1119,39 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "mankas sufiæe da spaco en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startþargilon?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1204,128 +1204,128 @@ msgstr "Lilo/grub modalo"
msgid "Yaboot mode"
msgstr "Yaboot modalo"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalu sistemon"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kreu novan subdiskon"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Eraro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "agrabla(j)"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Elektu instalklason"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguru"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Elektado de individuaj paka¼oj"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1334,44 +1334,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistema modalo"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Jes"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1478,54 +1478,62 @@ msgstr "seria"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nova"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Bonvole, provu la muson"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Prokura servilo devus esti http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
@@ -1615,7 +1623,7 @@ msgstr "Malplena"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Alia"
@@ -1769,7 +1777,7 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Æu daýras tamen?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Averto"
@@ -2331,7 +2339,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Salutnomo"
@@ -2346,23 +2354,23 @@ msgstr "NIS Domajno"
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2448,46 +2456,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN Konfigura¼o"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Pelilo"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfigura¼on"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Bonvole atendu"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2614,7 +2687,8 @@ msgid "/_Quit"
msgstr "Æesu"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Helpo"
@@ -2634,76 +2708,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Raportu Cimo"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Helpo/_Pri..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aýtomate esploru"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detektado de fiksdisko(j)"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Vidu hardvaran informon"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Montru informon"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Konfiguru muson"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Duobla surmetingo %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundoj"
@@ -3797,7 +3872,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3812,7 +3887,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3821,31 +3896,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enþovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4096,7 +4171,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -4127,11 +4202,11 @@ msgstr "Instalklaso"
msgid "Please choose one of the following classes of installation:"
msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Elektado de Paka¼aj Grupoj"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Elektado de individuaj paka¼oj"
@@ -4209,7 +4284,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalu"
@@ -4231,7 +4306,7 @@ msgstr "Eliru instalprogramon"
msgid "Choose the packages you want to install"
msgstr "Elektu la paka¼ojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalanta"
@@ -4259,17 +4334,17 @@ msgid "Installing package %s"
msgstr "Instalanta paka¼o %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akceptu"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4286,16 +4361,16 @@ msgstr ""
"Se vi ne havas øin, klaku \"Nuligu\" por eviti la instaladon de æi tiu KDROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Æu vi deziras daýri tamen?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi paka¼ojn:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de paka¼oj:"
@@ -4392,7 +4467,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4470,7 +4545,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klavaro"
@@ -4678,29 +4753,29 @@ msgstr "Enþovu disketon en drajvo %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4711,16 +4786,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4729,21 +4804,21 @@ msgstr ""
"Instalas paka¼o %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Enþovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Enþovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4810,7 +4885,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4822,159 +4897,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla paka¼oj"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la paka¼ojn"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla paka¼oj"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Æu via hardvara horloøo estas øustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Servilo"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Æu vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Æi tiu pasvorto ests tro simpla (øi devas esti almenaý %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Aýtentikigado"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Aýtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Aýtentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4990,21 +5065,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Aýtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domajna nomo"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5032,19 +5107,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, enþovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5068,7 +5143,7 @@ msgstr ""
"sistemaj paneoj. Æu vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5077,28 +5152,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Bedaýrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enþovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparas startþargilon"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5106,11 +5181,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Æu vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5118,16 +5193,16 @@ msgstr ""
"Eraro daýre mi instalis \"aboot\",\n"
"Æu mi devus provi perforte instali eæ se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-þargilon"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startþargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5138,24 +5213,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enþovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Kreas aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5174,15 +5249,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Kreu aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5191,15 +5266,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Aýtomata"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj paka¼oj"
@@ -5236,14 +5311,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Antaýa"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
@@ -5695,7 +5770,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Cirklaj surmetingoj %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5834,16 +5909,16 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
@@ -5879,11 +5954,11 @@ msgstr "Maletendu Arbon"
msgid "Toggle between flat and group sorted"
msgstr "Þanøu inter ebena kaj ordigita je grupoj"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektu al la Interreto"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
#, fuzzy
msgid ""
"The most common way to connect with adsl is pppoe.\n"
@@ -5894,23 +5969,19 @@ msgstr ""
"Tamen, ekzistas konektojn kiuj nur uzas dhcp.\n"
"Se vi ne scias, elektu 'uzu pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "uzu dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "uzu pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "uzu pptp"
@@ -6007,7 +6078,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -6023,15 +6094,15 @@ msgstr ""
"Via poþtejo devus esti plene specifita poþtejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Poþtejo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "ISDN-a Konfigura¼on"
@@ -6073,8 +6144,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfigura¼o de barilo detektata!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN-a Konfigura¼on"
@@ -6114,23 +6185,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Kiun protokolon vi deziras uzi?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kiun specon de karto vi havas?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Mi ne scias"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6145,19 +6221,19 @@ msgstr ""
"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
"por via karto.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Æesigu"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Æu mi devus daýri?"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kiu estas via ISDN-a karto?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6166,7 +6242,7 @@ msgstr ""
"elektu\n"
"unu el la PCI-aj kartojn sur la sekvanta ekrano."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
@@ -6221,59 +6297,59 @@ msgstr "Unu DNS-a Servilo (nedeviga)"
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Malkonektu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Konfiguru retumon"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6285,12 +6361,12 @@ msgid ""
"Press OK to continue."
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Reta Konfigura¼o"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6298,7 +6374,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6306,103 +6382,103 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Spertuloreøimo"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duobla surmetingo %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN Konfigura¼o"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Reta interfaco"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN Konfigura¼o"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Disdividado de Interreta Konekto"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Æu vi deziras starti vian konekta¼on je startado de la sistemo?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Reta Konfigura¼o"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6410,27 +6486,27 @@ msgid ""
"%s"
msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
#, fuzzy
msgid ""
"WARNING: this device has been previously configured to connect to the "
@@ -6443,7 +6519,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de æi tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi þanøos æi tiun konfiguron."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6453,43 +6529,43 @@ msgstr ""
"Æiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Aýtomata IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Kreu praþargdisketon"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6501,42 +6577,53 @@ msgstr ""
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
"Vi ankaý povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Prokura servilo devus esti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Prokura servilo devus esti http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7934,7 +8021,7 @@ msgstr "Haltas de la reto"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8443,11 +8530,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Prokura servilo devus esti http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8495,6 +8577,43 @@ msgstr "mkraid malsukcesis (eble raidtools mankas)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufiæaj subdiskoj por RAID nivelo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Defaýlta)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Preparas instaladon"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8790,7 +8909,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8887,7 +9006,7 @@ msgstr "Konektu al la Interreto"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8934,7 +9053,7 @@ msgstr "Reta interfaco"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8959,7 +9078,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8975,7 +9094,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8990,7 +9109,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9039,8 +9158,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9077,12 +9196,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalanta paka¼o %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaþo (Ctrl-Alt-Backspace)."
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Bonvolu resaluti en %s-n por aktivigi la þanøojn."
@@ -9129,17 +9248,6 @@ msgstr "Aldonu uzanto"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9192,52 +9300,67 @@ msgstr "Aldonu uzanto"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "LAN Konfigura¼o"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguru"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Enþovu disketon en drajvo %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Neniu disketilo havebla"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9361,13 +9484,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Provu pordojn"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9376,41 +9499,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne povis malfermi %s por skribi: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9421,68 +9544,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9490,923 +9613,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Eraro legante dosiero %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Paka¼oj"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Bonvole, elektu vian klavaran aranøon."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Elektu dosieron"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Musaparato: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaýru de disketo"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaýru de disketo"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Poþtejo"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Pasvorto"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Poþtejo: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Antaýa"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "La sekvaj paka¼oj estos instalataj"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10438,7 +10563,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10447,7 +10572,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10488,7 +10613,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10516,17 +10641,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10543,7 +10668,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10583,7 +10708,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10594,7 +10719,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10607,7 +10732,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10689,8 +10814,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -10765,28 +10890,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "porto"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
@@ -10893,11 +11018,6 @@ msgstr "Soræisto..."
msgid "Apply"
msgstr "Apliku"
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfigura¼on"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektita"
@@ -11015,7 +11135,7 @@ msgstr "Modulonomo"
msgid "Size"
msgstr "Grandeco"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11080,12 +11200,12 @@ msgstr "Skribu"
msgid "Build the disk"
msgstr "Konstruu la diskon"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Kontrolu ke medio estas en la aparato %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11094,12 +11214,12 @@ msgstr ""
"Ne estas medio en aparato %s.\n"
"Bonvole enþovu øin."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne povis forki: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11580,155 +11700,155 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Laborgrupo"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "subdisko: %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Salutnomo"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Forigu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Finata"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Aldonu modulon"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Neniu printilo"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Akceptu uzanto"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versio: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Pordo"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Elektado de individuaj paka¼oj"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Salutnomo"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Laborgrupo"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ne konektita"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11740,137 +11860,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Startdiskokreado"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Distingivo"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Elektu agon"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Opuza nomo"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Æesu"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instalu sistemon"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Konfiguru servojn"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Retrokonektado"
+msgid "Preview"
+msgstr "aparato"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "aparato"
+msgid "Save theme"
+msgstr "Instalu sistemon"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Elektu ekranon"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printilan Konekton"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printila Aparato URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detektas aparatojn..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12011,6 +12141,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
@@ -12044,11 +12181,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12329,16 +12466,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12414,7 +12548,7 @@ msgstr "Instalu sistemon"
msgid "Exit install"
msgstr "Eliru instalprogramon"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12666,6 +12800,21 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Post-instala konfigurado"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Retrokonektado"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Prokura servilo devus esti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Æesu"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
@@ -12759,9 +12908,6 @@ msgstr "Laborstacio"
#~ msgid "Test again"
#~ msgstr "Provu denove"
-#~ msgid "Setting security level"
-#~ msgstr "Elektas sekurnivelon"
-
#~ msgid "Select a graphics card"
#~ msgstr "Elektu grafikan karton"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index c63c16b3f..fdd814e16 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -90,24 +90,24 @@ msgstr "Seadista kõik monitorid sõltumatult"
msgid "Use Xinerama extension"
msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,17 +116,17 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
"XFree %s toetab Teie videokaarti ja võib omada paremat 2D tuge."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -137,7 +137,7 @@ msgstr ""
"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -146,12 +146,12 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Isetehtud"
@@ -172,32 +172,32 @@ msgstr "Kuvatihedus"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Eelistused"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Välju"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Valige kuvatihedus ja värvisügavus"
msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Katkesta"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X stardib nüüd"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Teie arvutis on võimalik käivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Millist ISDN ühendust kasutate?"
@@ -485,7 +485,7 @@ msgstr "Kompaktne"
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Graafikamood"
@@ -493,17 +493,17 @@ msgstr "Graafikamood"
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasõna"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Salasõna (uuesti)"
@@ -537,14 +537,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Säte ``Piira käsurea suvandeid'' on ilma salasõnata mittekasutatav"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Salasõnad ei klapi"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,157 +589,157 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tõsta?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Tähis"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Vaikimisi"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd suurus"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Eemalda kirje"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tühi kirjetähis ei ole lubatud"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Teil peab olema saaleala"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Selline tähis on juba kasutusel"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mõni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Info riistvara kohta"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
"Näiteks: \"io=0x300 irq=7\""
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Mooduli parameetrid:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -776,15 +776,15 @@ msgstr ""
"määratleda või lasta juhtprogrammil ise Teie arvutit kompida? Võib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jäävat kahju teha."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Määrake parameetrid"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -793,62 +793,62 @@ msgstr ""
"Moodule %s laadimine ei õnnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Salasõna on liiga lihtne"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid, - ja _"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -857,32 +857,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Kasutaja õige"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Pärisnimi"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Käsurida"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -891,57 +891,57 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kõik"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS käivitatakse"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,42 +950,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Tere tulemast, kräkkerid"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Vähene"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Kõrge"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Kõrge"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -995,14 +995,14 @@ msgstr ""
"haavatavaks: ligipääsupiirangute puudumise tõttu ei peaks arvutit ühendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasõnad on nüüd kasutusel, kuid võrku ühendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1010,13 +1010,13 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1027,7 +1027,7 @@ msgid ""
"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel võib süsteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1036,36 +1036,36 @@ msgstr ""
"Süsteem on täielikult suletud. Võrgust kasutamine on võimalik ainult\n"
"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Eelistused"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valige turvatase"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1078,7 +1078,7 @@ msgstr ""
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1103,58 +1103,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "suvandeid enne laadimist ja 'c' veel enam."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Töölaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Startmenüü"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "selle kohta (veel) abi ei saa.\n"
@@ -1208,106 +1208,106 @@ msgstr "Valimisviis"
msgid "Yaboot mode"
msgstr "Alglaadimismood"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Süsteemi installimine"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Looge uus partitsioon"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Viga"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "pintsaklips"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Valige paigaldusmeetod"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1319,23 +1319,23 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Seadista"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Salvest paketivalik"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Puu"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1344,45 +1344,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Töömood"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Käivita X-Windows alglaadimisel"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ei taha automaatselt siseneda"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei saa lugeda faili /etc/inittab: %s"
@@ -1486,53 +1486,61 @@ msgstr "seerial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Uus"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ühenda lahti"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ühenda"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ühenduspunkt"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Palun testige hiirt"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ühenduspunkt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
@@ -1621,7 +1629,7 @@ msgstr "Tühi"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Muu"
@@ -1772,7 +1780,7 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jätkata?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Hoiatus"
@@ -2333,7 +2341,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Kasutajatunnus"
@@ -2348,23 +2356,23 @@ msgstr "NIS domeen"
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaõnnestus"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tüüpi %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti ühendamisel: %s"
@@ -2450,46 +2458,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaõnnestus: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN sätted"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Juhtprogramm"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Palun oodake"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2616,7 +2688,8 @@ msgid "/_Quit"
msgstr "Välju"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Abi"
@@ -2636,76 +2709,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Vearaport"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Abi/_Misvärk"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Proovida niisama"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kõvaketta leidmine"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Info riistvara kohta"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Näita lisainfot"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Hiire seadmine"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "leiti port %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundit"
@@ -4140,7 +4214,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4155,7 +4229,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4164,20 +4238,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Üldlevi kasutamine on ilma NIS domeenita võimatu"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4185,12 +4259,12 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4428,7 +4502,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
@@ -4458,11 +4532,11 @@ msgstr "Installi klass"
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige üks järgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Valik paketthaaval"
@@ -4538,7 +4612,7 @@ msgstr "Näita automaatselt valitud pakette"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installimine"
@@ -4561,7 +4635,7 @@ msgstr "Eemaldamine"
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installin"
@@ -4588,17 +4662,17 @@ msgid "Installing package %s"
msgstr "Paketi %s installimine"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Nõus"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4613,16 +4687,16 @@ msgstr ""
"Kui teil säherdust ei ole, vajutage <Katkesta>"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4747,7 +4821,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4867,7 +4941,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4944,7 +5018,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatuur"
@@ -5154,31 +5228,31 @@ msgstr "Pane flopi seadmesse %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5188,16 +5262,16 @@ msgstr ""
"Kui Teil ei ole ühtki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mõned CD-d, märkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5206,21 +5280,21 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Paigaldusjärgsed sätted"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5288,7 +5362,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5300,164 +5374,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvõte"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Ajavööde"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Gnome tööjaam"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasõna"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Salasõna puudub"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasõna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5473,22 +5547,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeeninimi"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "Salasõna uuesti"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5516,19 +5590,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Jäta vahele"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5552,7 +5626,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5561,28 +5635,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5590,11 +5664,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5602,16 +5676,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hävinguga?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebaõnnestus. Tekkis järgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5628,17 +5702,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5648,7 +5722,7 @@ msgstr ""
"\n"
"Olete kindel, et väljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5680,15 +5754,15 @@ msgstr ""
"Abi süsteemi edasiseks konfigureerimiseks saab eelkõige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5701,15 +5775,15 @@ msgstr ""
"\n"
"Võite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5745,14 +5819,14 @@ msgstr "Edasijõudnud"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Eelmine"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Tekst"
@@ -6208,7 +6282,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ringühendus %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarühmad (logical volumes)\n"
@@ -6346,15 +6420,15 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
@@ -6390,11 +6464,11 @@ msgstr "Sule puu"
msgid "Toggle between flat and group sorted"
msgstr "Sorteeritud või sorteerimata"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Loo internetiühendus"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6404,23 +6478,19 @@ msgstr ""
"Mõnel juhul aga kasutatakse pptp-d, harva dhcp-d.\n"
"Kui Te ei tea, kasutage pppoe-d"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptp"
@@ -6524,7 +6594,7 @@ msgstr ""
msgid "no network card found"
msgstr "võrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Võrguseadistused"
@@ -6540,15 +6610,15 @@ msgstr ""
"Masina nimi peab olema esitatud täiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Masinanimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Võrgu sätete abimees"
@@ -6590,8 +6660,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Leitud tulemüüri sätted!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN sätted"
@@ -6631,23 +6701,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Mis protokolli soovite kasutada?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Mis tüüpi kaart Teil on?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ei tea"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6661,19 +6736,19 @@ msgstr ""
"Kui Teil on PCMCIA kaart, peaksite Te ise teadma selle IRQ ning IO "
"väärtusi.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Katkesta"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jätka"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Milline on Teie ISDN kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6681,7 +6756,7 @@ msgstr ""
"Leidsin küll PCI ISDN kaardi, kui selle tüüp on tundmatu. Palun valige üks "
"PCI kaart järgmisel sammul."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "PCI ISDN kaarti ei leitud. Palun valige üks järgmisel sammul."
@@ -6733,7 +6808,7 @@ msgstr "Esimene nimeserver (soovituslik)"
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6741,7 +6816,7 @@ msgstr ""
"\n"
"Saate ühenduse katkestada või uuesti seadistada."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6749,11 +6824,11 @@ msgstr ""
"\n"
"Saate seadistada ühenduse uuesti."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Hetkel olete Internetiga ühendatud."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6761,37 +6836,37 @@ msgstr ""
"\n"
"Saate ühenduda Internetti või seadistada ühendus uuesti."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Hetkel ei ole Te Internetti ühendatud."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Ühendatud"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Lahuta..."
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Seadista TV-kaabli ühendus"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetiühenduse seadistamine"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Saate ühenduse katkestada või uuesti seadistada."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6805,12 +6880,12 @@ msgstr ""
"\n"
"Saate ühenduse katkestada või uuesti seadistada."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Võrgu sätted"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6821,7 +6896,7 @@ msgstr ""
"Kui soovite neid seadistusi säilitada, valige OK, muidu katkestage ja saate "
"seadistada uuesti.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6833,99 +6908,99 @@ msgstr ""
"Nüüd hakkame internetiühendust seadistama.\n"
"Kui Te ei soovi automaatset tuvastamist siis jätke see märkimata.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Valige profiil, mida seadistada"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertresiim"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otsin printerit..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Tavaline modemiühendus"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "leiti port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN ühendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "tuvastati %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "leiti liidesel %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "võrgukaart(i) leiti üles"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Valige kasutatav vahend"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Internetiühenduse jagamine"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Võrgusätted"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6933,7 +7008,7 @@ msgid ""
"%s"
msgstr "Kas soovite võrguühendust taaskäivitada?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6943,7 +7018,7 @@ msgstr ""
"\n"
"Sätted salvestatakse nüüd.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6951,14 +7026,14 @@ msgstr ""
"Soovitame taaskäivitada ka X keskkonna, et vältida võimalikke\n"
"masinanime muutmisest tingitud probleeme."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6968,7 +7043,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et sätteid mitte muuta."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6978,43 +7053,43 @@ msgstr ""
"Kõik read tuleb sisestada IP-aadressi kujul\n"
"(Näiteks 12.34.56.78)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame võrgukaardi %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Võrgu mask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Käivitub laadimisel"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7026,42 +7101,53 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi lüüs, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Lüüsipoolne seade"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Vahendajate sätted"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vahendaja peab olema kujul ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vahendaja peab olema kujul http://..."
#
#: ../../network/shorewall.pm_.c:24
@@ -8461,7 +8547,7 @@ msgstr "Seiskame võrguliidesed"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8974,11 +9060,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Vahendaja peab olema kujul http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9028,6 +9109,43 @@ msgstr "mkraid ebaõnnestus (puudub 'raidtools'?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Võrguprinteri sätted"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (vaikimisi %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Palun oodake, valmistun installimiseks"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9306,7 +9424,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Töömood"
@@ -9402,7 +9520,7 @@ msgstr "Loo internetiühendus"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9449,7 +9567,7 @@ msgstr "Võrguliides"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9474,7 +9592,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9490,7 +9608,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9505,7 +9623,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9554,8 +9672,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9592,12 +9710,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Paketi %s installimine"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
# c-format
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
@@ -9646,17 +9764,6 @@ msgstr "Lisa kasutaja"
msgid "Add/Del Clients"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9709,53 +9816,68 @@ msgstr "Lisa kasutaja"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Seadista..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "ISDN sätted"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "seadista uuesti"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Pane flopi seadmesse %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9879,13 +10001,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Proovin porte"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9894,41 +10016,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Salasõna puudub"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Võrgukaart %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9939,68 +10061,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10008,926 +10130,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Viga faili %s lugemisel"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Salasõna puudub"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Valige fail"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Võrgu mask:"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tüüp"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr "Võrgu mask:"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr "Printeri seade"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Hiire port: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN ühendus"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Vali printeri ühendusviis"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Päästa partitsioonitabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Seadista kohtvõrk uuesti"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Masinanimi"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Salasõna"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Masinanimi: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Päästa partitsioonitabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN sätted"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10959,7 +11083,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10968,7 +11092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11009,7 +11133,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11037,17 +11161,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11064,7 +11188,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11115,7 +11239,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11128,7 +11252,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11210,8 +11334,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsooliprogrammid"
@@ -11288,29 +11412,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Välju programmist"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Seadistan uuesti abimehega..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Teisi keeli saab valida pärast installimist"
@@ -11411,10 +11535,6 @@ msgstr "Abimees..."
msgid "Apply"
msgstr "Rakenda"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ühendatud"
@@ -11532,7 +11652,7 @@ msgstr "Mooduli parameetrid:"
msgid "Size"
msgstr "Suurus: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Taasta flopilt"
@@ -11606,24 +11726,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Keela võrguühendus"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12106,158 +12226,158 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Töögrupp"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Partitsioon %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Kustuta"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Keskmine"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Tehtud"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Tavakasutaja"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Printerit ei ole"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Kasutaja õige"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versioon: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Kasuta automaattuvastust"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Kasuta automaattuvastust"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Salvest paketivalik"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Kasutajatunnus:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Töögrupp"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ei ole ühendatud"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12269,137 +12389,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Alglaadimise stiil"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Kuvatihedus"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Valige tegevus"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Jagatav printer"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Paigaldusjärgsed sätted"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Välju"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Süsteemi installimine"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Teenuste sätted"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "loopback"
+msgid "Preview"
+msgstr "seade"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "seade"
+msgid "Save theme"
+msgstr "Süsteemi installimine"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Valige monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printeri ühendusviis"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printeri seadme URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Otsin printerit..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12540,6 +12670,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
@@ -12568,11 +12705,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ei saa kiiruuendust alustada !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -12854,16 +12991,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12939,7 +13073,7 @@ msgstr "Süsteemi installimine"
msgid "Exit install"
msgstr "Välju programmist"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13185,6 +13319,21 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustööjaam"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Paigaldusjärgsed sätted"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vahendaja peab olema kujul ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Välju"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ei tööta vanema BIOSi korral)"
@@ -13425,9 +13574,6 @@ msgstr "Teadustööjaam"
#~ msgid "Test again"
#~ msgstr "Proovi veel"
-#~ msgid "Setting security level"
-#~ msgstr "Turvataseme seadmine"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valige graafikakaart"
@@ -13594,9 +13740,6 @@ msgstr "Teadustööjaam"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mõistetav (%s), palun täpsustage\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (vaikimisi %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Teie valik? (vaikimisi %s, `none' - ei midagi)"
@@ -16014,3 +16157,6 @@ msgstr "Teadustööjaam"
#~ msgid "What usage do you want?"
#~ msgstr "Mis kasutusala soovite?"
+
+#~ msgid "/Help/_Report Bug"
+#~ msgstr "/Abi/_Vearaport"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 51635cf69..4382e1101 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po