package install_any; # $Id$ use strict; our @ISA = qw(Exporter); our %EXPORT_TAGS = ( all => [ qw(getNextStep spawnShell addToBeDone) ], ); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; #-###################################################################################### #- misc imports #-###################################################################################### use MDK::Common::System; use common; use run_program; use fs::type; use fs::format; use partition_table; use devices; use fsedit; use modules; use detect_devices; use lang; use any; use log; use pkgs; #- boot medium (the first medium to take into account). our $boot_medium = 1; our $current_medium = $boot_medium; our $asked_medium = $boot_medium; our @advertising_images; #- current ftp root (for getFile) ­- XXX must store this per media our $global_ftp_prefix; sub drakx_version() { $::move ? sprintf "DrakX-move v%s", cat_('/usr/bin/stage2/move.pm') =~ /move\.pm,v (\S+ \S+ \S+)/ : sprintf "DrakX v%s built %s", $::testing ? ('TEST', scalar gmtime()) : (split('/', cat__(getFile("install/stage2/VERSION"))))[2,3]; } #-###################################################################################### #- Media change variables&functions #-###################################################################################### my $postinstall_rpms = ''; my $cdrom; my %iso_images; sub mountCdrom { my ($mountpoint, $o_cdrom) = @_; $o_cdrom = $cdrom if !defined $o_cdrom; eval { fs::mount($o_cdrom, $mountpoint, "iso9660", 'readonly') }; } sub useMedium($) { #- before ejecting the first CD, there are some files to copy! #- does nothing if the function has already been called. $_[0] > 1 and method_allows_medium_change($::o->{method}) and setup_postinstall_rpms($::prefix, $::o->{packages}); $asked_medium eq $_[0] or log::l("selecting new medium '$_[0]'"); $asked_medium = $_[0]; } sub changeMedium($$) { my ($method, $medium_name) = @_; log::l("change to medium $medium_name for method $method (refused by default)"); 0; } sub relGetFile($) { local $_ = $_[0]; if (my ($arch) = m|\.([^\.]*)\.rpm$|) { $_ = install_medium::by_id($asked_medium)->{rpmsdir} . "/$_"; s/%{ARCH}/$arch/g; s,^/+,,g; } $_; } sub askChangeMedium($$) { my ($method, $medium_name) = @_; my $allow; do { local $::o->{method} = $method = 'cdrom' if install_medium::by_id($medium_name)->is_suppl_cd; eval { $allow = changeMedium($method, $medium_name) }; } while $@; #- really it is not allowed to die in changeMedium!!! or install will core with rpmlib!!! log::l($allow ? "accepting medium $medium_name" : "refusing medium $medium_name"); $allow; } sub method_is_from_ISO_images($) { my ($method) = @_; $method eq "disk-iso" || $method eq "nfs-iso"; } sub method_allows_medium_change($) { my ($method) = @_; $method eq "cdrom" || method_is_from_ISO_images($method); } sub look_for_ISO_images() { $iso_images{media} = []; ($iso_images{loopdev}, $iso_images{mountpoint}) = cat_("/proc/mounts") =~ m|(/dev/loop\d+)\s+(/tmp/image) iso9660| or return; my $get_iso_ids = sub { my ($F) = @_; my ($vol_id, $app_id) = c::get_iso_volume_ids(fileno $F); #- the ISO volume names must end in -Disc\d+ if they are belong (!) to a set my ($cd_set) = $vol_id =~ /^(.*)-disc\d+$/i; #- else use the full volume name as CD set identifier $cd_set ||= $vol_id; { cd_set => $cd_set, app_id => $app_id }; }; sysopen(my $F, $iso_images{loopdev}, 0) or return; put_in_hash(\%iso_images, $get_iso_ids->($F)); my $iso_dir = $ENV{ISOPATH}; #- strip old root and remove iso file from path if present $iso_dir =~ s!^/sysroot!!; $iso_dir =~ s![^/]*\.iso$!!; foreach my $iso_file (glob("$iso_dir/*.iso")) { my $iso_dev = devices::set_loop($iso_file) or return; if (sysopen($F, $iso_dev, 0)) { my $iso_ids = $get_iso_ids->($F); push @{$iso_images{media}}, { file => $iso_file, %$iso_ids }; close($F); #- needed to delete loop device } devices::del_loop($iso_dev); } 1; } sub find_ISO_image_labelled($) { %iso_images or look_for_ISO_images() or return; my ($iso_label) = @_; find { $_->{app_id} eq $iso_label && $_->{cd_set} eq $iso_images{cd_set} } @{$iso_images{media}}; } sub changeIso($) { my ($iso_label) = @_; my $iso_info = find_ISO_image_labelled($iso_label) or return; eval { fs::umount($iso_images{mountpoint}) }; $@ and warnAboutFilesStillOpen(); devices::del_loop($iso_images{loopdev}); $iso_images{loopdev} = devices::set_loop($iso_info->{file}); eval { fs::mount($iso_images{loopdev}, $iso_images{mountpoint}, "iso9660", 'readonly'); log::l("using ISO image '$iso_label'"); 1; }; } sub errorOpeningFile($) { my ($file) = @_; $file eq 'XXX' and return; #- special case to force closing file after rpmlib transaction. $current_medium eq $asked_medium and log::l("errorOpeningFile $file"), return; #- nothing to do in such case. install_medium::by_id($asked_medium)->selected or return; #- not selected means no need to worry about. my $current_method = install_medium::by_id($asked_medium)->method || $::o->{method}; my $max = 32; #- always refuse after $max tries. if ($current_method eq "cdrom") { cat_("/proc/mounts") =~ m,(/dev/\S+)\s+(/mnt/cdrom|/tmp/image), and ($cdrom, my $mountpoint) = ($1, $2); return unless $cdrom; ejectCdrom($cdrom, $mountpoint); while ($max > 0 && askChangeMedium($current_method, $asked_medium)) { $current_medium = $asked_medium; mountCdrom("/tmp/image"); my $getFile = getFile($file); $getFile && @advertising_images and copy_advertising($::o); $getFile and return $getFile; $current_medium = 'unknown'; #- do not know what CD is inserted now. ejectCdrom($cdrom, $mountpoint); --$max; } } else { while ($max > 0 && askChangeMedium($current_method, $asked_medium)) { $current_medium = $asked_medium; my $getFile = getFile($file); $getFile and return $getFile; $current_medium = 'unknown'; #- do not know what CD image has been copied. --$max; } } #- Do not unselect supplementary CDs. #return if $asked_medium =~ /^\d+s$/; return if install_medium::by_id($asked_medium)->is_suppl_cd; #- keep in mind the asked medium has been refused on this way. #- this means it is no more selected. install_medium::by_id($asked_medium)->refuse; #- on cancel, we can expect the current medium to be undefined too, #- this enables remounting if selecting a package back. $current_medium = 'unknown'; return; } sub getFile { my ($f, $o_method, $o_altroot) = @_; my $current_method = ($asked_medium ? install_medium::by_id($asked_medium)->method : '') || $::o->{method}; log::l("getFile $f:$o_method ($asked_medium:$current_method)"); my $rel = relGetFile($f); do { if ($f =~ m|^http://|) { require http; http::getFile($f); } elsif ($o_method =~ /crypto|update/i) { require crypto; crypto::getFile($f); } elsif ($current_method eq "ftp") { require ftp; ftp::getFile($rel, @{ install_medium::by_id($asked_medium)->{ftp_prefix} || $global_ftp_prefix || [] }); } elsif ($current_method eq "http") { require http; http::getFile(($ENV{URLPREFIX} || $o_altroot) . "/$rel"); } else { #- try to open the file, but examine if it is present in the repository, #- this allows handling changing a media when some of the files on the #- first CD have been copied to other to avoid media change... my $f2 = "$postinstall_rpms/$f"; $o_altroot ||= '/tmp/image'; $f2 = "$o_altroot/$rel" if $rel !~ m,^/, && (!$postinstall_rpms || !-e $f2); my $F; open($F, $f2) ? $F : do { $f2 !~ /XXX/ and log::l("Can not open $f2: $!"); undef }; } } || errorOpeningFile($f); } sub getLocalFile { my ($file) = @_; my $F; open($F, $file) ? $F : do { log::l("Can not open $file: $!"); undef }; } sub getAndSaveFile { my ($file, $local) = @_ == 1 ? ("install/stage2/live$_[0]", $_[0]) : @_; local $/ = \ (16 * 1024); my $f = ref($file) ? $file : getFile($file) or return; open(my $F, ">$local") or log::l("getAndSaveFile(opening $local): $!"), return; local $_; while (<$f>) { syswrite($F, $_) or die("getAndSaveFile($local): $!") } 1; } #-###################################################################################### #- Post installation RPMS from cdrom only, functions #-###################################################################################### sub setup_postinstall_rpms($$) { my ($prefix, $packages) = @_; $postinstall_rpms and return; $postinstall_rpms = "$prefix/usr/postinstall-rpm"; require pkgs; log::l("postinstall rpms directory set to $postinstall_rpms"); clean_postinstall_rpms(); #- make sure in case of previous upgrade problem. mkdir_p($postinstall_rpms); my %toCopy; #- compute closure of package that may be copied, use INSTALL category #- in rpmsrate. $packages->{rpmdb} ||= pkgs::rpmDbOpen(); foreach (@{$packages->{needToCopy} || []}) { my $p = pkgs::packageByName($packages, $_) or next; pkgs::selectPackage($packages, $p, 0, \%toCopy); } delete $packages->{rpmdb}; my @toCopy = grep { $_ && !$_->flag_selected } map { $packages->{depslist}[$_] } keys %toCopy; #- extract headers of package, this is necessary for getting #- the complete filename of each package. #- copy the package files in the postinstall RPMS directory. #- last arg is default medium '' known as the CD#1. #- cp_af does not handle correctly a missing file. eval { cp_af((grep { -r $_ } map { "/tmp/image/" . relGetFile($_->filename) } @toCopy), $postinstall_rpms) }; log::l("copying Auto Install Floppy"); getAndSaveInstallFloppies($::o, $postinstall_rpms, 'auto_install'); } sub clean_postinstall_rpms() { $postinstall_rpms and -d $postinstall_rpms and rm_rf($postinstall_rpms); } #-###################################################################################### #- Functions #-###################################################################################### sub getNextStep { my ($o) = @_; find { !$o->{steps}{$_}{done} && $o->{steps}{$_}{reachable} } @{$o->{orderedSteps}}; } sub dont_run_directly_stage2() { readlink("/usr/bin/runinstall2") eq "runinstall2.sh"; } sub spawnShell() { return if $::o->{localInstall} || $::testing || dont_run_directly_stage2(); if (my $shellpid = fork()) { output('/var/run/drakx_shell.pid', $shellpid); return; } $ENV{DISPLAY} ||= ":0"; #- why not :pp local *F; sysopen F, "/dev/tty2", 2 or log::l("cannot open /dev/tty2 -- no shell will be provided: $!"), goto cant_spawn; open STDIN, "<&F" or goto cant_spawn; open STDOUT, ">&F" or goto cant_spawn; open STDERR, ">&F" or goto cant_spawn; close F; print drakx_version(), "\n"; c::setsid(); ioctl(STDIN, c::TIOCSCTTY(), 0) or warn "could not set new controlling tty: $!"; my @args; -e '/etc/bashrc' and @args = qw(--rcfile /etc/bashrc); foreach (qw(/bin/bash /usr/bin/busybox /bin/sh)) { -x $_ or next; my $program_name = /busybox/ ? "/bin/sh" : $_; #- since perl_checker is too dumb exec { $_ } $program_name, @args or log::l("exec of $_ failed: $!"); } log::l("cannot open any shell"); cant_spawn: c::_exit(1); } sub getAvailableSpace { my ($o) = @_; #- make sure of this place to be available for installation, this could help a lot. #- currently doing a very small install use 36Mb of postinstall-rpm, but installing #- these packages may eat up to 90Mb (of course not all the server may be installed!). #- 65mb may be a good choice to avoid almost all problem of insuficient space left... my $minAvailableSize = 65 * sqr(1024); my $n = !$::testing && getAvailableSpace_mounted($o->{prefix}) || getAvailableSpace_raw($o->{fstab}) * 512 / 1.07; $n - max(0.1 * $n, $minAvailableSize); } sub getAvailableSpace_mounted { my ($prefix) = @_; my $dir = -d "$prefix/usr" ? "$prefix/usr" : $prefix; my (undef, $free) = MDK::Common::System::df($dir) or return; log::l("getAvailableSpace_mounted $free KB"); $free * 1024 || 1; } sub getAvailableSpace_raw { my ($fstab) = @_; do { $_->{mntpoint} eq '/usr' and return $_->{size} } foreach @$fstab; do { $_->{mntpoint} eq '/' and return $_->{size} } foreach @$fstab; if ($::testing) { my $nb = 450; log::l("taking ${nb}MB for testing"); return $nb << 11; } die "missing root partition"; } sub preConfigureTimezone { my ($o) = @_; require timezone; #- can not be done in install cuz' timeconfig %post creates funny things add2hash($o->{timezone}, timezone::read()) if $o->{isUpgrade}; $o->{timezone}{timezone} ||= timezone::bestTimezone($o->{locale}{country}); my $utc = every { !isFat_or_NTFS($_) } @{$o->{fstab}}; my $ntp = timezone::ntp_server(); add2hash_($o->{timezone}, { UTC => $utc, ntp => $ntp }); } sub ask_if_suppl_media { my ($o) = @_; our $suppl_already_asked; my $msg = $suppl_already_asked ? N("Do you have further supplementary media?") : formatAlaTeX( #-PO: keep the double empty lines between sections, this is formatted a la LaTeX N("The following media have been found and will be used during install: %s. Do you have a supplementary installation media to configure?", join ", ", uniq(sort { (my $x) = $a =~ /CD(\d+)/; (my $y) = $b =~ /CD(\d+)/; $x && $y ? $x <=> $y : $a cmp $b; } map { $_->{descr} } values %{$o->{packages}{mediums}}))); $o->ask_from( '', $msg, [ { val => \my $suppl, list => [ N_("None"), N_("CD-ROM"), N_("Network (http)"), N_("Network (ftp)") ], type => 'list', format => \&translate, } ], ); $suppl_already_asked = 1; return $suppl; } #- if the supplementary media is networked, but not the main one, network #- support must be installed and network started. sub prep_net_suppl_media { return if our $net_suppl_media_configured; $net_suppl_media_configured = 1; my ($o) = @_; #- install basesystem now $::o->do_pkgs->ensure_is_installed('basesystem', undef, 1); #- from install_steps_interactive: local $::expert = $::expert; require network::netconnect; network::netconnect::main($o->{netcnx} ||= {}, $o, $o->{modules_conf}, $o->{netc}, $o->{mouse}, $o->{intf}, 0, 1); require install_interactive; install_interactive::upNetwork($o); sleep(3); } sub remountCD1 { my ($o, $cdrom) = @_; openCdromTray($cdrom); $o->ask_warn('', N("Insert the CD 1 again")); mountCdrom("/tmp/image", $cdrom); log::l($@) if $@; $asked_medium = 1; } sub selectSupplMedia { my ($o, $suppl_method) = @_; #- ask whether there are supplementary media my $prev_asked_medium = $asked_medium; if ($suppl_method && (my $suppl = ask_if_suppl_media($o)) ne 'None') { #- translate to method name $suppl_method = { 'CD-ROM' => 'cdrom', 'Network (http)' => 'http', 'Network (ftp)' => 'ftp', }->{$suppl}; my $medium_name = $suppl_method eq 'cdrom' ? (max(map { $_->{medium} =~ /^(\d+)s$/ ? $1 : 0 } values %{$o->{packages}{mediums}}) + 1) . "s" : int(keys %{$o->{packages}{mediums}}) + 1; #- configure network if needed prep_net_suppl_media($o) if !scalar keys %{$o->{intf}} && $suppl_method !~ /^(?:cdrom|disk)/; local $::isWizard = 0; my $main_method = $o->{method}; local $o->{method} = $suppl_method; if ($suppl_method eq 'cdrom') { (my $cdromdev) = detect_devices::cdroms(); $o->ask_warn('', N("No device found")), return 'error' if !$cdromdev; $cdrom = $cdromdev->{device}; $cdrom =~ m,^/, or $cdrom = "/dev/$cdrom"; devices::make($cdrom); ejectCdrom($cdrom); if ($o->ask_okcancel('', N("Insert the CD"), 1)) { #- mount suppl CD in /mnt/cdrom to avoid umounting /tmp/image mountCdrom("/mnt/cdrom", $cdrom); if ($@) { log::l($@); $o->ask_warn('', N("Unable to mount CD-ROM")); return 'error'; } useMedium($medium_name); #- probe for an hdlists file and then look for all hdlists listed herein eval { pkgs::psUsingHdlists($o, $suppl_method, "/mnt/cdrom", $o->{packages}, $medium_name, sub { my ($supplmedium) = @_; $supplmedium->mark_suppl; }); }; log::l("psUsingHdlists failed: $@") if $@; #- copy latest compssUsers.pl and rpmsrate somewhere locally getAndSaveFile("/mnt/cdrom/media/media_info/compssUsers.pl", "/tmp/compssUsers.pl"); getAndSaveFile("/mnt/cdrom/media/media_info/rpmsrate", "/tmp/rpmsrate"); #- umount supplementary CD. Will re-ask for it later getFile("XXX"); #- close still opened filehandles log::l("Umounting suppl. CD, back to medium 1"); eval { fs::umount("/mnt/cdrom") }; #- re-mount CD 1 if this was a cdrom install $main_method eq 'cdrom' and remountCD1($o, $cdrom); } else { $main_method eq 'cdrom' and remountCD1($o, $cdrom); return 'error'; } } else { my $url; local $global_ftp_prefix; if ($suppl_method eq 'ftp') { #- mirrors are ftp only (currently) $url = $o->askSupplMirror(N("URL of the mirror?")) or return 'error'; $url =~ m!^ftp://(?:(.*?)(?::(.*?))?\@)?([^/]+)/(.*)! and $global_ftp_prefix = [ $3, $4, $1, $2 ]; #- for getFile } else { $url = $o->ask_from_entry('', N("URL of the mirror?")) or return 'error'; $url =~ s!/+\z!!; } useMedium($medium_name); require http if $suppl_method eq 'http'; require ftp if $suppl_method eq 'ftp'; #- first, try to find an hdlists file eval { pkgs::psUsingHdlists($o, $suppl_method, $url, $o->{packages}, $medium_name, \&setup_suppl_medium) }; if ($@) { log::l("psUsingHdlists failed: $@"); } else { #- copy latest compssUsers.pl and rpmsrate somewhere locally if ($suppl_method eq 'ftp') { getAndSaveFile("media/media_info/compssUsers.pl", "/tmp/compssUsers.pl"); getAndSaveFile("media/media_info/rpmsrate", "/tmp/rpmsrate"); } else { getAndSaveFile("$url/media/media_info/compssUsers.pl", "/tmp/compssUsers.pl"); getAndSaveFile("$url/media/media_info/rpmsrate", "/tmp/rpmsrate"); } useMedium($prev_asked_medium); #- back to main medium return $suppl_method; } #- then probe for an hdlist.cz my $f = eval { if ($suppl_method eq 'http') { http::getFile("$url/media_info/hdlist.cz"); } elsif ($suppl_method eq 'ftp') { getFile("media_info/hdlist.cz"); } else { undef } }; if (!defined $f) { log::l($@) if $@; #- no hdlist found $o->ask_warn('', N("Can't find a package list file on this mirror. Make sure the location is correct.")); useMedium($prev_asked_medium); return 'error'; } my $supplmedium = pkgs::psUsingHdlist( $suppl_method, $o->{packages}, "hdlist$medium_name.cz", #- hdlist $medium_name, '', #- rpmsdir "Supplementary media $medium_name", #- description 1, # selected $f, ); close $f; if ($supplmedium) { log::l("read suppl hdlist (via $suppl_method)"); setup_suppl_medium($supplmedium, $url, $suppl_method); } else { log::l("no suppl hdlist"); $suppl_method = 'error'; } } } else { $suppl_method = ''; } useMedium($prev_asked_medium); #- back to main medium return $suppl_method; } sub setup_suppl_medium { my ($supplmedium, $url, $suppl_method) = @_; $supplmedium->{prefix} = $url; #- for install_urpmi if ($suppl_method eq 'ftp') { $url =~ m!^ftp://(?:(.*?)(?::(.*?))?\@)?([^/]+)/(.*)! and $supplmedium->{ftp_prefix} = [ $3, $4, $1, $2 ]; #- for getFile } $supplmedium->select; $supplmedium->{method} = $suppl_method; $supplmedium->{with_hdlist} = 'media_info/hdlist.cz'; #- for install_urpmi $supplmedium->mark_suppl; } sub _media_rank { my ($x) = @_; my ($y, $s) = $x =~ /(\d+)(s?)\)\.cz/; $s and $y += 100; $y; } sub load_rate_files { my ($o) = @_; #- must be done after getProvides #- if there is a supplementary media, the rpmsrate/compssUsers are overridable pkgs::read_rpmsrate( $o->{packages}, $o->{rpmsrate_flags_chosen}, -e "/tmp/rpmsrate" ? getLocalFile("/tmp/rpmsrate") : getFile("media/media_info/rpmsrate") ); ($o->{compssUsers}, $o->{gtk_display_compssUsers}) = pkgs::readCompssUsers( -e '/tmp/compssUsers.pl' ? '/tmp/compssUsers.pl' : 'media/media_info/compssUsers.pl' ); defined $o->{compssUsers} or die "Can't read compssUsers.pl file, aborting installation\n"; } sub setPackages { my ($o, $rebuild_needed) = @_; require pkgs; if (!$o->{packages} || is_empty_array_ref($o->{packages}{depslist})) { ($o->{packages}, my $suppl_method, my $copy_rpms_on_disk) = pkgs::psUsingHdlists($o, $o->{method}); 1 while $suppl_method = $o->selectSupplMedia($suppl_method); #- open rpm db according to right mode needed. $o->{packages}{rpmdb} ||= pkgs::rpmDbOpen($rebuild_needed); #- always try to select basic kernel (else on upgrade, kernel will never be updated provided a kernel is already #- installed and provides what is necessary). pkgs::selectPackage($o->{packages}, pkgs::bestKernelPackage($o->{packages}) || die("missing kernel package"), 1); pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, 'basesystem') || die("missing basesystem package"), 1); my $rpmsrate_flags_was_chosen = $o->{rpmsrate_flags_chosen}; put_in_hash($o->{rpmsrate_flags_chosen} ||= {}, rpmsrate_always_flags($o)); #- must be done before pkgs::read_rpmsrate() load_rate_files($o); copy_rpms_on_disk($o) if $copy_rpms_on_disk; set_rpmsrate_default_category_flags($o, $rpmsrate_flags_was_chosen); push @{$o->{default_packages}}, default_packages($o); select_default_packages($o); } else { #- this has to be done to make sure necessary files for urpmi are #- present. pkgs::psUpdateHdlistsDeps($o->{packages}); #- open rpm db (always without rebuilding db, it should be false at this point). $o->{packages}{rpmdb} ||= pkgs::rpmDbOpen(); } } sub count_files { my ($dir) = @_; -d $dir or return 0; opendir my $dh, $dir or return 0; my @list = grep { !/^\.\.?$/ } readdir $dh; closedir $dh; my $c = 0; foreach my $n (@list) { my $p = "$dir/$n"; if (-d $p) { $c += count_files($p) } else { ++$c } } $c; } sub cp_with_progress { my $wait_message = shift; my $current = shift; my $total = shift; my $dest = pop @_; @_ or return; @_ == 1 || -d $dest or die "cp: copying multiple files, but last argument ($dest) is not a directory\n"; foreach my $src (@_) { my $dest = $dest; -d $dest and $dest .= '/' . basename($src); unlink $dest; if (-l $src) { unless (symlink(readlink($src) || die("readlink failed: $!"), $dest)) { warn "symlink: can't create symlink $dest: $!\n"; } } elsif (-d $src) { -d $dest or mkdir $dest, (stat($src))[2] or die "mkdir: can't create directory $dest: $!\n"; cp_with_progress($wait_message, $current, $total, glob_($src), $dest); } else { open(my $F, $src) or die "can't open $src for reading: $!\n"; open(my $G, ">", $dest) or die "can't cp to file $dest: $!\n"; local $/ = \4096; local $_; while (<$F>) { print $G $_ } chmod((stat($src))[2], $dest); $wait_message->('', ++$current, $total); } } 1; } sub copy_rpms_on_disk { my ($o) = @_; mkdir "$o->{prefix}/$_", 0755 foreach qw(var var/ftp var/ftp/pub var/ftp/pub/Mandrivalinux var/ftp/pub/Mandrivalinux/media); local *changeMedium = sub { my ($method, $medium) = @_; my $name = install_medium::by_id($medium, $o->{packages})->{descr}; if (method_allows_medium_change($method)) { my $r; if ($method =~ /-iso$/) { $r = install_any::changeIso($name); } else { cat_("/proc/mounts") =~ m,(/dev/\S+)\s+(/mnt/cdrom|/tmp/image), and ($cdrom, my $mountpoint) = ($1, $2); ejectCdrom($cdrom, $mountpoint); $r = $o->ask_okcancel('', N("Change your Cd-Rom! Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.", $name), 1); } return $r; } else { return 1; } }; foreach my $k (pkgs::allMediums($o->{packages})) { my $m = install_medium::by_id($k, $o->{packages}); #- don't copy rpms of supplementary media next if $m->is_suppl; my ($wait_w, $wait_message) = fs::format::wait_message($o); #- nb, this is only called when interactive $wait_message->(N("Copying in progress") . "\n($m->{descr})"); #- XXX to be translated if ($k != $current_medium) { my $cd_k = $m->get_cd_number; my $cd_cur = install_medium::by_id($current_medium, $o->{packages})->get_cd_number; $cd_k ne $cd_cur and do { askChangeMedium($o->{method}, $k) or next; mountCdrom("/tmp/image", $cdrom) if $o->{method} eq 'cdrom'; } while !-d "/tmp/image/$m->{rpmsdir}"; $current_medium = $k; } log::l("copying /tmp/image/$m->{rpmsdir} to $o->{prefix}/var/ftp/pub/Mandrivalinux/media"); my $total = count_files("/tmp/image/$m->{rpmsdir}"); log::l("($total files)"); eval { cp_with_progress($wait_message, 0, $total, "/tmp/image/$m->{rpmsdir}", "$o->{prefix}/var/ftp/pub/Mandrivalinux/media"); }; log::l($@) if $@; $m->{prefix} = "$o->{prefix}/var/ftp/pub/Mandrivalinux"; $m->{method} = 'disk'; $m->{with_hdlist} = 'media_info/hdlist.cz'; #- for install_urpmi undef $wait_w; } ejectCdrom() if $o->{method} eq "cdrom"; #- now the install will continue as 'disk' $o->{method} = 'disk'; #- shoud be enough to fool errorOpeningFile $current_medium = 1; our $copied_rpms_on_disk = 1; } sub set_rpmsrate_default_category_flags { my ($o, $rpmsrate_flags_was_chosen) = @_; #- if no cleaning needed, populate by default, clean is used for second or more call to this function. if ($::auto_install && ($o->{rpmsrate_flags_chosen} || {})->{CAT_ALL}) { $o->{rpmsrate_flags_chosen}{"CAT_$_"} = 1 foreach map { @{$_->{flags}} } @{$o->{compssUsers}}; } if (!$rpmsrate_flags_was_chosen && !$o->{isUpgrade}) { #- use default selection seen in compssUsers directly. $_->{selected} = $_->{default_selected} foreach @{$o->{compssUsers}}; set_rpmsrate_category_flags($o, $o->{compssUsers}); } } sub set_rpmsrate_category_flags { my ($o, $compssUsers) = @_; $o->{rpmsrate_flags_chosen}{$_} = 0 foreach grep { /^CAT_/ } keys %{$o->{rpmsrate_flags_chosen}}; $o->{rpmsrate_flags_chosen}{"CAT_$_"} = 1 foreach map { @{$_->{flags}} } grep { $_->{selected} } @$compssUsers; $o->{rpmsrate_flags_chosen}{CAT_SYSTEM} = 1; } sub rpmsrate_always_flags { my ($o) = @_; my $rpmsrate_flags_chosen = {}; $rpmsrate_flags_chosen->{uc($_)} = 1 foreach grep { modules::probe_category("multimedia/$_") } modules::sub_categories('multimedia'); $rpmsrate_flags_chosen->{uc($_)} = 1 foreach map { $_->{driver} =~ /Flag:(.*)/ } detect_devices::probeall(); $rpmsrate_flags_chosen->{DOCS} = !$o->{excludedocs}; $rpmsrate_flags_chosen->{UTF8} = $o->{locale}{utf8}; $rpmsrate_flags_chosen->{BURNER} = 1 if detect_devices::burners(); $rpmsrate_flags_chosen->{DVD} = 1 if detect_devices::dvdroms(); $rpmsrate_flags_chosen->{USB} = 1 if $o->{modules_conf}->get_probeall("usb-interface"); $rpmsrate_flags_chosen->{PCMCIA} = 1 if detect_devices::hasPCMCIA(); $rpmsrate_flags_chosen->{HIGH_SECURITY} = 1 if $o->{security} > 3; $rpmsrate_flags_chosen->{BIGMEM} = 1 if detect_devices::BIGMEM(); $rpmsrate_flags_chosen->{SMP} = 1 if detect_devices::hasSMP(); $rpmsrate_flags_chosen->{CDCOM} = 1 if any { $_->{descr} =~ /commercial/i } values %{$o->{packages}{mediums}}; $rpmsrate_flags_chosen->{TV} = 1 if detect_devices::getTVcards(); $rpmsrate_flags_chosen->{'3D'} = 1 if detect_devices::matching_desc__regexp('Matrox.* G[245][05]0') || detect_devices::matching_desc__regexp('Rage X[CL]') || detect_devices::matching_desc__regexp('3D Rage (?:LT|Pro)') || detect_devices::matching_desc__regexp('Voodoo [35]') || detect_devices::matching_desc__regexp('Voodoo Banshee') || detect_devices::matching_desc__regexp('8281[05].* CGC') || detect_devices::matching_desc__regexp('Rage 128') || detect_devices::matching_desc__regexp('Radeon ') || #- all Radeon card are now 3D with 4.3.0 detect_devices::matching_desc__regexp('[nN]Vidia.*T[nN]T2') || #- TNT2 cards detect_devices::matching_desc__regexp('[nN][vV]idia.*NV[56]') || detect_devices::matching_desc__regexp('[nN][vV]idia.*Vanta') || detect_devices::matching_desc__regexp('[nN][vV]idia.*[gG]e[fF]orce') || #- GeForce cards detect_devices::matching_desc__regexp('[nN][vV]idia.*NV1[15]') || detect_devices::matching_desc__regexp('[nN][vV]idia.*Quadro'); foreach (lang::langsLANGUAGE($o->{locale}{langs})) { $rpmsrate_flags_chosen->{qq(LOCALES"$_")} = 1; } $rpmsrate_flags_chosen->{'CHARSET"' . lang::l2charset($o->{locale}{lang}) . '"'} = 1; $rpmsrate_flags_chosen; } sub default_packages { my ($o) = @_; my @l; push @l, "brltty" if cat_("/proc/cmdline") =~ /brltty=/; push @l, "nfs-utils-clients" if $o->{method} eq "nfs"; push @l, "numlock" if $o->{miscellaneous}{numlock}; push @l, "mdadm" if !is_empty_array_ref($o->{all_hds}{raids}); push @l, "lvm2" if !is_empty_array_ref($o->{all_hds}{lvms}); push @l, "alsa", "alsa-utils" if any { $o->{modules_conf}->get_alias("sound-slot-$_") =~ /^snd-/ } 0 .. 4; push @l, map { if_($_->{driver} =~ /^Pkg:(.*)/, $1) } detect_devices::probeall(); my $dmi_BIOS = detect_devices::dmidecode_category('BIOS'); my $dmi_Base_Board = detect_devices::dmidecode_category('Base Board'); if ($dmi_BIOS->{Vendor} eq 'COMPAL' && $dmi_BIOS->{Characteristics} =~ /Function key-initiated network boot is supported/ || $dmi_Base_Board->{Manufacturer} =~ /^ACER/ && $dmi_Base_Board->{'Product Name'} =~ /TravelMate 610/) { modules::append_to_modules_loaded_at_startup_for_all_kernels('acerhk'); } push @l, "grub" if isLoopback(fs::get::root($o->{fstab})); push @l, uniq(grep { $_ } map { fs::format::package_needed_for_partition_type($_) } @{$o->{fstab}}); my @locale_pkgs = map { pkgs::packagesProviding($o->{packages}, 'locales-' . $_) } lang::langsLANGUAGE($o->{locale}{langs}); unshift @l, uniq(map { $_->name } @locale_pkgs); @l; } sub select_default_packages { my ($o) = @_; pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_) || next) foreach @{$o->{default_packages}}; } sub unselectMostPackages { my ($o) = @_; pkgs::unselectAllPackages($o->{packages}); select_default_packages($o); } sub warnAboutNaughtyServers { my ($o) = @_; my @naughtyServers = pkgs::naughtyServers($o->{packages}) or return 1; my $r = $o->ask_from_list_('', formatAlaTeX( #-PO: keep the double empty lines between sections, this is formatted a la LaTeX N("You have selected the following server(s): %s These servers are activated by default. They do not have any known security issues, but some new ones could be found. In that case, you must make sure to upgrade as soon as possible. Do you really want to install these servers? ", join(", ", @naughtyServers))), [ N_("Yes"), N_("No") ], 'Yes') or return; if ($r ne 'Yes') { log::l("unselecting naughty servers"); pkgs::unselectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_)) foreach @naughtyServers; } 1; } sub warnAboutRemovedPackages { my ($o, $packages) = @_; my @removedPackages = keys %{$packages->{state}{ask_remove} || {}} or return; if (!$o->ask_yesorno('', formatAlaTeX( #-PO: keep the double empty lines between sections, this is formatted a la LaTeX N("The following packages will be removed to allow upgrading your system: %s Do you really want to remove these packages? ", join(", ", @removedPackages))), 1)) { $packages->{state}{ask_remove} = {}; } } sub addToBeDone(&$) { my ($f, $step) = @_; return &$f() if $::o->{steps}{$step}{done}; push @{$::o->{steps}{$step}{toBeDone}}, $f; } sub set_authentication { my ($o) = @_; my $when_network_is_up = sub { my ($f) = @_; #- defer running xxx - no network yet addToBeDone { require install_steps; install_steps::upNetwork($o, 'pppAvoided'); $f->(); } 'configureNetwork'; }; require authentication; authentication::set($o, $o->{netc}, $o->{authentication} ||= {}, $when_network_is_up); } sub killCardServices() { my $pid = chomp_(cat_("/tmp/cardmgr.pid")); $pid and kill(15, $pid); #- send SIGTERM } sub unlockCdrom() { my $cdrom = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+(?:/mnt/cdrom|/tmp/image)! && $1 or return; eval { ioctl(detect_devices::tryOpen($cdrom), c::CDROM_LOCKDOOR(), 0) }; $@ and log::l("unlock cdrom ($cdrom) failed: $@"); } sub openCdromTray { my ($cdrom) = @_; eval { ioctl(detect_devices::tryOpen($cdrom), c::CDROMEJECT(), 1) }; $@ and log::l("ejection failed: $@"); } sub ejectCdrom { my ($o_cdrom, $o_mountpoint) = @_; getFile("XXX"); #- close still opened filehandle my $cdrom; my $mounts = cat_("/proc/mounts"); if ($o_mountpoint) { $cdrom = $o_cdrom || $mounts =~ m!(/dev/\S+)\s+(/mnt/cdrom|/tmp/image)! && $1; } else { my $mntpt; if ($o_cdrom) { $cdrom = $mounts =~ m!((?:/dev/)?$o_cdrom)\s+(/mnt/cdrom|/tmp/image)! && $1; $mntpt = $2; } else { $cdrom = $mounts =~ m!(/dev/\S+)\s+(/mnt/cdrom|/tmp/image)! && $1; $mntpt = $2; } $o_mountpoint ||= $cdrom ? $mntpt || '/tmp/image' : ''; } $cdrom ||= $o_cdrom; #- umount BEFORE opening the cdrom device otherwise the umount will #- D state if the cdrom is already removed $o_mountpoint and eval { fs::umount($o_mountpoint) }; $@ and warnAboutFilesStillOpen(); return if is_xbox(); openCdromTray($cdrom); } sub warnAboutFilesStillOpen() { log::l("files still open: ", readlink($_)) foreach map { glob_("$_/fd/*") } glob_("/proc/*"); } sub install_urpmi { my ($method, $packages) = @_; my @mediums = values %{$packages->{mediums}}; my $hdInstallPath = any::hdInstallPath(); #- rare case where urpmi cannot be installed (no hd install path). our $copied_rpms_on_disk; $method eq 'disk' && !$hdInstallPath && !$copied_rpms_on_disk and return; log::l("install_urpmi $method"); #- clean to avoid opening twice the rpm db. delete $packages->{rpmdb}; #- import pubkey in rpmdb. my $db = pkgs::rpmDbOpenForInstall(); $packages->parse_pubkeys(db => $db); foreach my $medium (@mediums) { $packages->import_needed_pubkeys($medium->{pubkey}, db => $db, callback => sub { my (undef, undef, $_k, $id, $imported) = @_; if ($id) { log::l(($imported ? "imported" : "found") . " key=$id for medium $medium->{descr}"); $medium->{key_ids}{$id} = undef; } }); } my @cfg; foreach (sort { $a->{medium} <=> $b->{medium} } @mediums) { my $name = $_->{fakemedium}; if ($_->ignored || $_->selected) { my $curmethod = $_->method || $::o->{method}; my $dir = (($copied_rpms_on_disk ? "/var/ftp/pub/Mandrivalinux" : '') || $_->{prefix} || ${{ nfs => "file://mnt/nfs", disk => "file:/" . $hdInstallPath, ftp => $ENV{URLPREFIX}, http => $ENV{URLPREFIX}, cdrom => "removable://mnt/cdrom" }}{$curmethod} || #- for live_update or live_install script. readlink("/tmp/image/media") =~ m,^(/.*)/media/*$, && "removable:/$1") . "/$_->{rpmsdir}"; #- use list file only if visible password or macro. my $need_list = $dir =~ m,^(?:[^:]*://[^/:\@]*:[^/:\@]+\@|.*%{),; #- } my $removable_device; if ($curmethod eq 'disk-iso') { my $p = find { $_->{real_mntpoint} eq '/tmp/hdimage' } @{$::o->{fstab}} or log::l("unable to find ISO image mountpoint, not adding urpmi media"), next; my $iso_info = find_ISO_image_labelled($_->{descr}) or log::l("unable to find ISO image labelled $name, not adding urpmi media"), next; my ($iso_path) = $iso_info->{file} =~ m,^/tmp/hdimage/+(.*), or log::l("unable to find ISO image file name ($iso_info->{file}), not adding urpmi media"), next; my $dest = "/mnt/inst_iso"; $dir = "removable:/$dest/$_->{rpmsdir}"; -d "$::prefix$dest" or mkdir_p("$::prefix$dest"); #- FIXME: don't use /mnt/hd but really try to find the mount point $removable_device = ($p->{mntpoint} || "/mnt/hd") . "/$iso_path"; } elsif ($curmethod eq 'cdrom') { $removable_device = '/dev/cdrom'; my $p; $p = fs::get::mntpoint2part("/tmp/image", $::o->{fstab}) and $removable_device = $p->{device}; $_->{static} = 1; } #- build a list file if needed. if ($need_list) { my $mask = umask 077; open(my $LIST, ">$::prefix/var/lib/urpmi/list.$name") or log::l("failed to write list.$name"); umask $mask; #- build list file using internal data, synthesis file should exist. if ($_->{end} > $_->{start}) { #- WARNING this method of build only works because synthesis (or hdlist) #- has been read. foreach (@{$packages->{depslist}}[$_->{start} .. $_->{end}]) { my $arch = $_->arch; my $ldir = $dir; $ldir =~ s|/([^/]*)%{ARCH}|/./$1$arch|; $ldir =~ s|%{ARCH}|$arch|g; print $LIST "$ldir/" . $_->filename . "\n"; } } else { #- need to use another method here to build list file. open(my $F, "parsehdlist '$::prefix/var/lib/urpmi/hdlist.$name.cz' |"); local $_; while (<$F>) { my ($arch) = /\.([^\.]+)\.rpm$/; my $ldir = $dir; $ldir =~ s|/([^/]*)%{ARCH}|/./$1$arch|; $ldir =~ s|%{ARCH}|$arch|g; print $LIST "$ldir/$_"; } close $F; } close $LIST; } #- build a names file if (open my $F, ">", "$::prefix/var/lib/urpmi/names.$name") { if (defined $_->{start} && defined $_->{end}) { foreach ($_->{start} .. $_->{end}) { print $F $packages->{depslist}[$_]->name . "\n"; } } close $F; } #- build synthesis file if there are still not existing (ie not copied from mirror). if (-s "$::prefix/var/lib/urpmi/synthesis.hdlist.$name.cz" <= 32) { unlink "$::prefix/var/lib/urpmi/synthesis.hdlist.$name.cz"; run_program::rooted($::prefix, "parsehdlist", ">", "/var/lib/urpmi/synthesis.hdlist.$name", "--synthesis", "/var/lib/urpmi/hdlist.$name.cz"); run_program::rooted($::prefix, "gzip", "-S", ".cz", "/var/lib/urpmi/synthesis.hdlist.$name"); } my ($qname, $qdir) = ($name, $dir); $qname =~ s/(\s)/\\$1/g; $qdir =~ s/(\s)/\\$1/g; #- compute correctly reference to media/media_info my $with; if ($_->{update}) { $with = "media_info/hdlist.cz"; } elsif ($_->{with_hdlist}) { $with = $_->{with_hdlist}; } else { $with = $_->{rpmsdir}; $with =~ s|/[^/]*%{ARCH}.*||; $with =~ s|/+|/|g; $with =~ s|/$||; $with =~ s|[^/]||g; $with =~ s!/!../!g; $with .= "../media/media_info/$_->{hdlist}"; } #- output new urpmi.cfg format here. push @cfg, "$qname " . ($need_list ? "" : $qdir) . " { hdlist: hdlist.$name.cz with_hdlist: $with" . ($need_list ? " list: list.$name" : "") . (keys(%{$_->{key_ids}}) ? " key-ids: " . join(',', keys(%{$_->{key_ids}})) : "") . (defined $removable_device && " removable: $removable_device") . ($_->{update} ? " update" : "") . ($_->{static} ? " static" : "") . " } "; } else { #- remove not selected media by removing hdlist and synthesis files copied. log::l("removing media $name"); unlink "$::prefix/var/lib/urpmi/hdlist.$name.cz"; unlink "$::prefix/var/lib/urpmi/synthesis.hdlist.$name.cz"; } } #- touch a MD5SUM file and write config file eval { output("$::prefix/var/lib/urpmi/MD5SUM", '') }; eval { output "$::prefix/etc/urpmi/urpmi.cfg", @cfg }; } #-############################################################################### #- kde stuff #-############################################################################### sub kderc_largedisplay { my ($prefix) = @_; update_gnomekderc($_, 'KDE', Contrast => 7, kfmIconStyle => "Large", kpanelIconStyle => "Normal", #- to change to Large when icons looks better KDEIconStyle => "Large") foreach list_skels($prefix, '.kderc'); substInFile { s/^(GridWidth)=85/$1=100/; s/^(GridHeight)=70/$1=75/; } $_ foreach list_skels($prefix, '.kde/share/config/kfmrc'); } sub kdemove_desktop_file { my ($prefix) = @_; my @toMove = qw(doc.kdelnk news.kdelnk updates.kdelnk home.kdelnk printer.kdelnk floppy.kdelnk cdrom.kdelnk FLOPPY.kdelnk CDROM.kdelnk); #- remove any existing save in Trash of each user and #- move appropriate file there after an upgrade. foreach my $dir (grep { -d $_ } list_skels($prefix, 'Desktop')) { renamef("$dir/$_", "$dir/Trash/$_") foreach grep { -e "$dir/$_" } @toMove, grep { /\.rpmorig$/ } all($dir); } } #-############################################################################### #- auto_install stuff #-############################################################################### sub auto_inst_file() { "$::prefix/root/drakx/auto_inst.cfg.pl" } sub report_bug() { any::report_bug('auto_inst' => g_auto_install('', 1)); } sub g_auto_install { my ($b_replay, $b_respect_privacy) = @_; my $o = {}; require pkgs; $o->{default_packages} = pkgs::selected_leaves($::o->{packages}); my @fields = qw(mntpoint fs_type size); $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l; } grep { $_->{mntpoint} && fs::format::known_type($_); } @{$::o->{fstab}} ]; exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(locale authentication mouse netc timezone superuser intf keyboard users partitioning isUpgrade manualFstab nomouseprobe crypto security security_user libsafe netcnx useSupermount autoExitInstall X services postInstall postInstallNonRooted); #- TODO modules bootloader $o->{printer} = $::o->{printer} if $::o->{printer}; local $o->{partitioning}{auto_allocate} = !$b_replay; $o->{autoExitInstall} = !$b_replay; $o->{interactiveSteps} = [ 'doPartitionDisks', 'formatPartitions' ] if $b_replay; #- deep copy because we're modifying it below $o->{users} = $b_respect_privacy ? [] : [ @{$o->{users} || []} ]; my @user_info_to_remove = ( if_($b_respect_privacy, qw(realname pw)), qw(oldu oldg password password2), ); $_ = { %{$_ || {}} }, delete @$_{@user_info_to_remove} foreach $o->{superuser}, @{$o->{users} || []}; if ($b_respect_privacy && $o->{netcnx}) { if (my $type = $o->{netcnx}{type}) { my @netcnx_type_to_remove = qw(passwd passwd2 login phone_in phone_out); $_ = { %{$_ || {}} }, delete @$_{@netcnx_type_to_remove} foreach $o->{netcnx}{$type}; } } my $warn_privacy = $b_respect_privacy ? "!! This file has been simplified to respect privacy when reporting problems. # You should use /root/drakx/auto_inst.cfg.pl instead !!\n#" : ''; require Data::Dumper; my $str = join('', "#!/usr/bin/perl -cw # $warn_privacy # You should check the syntax of this file before using it in an auto-install. # You can do this with 'perl -cw auto_inst.cfg.pl' or by executing this file # (note the '#!/usr/bin/perl -cw' on the first line). ", Data::Dumper->Dump([$o], ['$o']), "\0"); $str =~ s/ {8}/\t/g; #- replace all 8 space char by only one tabulation, this reduces file size so much :-) $str; } sub getAndSaveInstallFloppies { my ($o, $dest_dir, $name) = @_; if ($postinstall_rpms && -d $postinstall_rpms && -r "$postinstall_rpms/auto_install.img") { log::l("getAndSaveInstallFloppies: using file saved as $postinstall_rpms/auto_install.img"); cp_af("$postinstall_rpms/auto_install.img", "$dest_dir/$name.img"); "$dest_dir/$name.img"; } else { my $image = cat_("/proc/cmdline") =~ /pcmcia/ ? "pcmcia" : arch() =~ /ia64|ppc/ ? "all" : #- we only use all.img there ${{ disk => 'hd_grub', 'disk-iso' => 'hd_grub', cdrom => 'cdrom', ftp => 'network', nfs => 'network', http => 'network' }}{$o->{method}}; my $have_drivers = $image eq 'network'; $image .= arch() =~ /sparc64/ && "64"; #- for sparc64 there are a specific set of image. if ($have_drivers) { getAndSaveFile("install/images/${image}_drivers.img", "$dest_dir/${name}_drivers.img") or log::l("failed to write Install Floppy (${image}_drivers.img) to $dest_dir/${name}_drivers.img"), return; } getAndSaveFile("install/images/$image.img", "$dest_dir/$name.img") or log::l("failed to write Install Floppy ($image.img) to $dest_dir/$name.img"), return; "$dest_dir/$name.img", if_($have_drivers, "$dest_dir/${name}_drivers.img"); } } sub getAndSaveAutoInstallFloppies { my ($o, $replay) = @_; my $name = ($replay ? 'replay' : 'auto') . '_install'; my $dest_dir = "$o->{prefix}/root/drakx"; eval { modules::load('loop') }; if (arch() =~ /ia64/) { #- nothing yet } else { my $mountdir = "$o->{prefix}/root/aif-mount"; -d $mountdir or mkdir $mountdir, 0755; my $param = 'kickstart=floppy ' . generate_automatic_stage1_params($o); my @imgs = getAndSaveInstallFloppies($o, $dest_dir, $name) or return; foreach my $img (@imgs) { my $dev = devices::set_loop($img) or log::l("couldn't set loopback device"), return; find { eval { fs::mount($dev, $mountdir, $_, 0); 1 } } qw(ext2 vfat) or return; if (-e "$mountdir/menu.lst") { # hd_grub boot disk is different than others substInFile { s/^(\s*timeout.*)/timeout 1/; s/\bautomatic=method:disk/$param/; } "$mountdir/menu.lst"; } elsif (-e "$mountdir/syslinux.cfg") { #- make room first unlink "$mountdir/help.msg", "$mountdir/boot.msg"; substInFile { s/timeout.*/$replay ? 'timeout 1' : ''/e; s/^(\s*append)/$1 $param/; } "$mountdir/syslinux.cfg"; output "$mountdir/boot.msg", $replay ? '' : "\n0c" . "!! If you press enter, an auto-install is going to start. All data on this computer is going to be lost, including any Windows partitions !! " . "07\n"; } if (@imgs == 1 || $img =~ /drivers/) { local $o->{partitioning}{clearall} = !$replay; eval { output("$mountdir/auto_inst.cfg", g_auto_install($replay)) }; $@ and log::l("Warning: <", formatError($@), ">"); } fs::umount($mountdir); devices::del_loop($dev); } rmdir $mountdir; @imgs; } } sub g_default_packages { my ($o) = @_; my ($_h, $file) = media_browser($o, 'save', 'package_list.pl') or return; require Data::Dumper; my $str = Data::Dumper->Dump([ { default_packages => pkgs::selected_leaves($o->{packages}) } ], ['$o']); $str =~ s/ {8}/\t/g; output($file, "# You should always check the syntax with 'perl -cw auto_inst.cfg.pl'\n" . "# before testing. To use it, boot with ``linux defcfg=floppy''\n" . $str . "\0"); } sub loadO { my ($O, $f) = @_; $f ||= auto_inst_file(); my $o; if ($f =~ /^(floppy|patch)$/) { my $f = $f eq "floppy" ? 'auto_inst.cfg' : "patch"; unless ($::testing) { my $dev = devices::make(detect_devices::floppy()); foreach my $fs (arch() =~ /sparc/ ? 'romfs' : ('ext2', 'vfat')) { eval { fs::mount($dev, '/mnt', $fs, 'readonly'); 1 } and goto mount_ok; } die "Could not mount floppy [$dev]"; mount_ok: $f = "/mnt/$f"; } -e $f or $f .= '.pl'; my $_b = before_leaving { fs::umount("/mnt") unless $::testing; modules::unload(qw(vfat fat)); }; $o = loadO($O, $f); } else { my $fh; if (ref $f) { $fh = $f; } else { -e "$f.pl" and $f .= ".pl" unless -e $f; if (-e $f) { open $fh, $f } else { $fh = getFile($f) or die N("Error reading file %s", $f) } } { local $/ = "\0"; no strict; eval <$fh>; close $fh; $@ and die; } $O and add2hash_($o ||= {}, $O); } $O and bless $o, ref $O; #- handle backward compatibility for things that changed foreach (@{$o->{partitions} || []}, @{$o->{manualFstab} || []}) { if (my $type = delete $_->{type}) { if ($type =~ /^(0x)?(\d*)$/) { fs::type::set_pt_type($_, $type); } else { fs::type::set_fs_type($_, $type); } } } #- {rpmsrate_flags_chosen} was called {compssUsersChoice} if (my $rpmsrate_flags_chosen = delete $o->{compssUsersChoice}) { $o->{rpmsrate_flags_chosen} = $rpmsrate_flags_chosen; } #- compssUsers flags are now named CAT_XXX if ($o->{rpmsrate_flags_chosen} && ! any { /^CAT_/ } keys %{$o->{rpmsrate_flags_chosen}}) { #- we don't really know if this is needed for compatibility, but it won't hurt :) foreach (keys %{$o->{rpmsrate_flags_chosen}}) { $o->{rpmsrate_flags_chosen}{"CAT_$_"} = $o->{rpmsrate_flags_chosen}{$_}; } #- it used to be always selected $o->{rpmsrate_flags_chosen}{CAT_SYSTEM} = 1; } $o; } sub generate_automatic_stage1_params { my ($o) = @_; my $method = $o->{method}; my @ks; if ($o->{method} eq 'http') { $ENV{URLPREFIX} =~ m!(http|ftp)://([^/:]+)(.*)! or die; $method = $1; #- in stage1, FTP via HTTP proxy is available through FTP config, not HTTP @ks = (server => $2, directory => $3); } elsif ($o->{method} eq 'ftp') { @ks = (server => $ENV{HOST}, directory => $ENV{PREFIX}, user => $ENV{LOGIN}, pass => $ENV{PASSWORD}); } elsif ($o->{method} eq 'nfs') { cat_("/proc/mounts") =~ m|(\S+):(\S+)\s+/tmp/nfsimage| or internal_error("can not find nfsimage"); @ks = (server => $1, directory => $2); } @ks = (method => $method, @ks); if (member($o->{method}, qw(http ftp nfs))) { if ($ENV{PROXY}) { push @ks, proxy_host => $ENV{PROXY}, proxy_port => $ENV{PROXYPORT}; } my ($intf) = values %{$o->{intf}}; push @ks, interface => $intf->{DEVICE}; if ($intf->{BOOTPROTO} eq 'dhcp') { push @ks, network => 'dhcp'; } else { push @ks, network => 'static', ip => $intf->{IPADDR}, netmask => $intf->{NETMASK}, gateway => $o->{netc}{GATEWAY}; require network::network; if (my @dnss = network::network::dnsServers($o->{netc})) { push @ks, dns => $dnss[0]; } } } #- sync it with ../mdk-stage1/automatic.c my %aliases = (method => 'met', network => 'netw', interface => 'int', gateway => 'gat', netmask => 'netm', adsluser => 'adslu', adslpass => 'adslp', hostname => 'hos', domain => 'dom', server => 'ser', directory => 'dir', user => 'use', pass => 'pas', disk => 'dis', partition => 'par'); 'automatic=' . join(',', map { ($aliases{$_->[0]} || $_->[0]) . ':' . $_->[1] } group_by2(@ks)); } sub guess_mount_point { my ($part, $prefix, $user) = @_; my %l = ( '/' => 'etc/fstab', '/boot' => 'vmlinuz', '/tmp' => '.X11-unix', '/usr' => 'X11R6', '/var' => 'catman', ); my $handle = any::inspect($part, $prefix) or return; my $d = $handle->{dir}; my $mnt = find { -e "$d/$l{$_}" } keys %l; $mnt ||= (stat("$d/.bashrc"))[4] ? '/root' : '/home/user' . ++$$user if -e "$d/.bashrc"; $mnt ||= (any { -d $_ && (stat($_))[4] >= 500 && -e "$_/.bashrc" } glob_($d)) ? '/home' : ''; ($mnt, $handle); } sub suggest_mount_points { my ($fstab, $prefix, $uniq) = @_; my $user; foreach my $part (grep { isTrueFS($_) } @$fstab) { $part->{mntpoint} && !$part->{unsafeMntpoint} and next; #- if already found via an fstab my ($mnt, $handle) = guess_mount_point($part, $prefix, \$user) or next; next if $uniq && fs::get::mntpoint2part($mnt, $fstab); $part->{mntpoint} = $mnt; delete $part->{unsafeMntpoint}; #- try to find other mount points via fstab fs::merge_info_from_fstab($fstab, $handle->{dir}, $uniq, 'loose') if $mnt eq '/'; } $_->{mntpoint} and log::l("suggest_mount_points: $_->{device} -> $_->{mntpoint}") foreach @$fstab; } sub find_root_parts { my ($fstab, $prefix) = @_; map { my $handle = any::inspect($_, $prefix); if (my $f = $handle && common::release_file($handle->{dir})) { my $s = cat_("$handle->{dir}$f"); chomp($s); $s =~ s/\s+for\s+\S+//; log::l("find_root_parts found $_->{device}: $s"); { release => $s, part => $_, release_file => $f }; } else { () } } @$fstab; } sub migrate_device_names { my ($all_hds, $from_fstab, $new_root, $root_from_fstab, $o_in) = @_; log::l("warning: fstab says root partition is $root_from_fstab->{device}, whereas we were reading fstab from $new_root->{device}"); my ($old_prefix, $old_part_number) = devices::simple_partition_scan($root_from_fstab); my ($new_prefix, $new_part_number) = devices::simple_partition_scan($new_root); if ($old_part_number != $new_part_number) { log::l("argh, $root_from_fstab->{device} and $old_part_number->{device} are not the same partition number"); return; } log::l("replacing $old_prefix with $new_prefix"); my %h; foreach (@$from_fstab) { if ($_->{device} =~ s!^\Q$old_prefix!$new_prefix!) { #- this is simple to handle, nothing more to do } elsif ($_->{part_number}) { my $device_prefix = devices::part_prefix($_); push @{$h{$device_prefix}}, $_; } else { #- hopefully this does not need anything special } } my @from_fstab_per_hds = values %h or return; my @current_hds = grep { $new_root->{rootDevice} ne $_->{device} } fs::get::hds($all_hds); found_one: @from_fstab_per_hds or return; foreach my $from_fstab_per_hd (@from_fstab_per_hds) { my ($matching, $other) = partition { my $hd = $_; every { my $wanted = $_; my $part = find { $_->{part_number} eq $wanted->{part_number} } partition_table::get_normal_parts($hd); $part && $part->{fs_type} && fs::type::can_be_this_fs_type($wanted, $part->{fs_type}); } @$from_fstab_per_hd; } @current_hds; @$matching == 1 or next; my ($hd) = @$matching; @current_hds = @$other; @from_fstab_per_hds = grep { $_ != $from_fstab_per_hd } @from_fstab_per_hds; log::l("$hd->{device} nicely corresponds to " . join(' ', map { $_->{device} } @$from_fstab_per_hd)); foreach (@$from_fstab_per_hd) { partition_table::compute_device_name($_, $hd); } goto found_one; } #- we can not find one and only one matching hd my @from_fstab_not_handled = map { @$_ } @from_fstab_per_hds; log::l("we still do not know what to do with: " . join(' ', map { $_->{device} } @from_fstab_not_handled)); if (!$o_in) { die 'still have'; log::l("well, ignoring them!"); return; } my $propositions_valid = every { my $wanted = $_; my @parts = grep { $_->{part_number} eq $wanted->{part_number} && $_->{fs_type} && fs::type::can_be_this_fs_type($wanted, $_->{fs_type}) } fs::get::hds_fstab(@current_hds); $wanted->{propositions} = \@parts; @parts > 0; } @from_fstab_not_handled; $o_in->ask_from('', N("The following disk(s) were renamed:"), [ map { { label => N("%s (previously named as %s)", $_->{mntpoint}, $_->{device}), val => \$_->{device}, format => sub { $_[0] && $_->{device} }, list => [ '', $propositions_valid ? @{$_->{propositions}} : fs::get::hds_fstab(@current_hds) ] }; } @from_fstab_not_handled ]); } sub use_root_part { my ($all_hds, $part, $o_in) = @_; my $migrate_device_names; { my $handle = any::inspect($part, $::prefix) or die; my @from_fstab = fs::read_fstab($handle->{dir}, '/etc/fstab', 'keep_default'); my $root_from_fstab = fs::get::root_(\@from_fstab); if (!fsedit::is_same_hd($root_from_fstab, $part)) { $migrate_device_names = 1; log::l("from_fstab contained: $_->{device} $_->{mntpoint}") foreach @from_fstab; migrate_device_names($all_hds, \@from_fstab, $part, $root_from_fstab, $o_in); log::l("from_fstab now contains: $_->{device} $_->{mntpoint}") foreach @from_fstab; } fs::add2all_hds($all_hds, @from_fstab); log::l("fstab is now: $_->{device} $_->{mntpoint}") foreach fs::get::fstab($all_hds); } isSwap($_) and $_->{mntpoint} = 'swap' foreach fs::get::really_all_fstab($all_hds); #- use all available swap. $migrate_device_names; } sub getHds { my ($o, $o_in) = @_; getHds: my $all_hds = fsedit::get_hds($o->{partitioning}, $o_in); my $hds = $all_hds->{hds}; if (is_empty_array_ref($hds) && !$::move) { #- no way die N("An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"); } #- try to figure out if the same number of hds is available, use them if ok. @{$o->{all_hds}{hds} || []} == @$hds and return 1; fs::get_raw_hds('', $all_hds); fs::add2all_hds($all_hds, @{$o->{manualFstab}}); $o->{all_hds} = $all_hds; $o->{fstab} = [ fs::get::really_all_fstab($all_hds) ]; fs::merge_info_from_mtab($o->{fstab}); my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} } @{$o->{fstab}}; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { #- Suggest /boot/efi on ia64. $win[0]{mntpoint} = arch() =~ /ia64/ ? "/boot/efi" : "/mnt/windows"; } else { my %w; foreach (@win) { my $v = $w{$_->{device_windobe}}++; $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/win_" . lc($_->{device_windobe}) . ($v ? $v+1 : ''); #- lc cuz of StartOffice(!) cf dadou } } my @sunos = grep { $_->{pt_type} == 2 } @{$o->{fstab}}; #- take only into account root partitions. if (@sunos) { my $v = ''; map { $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/sunos" . ($v && ++$v) } @sunos; } #- a good job is to mount SunOS root partition, and to use mount point described here in /etc/vfstab. 1; } my %media_browser; sub media_browser { my ($in, $save, $o_suggested_name) = @_; my %media_type2text = ( fd => N("Floppy"), hd => N("Hard Disk"), cdrom => N("CDROM"), ); my @network_protocols = (if_(!$save, N_("HTTP")), N_("FTP"), N_("NFS")); my $to_text = sub { my ($hd) = @_; ($media_type2text{$hd->{media_type}} || $hd->{media_type}) . ': ' . partition_table::description($hd); }; ask_media: my $all_hds = fsedit::get_hds({}, $in); fs::get_raw_hds('', $all_hds); my @raw_hds = grep { !$save || $_->{media_type} ne 'cdrom' } @{$all_hds->{raw_hds}}; my @dev_and_text = group_by2( (map { $_ => $to_text->($_) } @raw_hds), (map { my $hd = $to_text->($_); map { $_ => join('\1', $hd, partition_table::description($_)) } grep { isTrueFS($_) || isOtherAvailableFS($_) } fs::get::hds_fstab($_); } fs::get::hds($all_hds)), if_(member($::o->{method}, qw(ftp http nfs)) || install_steps::hasNetwork($::o), map { $_ => join('\1', N("Network"), translate($_)) } @network_protocols), ); $in->ask_from_({ messages => N("Please choose a media"), }, [ { val => \$media_browser{dev}, separator => '\1', list => [ map { $_->[1] } @dev_and_text ] }, ]) or return; my $dev = (find { $_->[1] eq $media_browser{dev} } @dev_and_text)->[0]; if (member($dev, @network_protocols)) { install_interactive::upNetwork($::o); if ($dev eq 'HTTP') { require http; $media_browser{network} ||= 'http://'; } else { $in->ask_warn('', 'todo'); goto ask_media; } while (1) { $in->ask_from('', 'URL', [ { val => \$media_browser{network} } ]) or last; if ($dev eq 'HTTP') { my $fh = http::getFile($media_browser{network}); $fh and return '', $fh; } } } else { if (!$dev->{fs_type} || $dev->{fs_type} eq 'auto' || $dev->{fs_type} =~ /:/) { if (my $p = fs::type::type_subpart_from_magic($dev)) { add2hash($p, $dev); $dev = $p; } else { $in->ask_warn(N("Error"), N("Bad media %s", partition_table::description($dev))); goto ask_media; } } my $file; if (my $h = any::inspect($dev, $::prefix, $save)) { while (1) { $file = $in->ask_filename({ save => $save, directory => $h->{dir}, if_($o_suggested_name, file => "$h->{dir}/$o_suggested_name"), }) or last; if (-e $file && $save) { $in->ask_yesorno('', N("File already exists. Overwrite it?")) or next; } if ($save) { return $h, $file; } else { my $fh; open($fh, $file) and return $h, $fh; } } undef $h; #- help perl } else { $in->ask_warn(N("Error"), formatError($@)); } goto ask_media; } } sub log_sizes { my ($o) = @_; my @df = MDK::Common::System::df($o->{prefix}); log::l(sprintf "Installed: %s(df), %s(rpm)", formatXiB($df[0] - $df[1], 1024), formatXiB(sum(run_program::rooted_get_stdout($o->{prefix}, 'rpm', '-qa', '--queryformat', '%{size}\n')))) if -x "$o->{prefix}/bin/rpm"; } sub X_options_from_o { my ($o) = @_; { freedriver => $o->{freedriver}, allowFB => $o->{allowFB}, }; } sub screenshot_dir__and_move() { my ($dir1, $dir2) = ("$::prefix/root", '/tmp'); if (-e $dir1) { if (-e "$dir2/DrakX-screenshots") { cp_af("$dir2/DrakX-screenshots", $dir1); rm_rf("$dir2/DrakX-screenshots"); } $dir1; } else { $dir2; } } sub take_screenshot { my ($in) = @_; my $dir = screenshot_dir__and_move() . '/DrakX-screenshots'; my $warn; if (!-e $dir) { mkdir $dir or $in->ask_warn('', N("Can not make screenshots before partitioning")), return; $warn = 1; } my $nb = 1; $nb++ while -e "$dir/$nb.png"; system("fb2png /dev/fb0 $dir/$nb.png 0"); $in->ask_warn('', N("Screenshots will be available after install in %s", "/root/DrakX-screenshots")) if $warn; } sub copy_advertising { my ($o) = @_; return if $::rootwidth < 800; my $f; my $source_dir = "install/extra/advertising"; foreach ("." . $o->{locale}{lang}, "." . substr($o->{locale}{lang},0,2), '') { $f = getFile("$source_dir$_/list") or next; $source_dir = "$source_dir$_"; } if (my @files = <$f>) { my $dir = "$o->{prefix}/tmp/drakx-images"; mkdir $dir; unlink glob_("$dir/*"); foreach (@files) { chomp; getAndSaveFile("$source_dir/$_", "$dir/$_"); s/\.png/.pl/; getAndSaveFile("$source_dir/$_", "$dir/$_"); s/\.pl/_icon.png/; getAndSaveFile("$source_dir/$_", "$dir/$_"); s/_icon\.png/.png/; } @advertising_images = map { "$dir/$_" } @files; } } sub remove_advertising { my ($o) = @_; eval { rm_rf("$o->{prefix}/tmp/drakx-images") }; @advertising_images = (); } sub disable_user_view() { substInFile { s/^UserView=.*/UserView=true/ } "$::prefix/usr/share/config/kdm/kdmrc"; substInFile { s/^Browser=.*/Browser=0/ } "$::prefix/etc/X11/gdm/gdm.conf"; } sub set_security { my ($o) = @_; { local $ENV{DRAKX_PASSWORD} = $o->{bootloader}{password}; local $ENV{DURING_INSTALL} = 1; security::level::set($o->{security}); } require security::various; security::various::config_libsafe($::prefix, $o->{libsafe}); security::various::config_security_user($::prefix, $o->{security_user}); } sub write_fstab { my ($o) = @_; fs::write_fstab($o->{all_hds}, $o->{prefix}) if !$o->{isUpgrade} || $o->{migrate_device_names}; } my $clp_name = 'mdkinst.clp'; sub clp_on_disk() { "$::prefix/tmp/$clp_name" } sub move_clp_to_disk() { return if -e clp_on_disk(); my ($loop, $current_clp) = devices::find_clp_loop($clp_name) or return; log::l("move_clp_to_disk: copying $current_clp to ", clp_on_disk()); cp_af($current_clp, clp_on_disk()); run_program::run('losetup', '-r', $loop, clp_on_disk()); #- in $current_clp eq "/tmp/$clp_name" unlink "/tmp/$clp_name"; } #-############################################################################### #- pcmcia various #-############################################################################### sub configure_pcmcia { my ($modules_conf, $pcic) = @_; #- try to setup pcmcia if cardmgr is not running. my $running if 0; return if $running; $running = 1; log::l("i try to configure pcmcia services"); symlink "/tmp/stage2/$_", $_ foreach "/etc/pcmcia"; #- ds is an alias for pcmcia in recent 2.6 kernels #- but we don't have modules.alias in install, so try to load both eval { modules::load('pcmcia', $pcic, 'ds', 'pcmcia') }; #- run cardmgr in foreground while it is configuring the card. run_program::run("cardmgr", "-f", "-m", "/modules"); sleep(3); #- make sure to be aware of loaded module by cardmgr. modules::read_already_loaded($modules_conf); } 1; k'>@@ -4683,7 +4691,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4692,28 +4700,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1203
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1228
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4721,25 +4729,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1234
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4750,24 +4758,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1292
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1296
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1307
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1318
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4786,15 +4794,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1331
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1338
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4803,15 +4811,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1346
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr ""
@@ -4847,7 +4855,7 @@ msgid "Basic"
msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
-#: ../../printerdrake.pm_.c:2113
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
@@ -5447,7 +5455,7 @@ msgstr ""
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2115
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr ""
@@ -5502,6 +5510,62 @@ msgstr ""
msgid "use pptp"
msgstr ""
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr ""
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5801,7 +5865,7 @@ msgstr ""
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3131
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
@@ -6014,62 +6078,6 @@ msgid ""
"need some manual fix after installation."
msgstr ""
-#: ../../network/tinyfirewall.pm_.c:12
-msgid "Web Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:17
-msgid "Domain Name Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:32
-msgid "Mail Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:37
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:111
-msgid "No network card"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:129
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:147
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:148
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:154
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:162
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:164
-msgid "Other ports"
-msgstr ""
-
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr ""
@@ -6302,7 +6310,7 @@ msgid "Unknown Model"
msgstr ""
#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
-#: ../../printerdrake.pm_.c:2249 ../../printerdrake.pm_.c:3394
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
@@ -6389,10 +6397,10 @@ msgstr ""
msgid "On CUPS server \"%s\""
msgstr ""
-#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3052
-#: ../../printerdrake.pm_.c:3063 ../../printerdrake.pm_.c:3283
-#: ../../printerdrake.pm_.c:3335 ../../printerdrake.pm_.c:3361
-#: ../../printerdrake.pm_.c:3536 ../../printerdrake.pm_.c:3538
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr ""
@@ -6415,11 +6423,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3115
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3116
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr ""
@@ -6466,18 +6474,18 @@ msgstr ""
#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
-#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2192
-#: ../../printerdrake.pm_.c:2345 ../../printerdrake.pm_.c:2404
-#: ../../printerdrake.pm_.c:2477 ../../printerdrake.pm_.c:2498
-#: ../../printerdrake.pm_.c:2688 ../../printerdrake.pm_.c:2729
-#: ../../printerdrake.pm_.c:2734 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2773 ../../printerdrake.pm_.c:2810
-#: ../../printerdrake.pm_.c:2863 ../../printerdrake.pm_.c:2883
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:2931
-#: ../../printerdrake.pm_.c:2977 ../../printerdrake.pm_.c:2995
-#: ../../printerdrake.pm_.c:3076 ../../printerdrake.pm_.c:3149
-#: ../../printerdrake.pm_.c:3451 ../../printerdrake.pm_.c:3506
-#: ../../printerdrake.pm_.c:3559 ../../standalone/printerdrake_.c:57
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
msgid "Printerdrake"
msgstr ""
@@ -6574,7 +6582,7 @@ msgid ""
msgstr ""
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
-#: ../../printerdrake.pm_.c:3098 ../../printerdrake.pm_.c:3222
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr ""
@@ -7111,16 +7119,42 @@ msgstr ""
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2029
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7130,33 +7164,33 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:2038
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2042
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2047
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:2086
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:2109
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7164,39 +7198,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:2114
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2115
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:2172
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2175
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2178
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:2180
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2184
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2193 ../../printerdrake.pm_.c:2346
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:2218
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7206,21 +7240,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2222
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2229
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2251 ../../printerdrake.pm_.c:3396
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7229,15 +7263,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2279
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2282 ../../printerdrake.pm_.c:2299
-#: ../../printerdrake.pm_.c:2309
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7246,7 +7280,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2285 ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7254,41 +7288,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2289
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2294 ../../printerdrake.pm_.c:2304
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2306
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2301 ../../printerdrake.pm_.c:2311
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2314
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7298,7 +7332,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2322
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7307,40 +7341,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2332
+#: ../../printerdrake.pm_.c:2343
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2333
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2335
+#: ../../printerdrake.pm_.c:2346
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2336
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:2339 ../../printerdrake.pm_.c:2342
-#: ../../printerdrake.pm_.c:2343 ../../printerdrake.pm_.c:2344
-#: ../../printerdrake.pm_.c:3380 ../../standalone/drakTermServ_.c:248
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr ""
-#: ../../printerdrake.pm_.c:2342
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr ""
-#: ../../printerdrake.pm_.c:2362
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7354,7 +7388,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2383
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7367,17 +7401,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2864
-#: ../../printerdrake.pm_.c:3150
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2425 ../../printerdrake.pm_.c:2453
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7387,51 +7421,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2429
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2431
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2433
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2435
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2436
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2437
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2440
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2441 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7439,56 +7473,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2475
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:2478
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2489
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2499
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2507 ../../printerdrake.pm_.c:2579
-#: ../../printerdrake.pm_.c:2591
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr ""
-#: ../../printerdrake.pm_.c:2543 ../../printerdrake.pm_.c:2547
-#: ../../printerdrake.pm_.c:2549
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr ""
-#: ../../printerdrake.pm_.c:2545
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7496,11 +7530,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:2581
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7510,31 +7544,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2582
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2592
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr ""
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2631
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2632
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7549,11 +7583,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2664
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2665
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7567,59 +7601,59 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2689 ../../printerdrake.pm_.c:2730
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2811
-#: ../../printerdrake.pm_.c:2932
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2774
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2847
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr ""
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr ""
-#: ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2968 ../../printerdrake.pm_.c:3009
-#: ../../printerdrake.pm_.c:3397 ../../printerdrake.pm_.c:3470
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2978
+#: ../../printerdrake.pm_.c:2989
msgid "Preparing Printerdrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2996 ../../printerdrake.pm_.c:3560
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr ""
-#: ../../printerdrake.pm_.c:3016
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:3028
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:3080
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7627,137 +7661,137 @@ msgid ""
"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3081
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:3107
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:3125
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr ""
-#: ../../printerdrake.pm_.c:3130 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:3290 ../../printerdrake.pm_.c:3340
-#: ../../printerdrake.pm_.c:3553
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:3375
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:3377
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3386 ../../printerdrake.pm_.c:3441
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr ""
-#: ../../printerdrake.pm_.c:3387 ../../printerdrake.pm_.c:3445
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:3389 ../../printerdrake.pm_.c:3463
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3390 ../../printerdrake.pm_.c:3464
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3399 ../../printerdrake.pm_.c:3474
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3401 ../../printerdrake.pm_.c:3479
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3402 ../../printerdrake.pm_.c:3488
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3403 ../../printerdrake.pm_.c:3497
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:3404 ../../printerdrake.pm_.c:3499
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3501
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3452
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr ""
-#: ../../printerdrake.pm_.c:3477
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3478
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3482 ../../printerdrake.pm_.c:3485
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3483
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3486
+#: ../../printerdrake.pm_.c:3506
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3491 ../../printerdrake.pm_.c:3494
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3492
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3495
+#: ../../printerdrake.pm_.c:3515
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3503
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:3507
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr ""
@@ -8140,18 +8174,18 @@ msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world."
+msgid "Welcome to the Open Source world"
msgstr ""
#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community."
+"the worldwide Linux Community"
msgstr ""
#: ../../share/advertising/02-community.pl_.c:9
-msgid "Get involved in the Free Software world."
+msgid "Get involved in the Free Software world"
msgstr ""
#: ../../share/advertising/02-community.pl_.c:10
@@ -8161,7 +8195,7 @@ msgstr ""
#: ../../share/advertising/02-community.pl_.c:11
msgid ""
"To share your own knowledge and help build Linux tools, join the discussions "
-"forum you'll find on our \"Community\" webpages."
+"forum you'll find on our \"Community\" webpages"
msgstr ""
#: ../../share/advertising/03-internet.pl_.c:9
@@ -8170,23 +8204,23 @@ msgstr ""
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail."
+"your personal information with Evolution and Kmail"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgid "Discover the most up-to-date graphics and multimedia tools!"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:10
-msgid "Push multimedia at its limits!"
+msgid "Push multimedia to its limits!"
msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and plays videos."
+"files, edit and handle your images or photos, and play videos"
msgstr ""
#: ../../share/advertising/05-games.pl_.c:9
@@ -8196,7 +8230,7 @@ msgstr ""
#: ../../share/advertising/05-games.pl_.c:10
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"cards, sports, strategy..."
msgstr ""
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
@@ -8206,7 +8240,7 @@ msgstr ""
#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine."
+"your machine"
msgstr ""
#: ../../share/advertising/07-desktop.pl_.c:9
@@ -8224,23 +8258,23 @@ msgid "Development simplified"
msgstr ""
#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform."
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
#: ../../share/advertising/08-development.pl_.c:11
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments."
+"development environments"
msgstr ""
#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server."
+msgid "Turn your machine into a reliable server"
msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server in a few clicks of your mouse: "
-"Web server, mail, firewall, router, file and print server, ..."
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
@@ -8250,7 +8284,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)."
+"F.)"
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
@@ -8270,7 +8304,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store."
+"'goodies', are available online at our e-store"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8280,8 +8314,8 @@ msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore."
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:9
@@ -8295,14 +8329,14 @@ msgid ""
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:11
-msgid "Certify yourself on Linux."
+msgid "Certify yourself on Linux"
msgstr ""
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"Whether you choose to teach yourself online or via our netwirk of training "
+"Whether you choose to teach yourself online or via our network of training "
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)."
+"certification program (worldwide professional technical certification)"
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:9
@@ -8311,15 +8345,15 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"Join the MandrakeSoft support teams and the Linux Community online th share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online tehnial support website:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -8327,7 +8361,7 @@ msgid "MandrakeExpert Corporate"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs."
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
@@ -9846,9 +9880,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr ""
@@ -9892,23 +9926,23 @@ msgstr ""
msgid "Configuration Wizards"
msgstr ""
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
msgstr ""
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr ""
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
msgstr ""
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -9920,19 +9954,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
msgid "Report"
msgstr ""
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
msgstr ""
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
msgstr ""
@@ -11302,7 +11336,7 @@ msgstr ""
msgid "Exit install"
msgstr ""
-#: ../../ugtk.pm_.c:595
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 035147415..c2688c33d 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -6,8 +6,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronjé <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
@@ -51,19 +51,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64MB of meer"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Kies 'n X-bediener"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X-bediener"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,27 +71,27 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree-konfigurasie"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
@@ -102,13 +102,13 @@ msgstr "Konfigureer net die \"%s\" kaart (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,54 +150,55 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
#
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Aangepaste"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Videokaart"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "OK"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlaat"
@@ -214,28 +215,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generies"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Herroep"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +258,11 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
@@ -298,36 +299,41 @@ msgstr "Kies die resolusie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Kanselleer"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -463,26 +469,22 @@ msgstr "Laai vauit DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompak"
@@ -499,16 +501,17 @@ msgstr "Videomodus"
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Wagwoord (weer)"
@@ -543,14 +546,14 @@ msgid ""
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
@@ -595,16 +598,16 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Klaar"
@@ -616,7 +619,7 @@ msgstr "Verander"
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -711,13 +714,13 @@ msgstr "Beskik u oor nog?"
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
@@ -814,39 +817,47 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -855,32 +866,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -888,60 +899,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,42 +961,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoïes"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -997,7 +1008,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1005,7 +1016,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1026,13 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1046,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,32 +1055,32 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opsies"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1109,13 +1120,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1124,44 +1135,44 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
@@ -1169,8 +1180,8 @@ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Lêer"
@@ -1180,7 +1191,7 @@ msgstr "/_Lêer"
msgid "/File/_Quit"
msgstr "/Lêer/_Verlaat"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1222,94 +1233,101 @@ msgstr "Installeer stelsel"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Kies 'n nuwe grootte"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Geen video"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Kies installasieklas"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1318,23 +1336,22 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1343,44 +1360,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1484,50 +1501,54 @@ msgstr "seriaal"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Onbekende model"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "nuut"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ontheg"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Heg"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Hegpunt"
#
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Toets asb. die muis"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -1536,8 +1557,9 @@ msgstr "Opsies: %s"
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1575,10 +1597,15 @@ msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detail"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Plaaslike drukker"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1604,13 +1631,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Ander"
@@ -1618,12 +1645,12 @@ msgstr "Ander"
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
@@ -1633,7 +1660,7 @@ msgstr "Tipe"
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Uitwis"
@@ -1641,7 +1668,7 @@ msgstr "Uitwis"
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1649,72 +1676,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Nog"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Alle primêre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1722,35 +1749,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1758,11 +1785,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1770,114 +1797,106 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Heg"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ontheg"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Terugluslêer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lêerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslêer %s heg?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1885,138 +1904,138 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "FAT lêerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Teruglus lêernaam:"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Lêer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2029,7 +2048,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2042,7 +2061,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2052,137 +2071,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslêer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus lêer(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2190,27 +2209,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lêernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2222,7 +2241,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2233,60 +2252,64 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2324,7 +2347,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Gebruikerskode"
@@ -2339,23 +2362,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2372,264 +2395,328 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
+"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
+"(fout is %s)\n"
+"\n"
+"Will u al die partisies verwyder?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Konfigurasie"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
-"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "U get geen partisies nie!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Drywer"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Onbekende model"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kaartgeheue (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Kanselleer"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beskrywing"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Magtiging"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Selekteer lOer"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Netwerkportaaltoestel"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 knoppies"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternatiewe toetsbladsy (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Verlaat"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Help"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Help"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Help/_Aangaande..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Aftas"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Stel muistoestel op"
+msgid "Information"
+msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Vertoon inligting"
+msgid "Configure module"
+msgstr "Stel muistoestel op"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Wag asb."
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
@@ -2662,16 +2749,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kaartgeheue (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Verander tipe"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2680,11 +2767,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Formatering"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2697,22 +2784,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2831,7 +2918,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2857,10 +2944,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2895,11 +2982,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2947,7 +3034,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2978,24 +3065,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3004,7 +3079,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3024,13 +3099,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3063,7 +3138,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3096,10 +3173,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3132,7 +3211,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3160,7 +3239,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3170,12 +3249,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3185,7 +3264,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
#, fuzzy
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
@@ -3201,19 +3280,19 @@ msgstr ""
"Aanvaar\n"
"knoppie."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3230,26 +3309,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3277,7 +3356,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3286,7 +3365,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3319,11 +3398,11 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3331,23 +3410,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3356,30 +3435,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr "Kies asb. "
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3393,7 +3477,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3406,10 +3490,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3417,7 +3508,7 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3447,15 +3538,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3494,8 +3585,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3503,16 +3597,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3577,18 +3662,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3723,7 +3808,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3736,14 +3823,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3767,7 +3854,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3782,20 +3869,29 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3803,11 +3899,19 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lêer %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
+"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3841,59 +3945,59 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Kies die groottes"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Basispartisiegrootte in MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Windowslêerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3902,14 +4006,14 @@ msgstr ""
"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
"Fout: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3931,21 +4035,21 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -3953,32 +4057,32 @@ msgstr ""
"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
"spasie nie) te gebruik nie"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Wis hele skyf"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3987,28 +4091,28 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
@@ -4020,12 +4124,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4037,12 +4141,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -4075,44 +4179,44 @@ msgstr "Installasieklas"
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -4120,28 +4224,28 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4149,76 +4253,76 @@ msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4233,17 +4337,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4418,7 +4522,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
@@ -4470,11 +4574,11 @@ msgstr "Pakketseleksie word opgedateer"
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
@@ -4506,45 +4610,20 @@ msgstr "IDE word opgestel"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
-"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
-"(fout is %s)\n"
-"\n"
-"Will u al die partisies verwyder?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
-"Gaan aan op u eie risiko!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -4552,69 +4631,69 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellêerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lêer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4622,7 +4701,7 @@ msgid ""
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4630,55 +4709,55 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4688,16 +4767,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4706,21 +4785,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4790,7 +4869,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4802,159 +4881,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Plaaslike lêers"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4970,21 +5049,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeinnaam"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5011,19 +5090,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5047,7 +5126,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5056,28 +5135,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5085,11 +5164,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5097,15 +5176,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5116,17 +5195,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5136,7 +5215,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5168,15 +5247,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5185,15 +5264,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5202,7 +5281,8 @@ msgstr "Stoor pakketseleksie"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Installasie %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5220,22 +5300,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n lêer"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Vorige"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Teks"
@@ -5303,378 +5383,378 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Aktiveer"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viëtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5732,11 +5812,11 @@ msgstr "Generiese PS2 wielmuis"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5744,118 +5824,128 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 knop"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
#
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wiel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "seriaal"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generiese 3-knop muis"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Reeks (seriaal)"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmuis"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 knoppies"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 knoppies"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "niks"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
@@ -5894,6 +5984,68 @@ msgstr "gebruik pppoe"
msgid "use pptp"
msgstr "gebruik pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Bediener"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domeinnaam"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Datbasis"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP-bediener"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "geen netwerkkaart gevind nie"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Toets poorte"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5910,7 +6062,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5923,7 +6075,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5940,7 +6092,7 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Rekenaarnaam"
@@ -6235,13 +6387,13 @@ msgstr "Kies die profiel om te konfigureer"
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Kundige bedryfsvlak"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
@@ -6410,11 +6562,11 @@ msgstr "Outomatiese IP"
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6426,43 +6578,55 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Vuurmuurkonfigurasie gevind!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
+"dietyd self regstellings moet aanbring."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
@@ -6569,15 +6733,15 @@ msgstr "Wagwoord"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6587,21 +6751,21 @@ msgstr ""
"Die enigste oplossing is om die primêre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van léer %s het gefaal: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Korrupte rugsteunlêer"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6648,158 +6812,163 @@ msgstr "LPD - Lyndrukkerdiensprogram"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
#
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Onbekende model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Verstek)"
@@ -6827,13 +6996,13 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
@@ -6863,7 +7032,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
@@ -6871,7 +7040,7 @@ msgstr "Die poortnommer moet heeltal wees."
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Poort"
@@ -6879,13 +7048,135 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Drukker"
+
+#
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Wil u hierdie drukker (\"%s\")\n"
+"die verstek drukker maak?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6898,7 +7189,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6907,7 +7198,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6920,7 +7211,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6929,7 +7235,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6941,26 +7247,26 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6974,51 +7280,51 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Gebruik outobespeuring"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
#
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Netwerkdrukker (sok)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7026,34 +7332,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7061,7 +7367,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7069,38 +7375,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7110,48 +7416,48 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7164,46 +7470,46 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Gebruik outobespeuring"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7227,7 +7533,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7236,7 +7542,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7244,11 +7550,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7261,44 +7567,44 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7312,21 +7618,21 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Drukkerbedienernaam"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7336,11 +7642,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7350,31 +7656,31 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7389,27 +7695,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7418,18 +7724,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7439,12 +7745,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7452,20 +7758,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7475,22 +7807,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7499,11 +7831,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7511,40 +7843,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7559,7 +7891,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7567,16 +7899,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7585,15 +7917,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7602,7 +7934,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7610,41 +7942,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7654,7 +7986,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7663,41 +7995,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sluit af"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7711,7 +8043,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7724,17 +8056,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7744,51 +8076,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7796,61 +8128,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7858,12 +8190,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7873,7 +8205,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -7881,27 +8213,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Paranoïes"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7917,12 +8249,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7936,79 +8268,74 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Drukker"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8018,30 +8345,30 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8050,102 +8377,104 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
@@ -8545,7 +8874,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8601,15 +8930,15 @@ msgstr "Toestand"
msgid "Stop"
msgstr "Sektor"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -8617,177 +8946,213 @@ msgid ""
msgstr ""
#
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Protokol vir die res van die wêreld"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Internettoegang"
+msgid "Get the most from the Internet"
+msgstr "Konnekteer aan die internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ontwikkeling"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Speletjies"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Netwerkkoppelvlak"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB-bedienernaam"
+msgid "Development simplified"
+msgstr "Ontwikkeling"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Speletjies"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Kundige"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "verpligtend"
+msgid "Become a MandrakeExpert"
+msgstr "Kundige"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Kundige"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmak."
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8831,12 +9196,13 @@ msgstr "Voeg gebruiker by"
msgid "Add/Del Clients"
msgstr "DHCP-Kliënt"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
@@ -8993,8 +9359,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Geluk!"
@@ -9021,27 +9387,31 @@ msgstr "Voeg 'n gebruiker by"
msgid "Remove the last item"
msgstr "Terugluslêer %s word geformateer"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9049,7 +9419,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9057,13 +9427,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Toetsbladsye"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9072,16 +9449,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Geen wagwoord"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Kan nie %s oopmaak nie: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9092,63 +9494,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9156,810 +9563,934 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lêer %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Stel lêerstelsels op"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlêer"
#
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Verwyder tou"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Herstel vanaf floppie"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Reddingspartisietabel"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Rekenaarnaam"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Wagwoord"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Gebruikerskode"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Bedienernaam:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Reddingspartisietabel"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Herstel vanaf lêer"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lêer"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Stel lêerstelsels op"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9991,7 +10522,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10000,7 +10531,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10041,45 +10572,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10096,7 +10627,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10136,7 +10667,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10147,7 +10678,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10160,7 +10691,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10241,9 +10772,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
@@ -10296,26 +10827,26 @@ msgstr "Drukker"
msgid "Configuration Wizards"
msgstr "Netwerkkonfigurasie-assistent"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Magtiging"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakketkeuse"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Wag asb."
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10327,21 +10858,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
@@ -10786,7 +11317,7 @@ msgstr "Hegpunt"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Kies die partisies om te formatteer"
#: ../../standalone/drakfont_.c:918
@@ -10869,19 +11400,19 @@ msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10893,31 +11424,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10929,19 +11460,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10958,21 +11489,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10980,12 +11511,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11000,19 +11531,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11022,17 +11553,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11043,7 +11574,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11055,78 +11586,66 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Vuurmuurkonfigurasie gevind!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
-"dietyd self regstellings moet aanbring."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11136,6 +11655,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolusie"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Kies 'n lêer"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Drukkernaam:"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Postinstallasiekonfigurasie"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Verlaat"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Installeer stelsel"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Konfigureer dienste"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Teruglus"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "toestel"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Kies 'n monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Drukkermodelkeuse"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Tik drukkertoestel URI in"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Toestel word afgetas..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11228,11 +11899,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11310,7 +11981,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr ""
@@ -11492,7 +12163,7 @@ msgstr "interessant"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11514,19 +12185,19 @@ msgstr "Kleurkonfigurasie"
msgid "Please enter your email address below "
msgstr "Probeer asb. weer"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Drukkerdata word gelees..."
@@ -11540,34 +12211,45 @@ msgstr "Toestel word afgetas..."
msgid "Test ports"
msgstr "Toets poorte"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Wil u 'n drukwerk nou konfigureer?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Selekteer 'n videokaart"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Herlaaitoestel"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11575,7 +12257,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11583,44 +12265,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Vuurmuur\n"
-"\n"
-"Kliek op Konfigureer om die standaard vuurmuur op te stel."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Kies u taal"
@@ -11694,173 +12350,7 @@ msgstr "Installeer stelsel"
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurasie is voltooi. Moet ons hierdie veranderinge na skyf skryf?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan nie %s oopmaak nie: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Wag asb. installasie word voorberei"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -11994,6 +12484,10 @@ msgid "Graphical Environment"
msgstr "Grafiese omgewing"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -12108,102 +12602,58 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "U get geen partisies nie!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
-#~ "om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n "
-#~ "rekenaar\n"
-#~ "wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
-#~ "wagwoord\n"
-#~ "toegang nie."
+#~ "DrakX kon nie die partisietabel korrek interpreteer nie.\n"
+#~ "Gaan aan op u eie risiko!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik "
-#~ "word.\n"
-#~ "Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie "
-#~ "kliënte\n"
-#~ "af kan aanvaar."
+#~ "Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+#~ "Ek sal die nodige partisies skoonmak."
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opsies"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Vuurmuurkonfigurasie"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sekuriteit"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Vuurmuurkonfigurasie"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Vuurmuur\n"
+#~ "\n"
+#~ "Kliek op Konfigureer om die standaard vuurmuur op te stel."
-#
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Toets asb. die muis"
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Konfigurasie is voltooi. Moet ons hierdie veranderinge na skyf skryf?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Kies die pakkette wat u wil installeer"
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
#~ msgid "Url should begin with 'ftp:'"
#~ msgstr "Instaanbediener moet begin met ftp://"
-#, fuzzy
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Verwyder Windows(TM)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Tabel"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP-bediener"
-
-#
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Eksterne drukkernaam"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Installeer pakket %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Installeer pakket %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Installeer pakket %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Drukkerdata word gelees..."
-
#~ msgid "Control Center"
#~ msgstr "Beheersentrum"
@@ -12283,9 +12733,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standaard VGA, 640x480 teen 60 Hz"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index b6e81d45d..1e418a75b 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -50,19 +50,19 @@ msgstr "32 ميغاؚايت"
msgid "64 MB or more"
msgstr "64 ميغاؚايت أو أكثر"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "إختر خادم X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "خادم X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "إعداد متعدد الر؀وس"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,27 +70,27 @@ msgstr ""
"ن؞امك يدعم الإعداد متعدد الر؀وس.\n"
"ماذا تريد أن تفعل؟"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "إختر حجم ذاكرة ؚطاقة ال؎ا؎ة"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "إعداد XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "أي اعداد لـXFree تريد؟"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "اعداد كل الر؀وس ؚ؎كل مستقل"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "قم ؚإعداد الؚطاقة \"%s\" فقط (%s)"
@@ -101,13 +101,13 @@ msgstr "قم ؚإعداد الؚطاقة \"%s\" فقط (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s مع تسريع ثلاثي الأؚعاد"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"ؚطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة ؚ؎ل أفضل في الوضع "
"ثنا؊ي الأؚعاد."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لؚطاقتك الحصول على دعم للتسريع ثلاثي الأؚعاد مع XFree %s"
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريؚي للرسوم ثلاثية الأؚعاد"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ؚطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة ؚ؎كل أفضل في وضعية "
"الرسوم ثنا؊ية الأؚعاد."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,53 +148,54 @@ msgstr ""
"يمكن لؚطاقتك التمتع ؚدعم للرسوم ثلاثية الأؚعاد مع XFree %s, \n"
"لاح؞ أن هذا الدعم تجريؚي و قد يتسؚؚ في ايقاف جهازك."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (م؎غل عرض التثؚيت)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "مخصص"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "ؚطاقة ال؎ا؎ة"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "ال؎ا؎ة"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "دقة العرض"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "موافق"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "خروج"
@@ -211,28 +212,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "إختر ؎ا؎ة"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generic"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "تراجع"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -253,11 +254,11 @@ msgstr ""
"أكؚر من مقدرة ؎ا؎تك لأنك ؚهذا قد تدمر ؎ا؎تك.\n"
" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "نسؚة الإنعا؎ الأفقي"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "نسؚة الإنعا؎ الرأسي"
@@ -294,36 +295,41 @@ msgstr "اختر دقة العرض و عمق الألوام"
msgid "Graphics card: %s"
msgstr "ؚطاقة ال؎ا؎ة: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "الغاء"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "اختؚار الإعداد"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "هل تريد تجرؚة الإعداد؟"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "اختؚار الإعداد"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "تحذير: اختؚار ؚطاقة العرض هذه قد يتسؚ في ايقاف جهازك"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -458,26 +464,22 @@ msgstr "الإقلاع من DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الر؊يسية"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "تثؚيت محمل الإقلاع"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (لا يعمل مع أن؞مة الـBIOS القديمة)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "مدمج"
@@ -494,16 +496,17 @@ msgstr "وضعية الفيدية"
msgid "Delay before booting default image"
msgstr "توقيت ما Ù‚ØšÙ„ اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "كلمة المرور"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "كلمة المرور (ثانية)"
@@ -537,14 +540,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``ت؎ديد خيارات سطر الأوامر`` ؚدون قا؊دة من دون كلمة مرور"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطاؚقة"
@@ -589,16 +592,16 @@ msgstr ""
"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "اضافة"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "انتهى"
@@ -610,7 +613,7 @@ msgstr "تعديل"
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "لينكس"
@@ -704,13 +707,13 @@ msgstr "هل عندك واحدة أخرى؟"
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "نعم"
@@ -809,38 +812,48 @@ msgstr "اسمح ØšÙ€\"su\""
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "الوصول الى أدوات rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "الوصول الى أدوات rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسؚقا)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "كلمة المرور هذه ؚسيطة جدا"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "رجاءً قم ؚإعطاء اسم مستخدم"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجؚ أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "اسم المستخدم مُضاف مسؚقا"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسؚقا"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -849,32 +862,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -882,54 +895,54 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم ت؎غيله:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "يمكنكن اختيار لغات أخرى و التي ستكون متوفرة ؚعد التثؚيت"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "لا م؎اركة"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجؚ أن تُثؚّت. هل تريد تثؚيتها؟"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير ؚاستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -938,11 +951,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "؎غّل userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -950,56 +963,56 @@ msgstr ""
"الم؎اركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "مرحؚا ؚالمخترقين"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1009,36 +1022,36 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "خيارات"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1067,57 +1080,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "لا توجد مساحو كافية في /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "سطح المكتؚ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثؚيت محمّل الإقلاع على التجز؊ة %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
@@ -1125,8 +1138,8 @@ msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
msgid "Boot Style Configuration"
msgstr "اعداد أسلوؚ الإقلاع"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_ملف"
@@ -1136,7 +1149,7 @@ msgstr "/_ملف"
msgid "/File/_Quit"
msgstr "/ملف/_خروج"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<تحكم>Q"
@@ -1178,94 +1191,101 @@ msgstr "تثؚيت الن؞ام"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "اعمل تجز؊ة جديدة"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "خطأ"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "جاري نسخ %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "لا فيديو"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "اختر نوع التثؚيت"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1274,22 +1294,21 @@ msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهي؊ة لت؎غيل معالج الإعداد"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "إعداد"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr ""
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1298,44 +1317,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "وضع الن؞ام"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "؎غّل X-Window عند ؚدء الت؎غيل"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "لا, لا أريد دخولا أليا"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتؚ("
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "موافق"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "لم يمكن فتح /etc/inittab للقراءة: %s"
@@ -1432,49 +1451,53 @@ msgstr "النمسا"
msgid "United States"
msgstr "الولايات المتحدة"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "غير معروف"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "جديد"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "ازل التجهيز"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "جهز"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "رجاء أدخل سرعة سواقة كتاؚة الأقراص"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
@@ -1483,8 +1506,9 @@ msgstr "الخيارات: %s"
msgid "Please make a backup of your data first"
msgstr "رجاء قم ؚعمل نسخة احتياطية من ؚياناتك أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "اقرأ جيدا!"
@@ -1522,10 +1546,18 @@ msgid "Please click on a partition"
msgstr "فضلا اضغط على تجز؊ة"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "تفاصيل"
+#
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"لم يتم ايحاد طاؚعة محلية!\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1550,13 +1582,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "التؚديل"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "فارغ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "أخرى"
@@ -1564,12 +1596,12 @@ msgstr "أخرى"
msgid "Filesystem types:"
msgstr "أنواع أن؞مة الملفات:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "عمل تجز؊ة"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "النوع"
@@ -1579,7 +1611,7 @@ msgstr "النوع"
msgid "Use ``%s'' instead"
msgstr "استخدم ``%s'' ؚدلا من ذلك"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "إلغاء"
@@ -1587,108 +1619,108 @@ msgstr "إلغاء"
msgid "Use ``Unmount'' first"
msgstr "استخدم ``ازالة التجهيز'' أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "ؚعد تغيير نوع التجز؊ة %s, فإنك ستسخر كل الؚيانات على التجز؊ة"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "إختر تجز؊ة"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "إختر ؎ا؎ة"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "خروج"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "النتقال الى وضعية الخؚير"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "الانتقال الى الوضع العادي"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "تراجع"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "الخروج ؚدون الحف؞"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج ؚدون كتاؚة جدول التقسيم؟"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حف؞ تعديلات /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "تحديد آلي"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "أمسح الكل"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "أكثر"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "معلومات القرص الصلؚ"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "كل التجز؊ات الر؊يسية مستخدمة"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "لا يمكنني اضافة أي تجز؊ة أخرى"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "لكي تمتلك تجز؊ات أكثر, يرجى الغاء تجز؊ة كي تتمكن من عمل تجز؊ة ممتدة"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "حف؞ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "استعادة جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "إنقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "إعادة تحميل جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "التجهيز الآلي للوسا؊ط القاؚلة للإزالة"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "اختر ملف"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1696,11 +1728,11 @@ msgstr ""
"جدول التقسيم المحفو؞ ليس ؚنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "تحذير"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1708,112 +1740,104 @@ msgstr ""
"أدخل قرصا مرنا في السواقة\n"
"كل الؚيانات على القرص ستمحى"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "معلومات مفصّلة"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "نقل"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "جهز"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "اضافة الى RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "اضافة الى LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "ازل التجهيز"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "ازالة من RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "ازالة من LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "تعديل RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "استخدام لـloopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "اعمل تجز؊ة جديدة"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "قطاع الؚداية: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "الحجم ؚاليغاؚايت: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "نوع ن؞ام المفات: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "التفضيل: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "هل تريد ازالة ملف loopback؟"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "غير نوع التجز؊ة"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "أي ن؞ام ملفات تريد؟"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "أين تريد تجهيز ملف loopback %s؟"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "أين تريد ؚجهيز الجهاز%s؟"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1821,135 +1845,135 @@ msgstr ""
"لم يمكن ازالة تعيين نقطة التجهيز ن؞را لأن هذه التجز؊ة مستخدمة لـloop back.\n"
"قم ؚإزالة الـloopback أولا"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "أين تريد ؚجهيز الجهاز%s؟"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "جاري حساؚ رواؚط ن؞ام ملفات FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "جاري تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "هذا التقسيم غير قاؚل لتغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "كل الؚيانات على هذه التجز؊ة يجؚ حف؞ها احتياطيا"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "ؚعد تغيير حجم التجز؊ة %s, فإن كل الؚيانات على هذه التجز؊ة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "اختر الحجم الجديد"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "الحجم الجديد ؚالميغاؚايت: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "أي قرص تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "القطاع"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "أي قطاع تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "جاري النقل"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "جاري نقل التجز؊ة..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "اختر RAID موجود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "جديد"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "اختر LVM l,جود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "هذه التجز؊ة لا يمكن استخدامها لـloopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "اعط اسم ملف"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "الملف موجود مسؚقا, هل تريد استخدامه؟"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "خيارات التجهيز"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "متنوعة"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "وحدة"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "المستوى"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "حجم chunk"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "أي نوع من التجز؊ة؟"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "الحزمة %s يجؚ أن تُثؚّت. هل تريد تثؚيتها؟"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1957,7 +1981,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1965,51 +1989,51 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول اتتقسيم للقرص %s سيتم كتاؚته الى القرص!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج الى اعادة الت؎غيل Ù‚ØšÙ„ أن يتم تفعيل التعديلات"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "ؚعد تهي؊ة التقسيم %s, فإن كل الؚيانات الموجودة على التجز؊ة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "جاري التهي؊ة"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "جاري تهي؊ة ملف loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "جاري تهي؊ة التجز؊ة %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "خؚء الملفات"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "انقل الملفات الى تجز؊ة جديدة"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2018,116 +2042,116 @@ msgstr ""
"الدليل %s يحتوي مسؚقا على ؚعض الؚيانات\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات الى التجز؊ة الجديدة"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجز؊ة %s معروفة الآن ؚالإسم %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "الجهاز: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "النوع: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "الاسم: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "الؚداية: قطاع %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s قطاع"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d الى %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "غير مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "محمل\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "حجم Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2135,7 +2159,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2143,57 +2167,61 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "معلومات: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التقسيم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "على bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "مفتاح ت؎فير ن؞ام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "اختر مفتاح ت؎فير ن؞ام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح الت؎فير هذا ؚسيط جدا (يجؚ أن يكون %d حرفا على الأقل)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "مفاتيح الت؎فير غير متطاؚقة"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "مفاتح الت؎فير"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "مفاتح الت؎فير (مرة أخرى)"
@@ -2230,7 +2258,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "اسم المستخدم"
@@ -2244,23 +2272,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "اؚحث في أجهزة الخادم"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد ف؎ل"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2277,258 +2305,318 @@ msgstr "مع /usr"
msgid "server"
msgstr "خادم"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "لا ؎ي؊ للعمل"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " فتحة الخطإ %s للكتاؚة :%s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr " CUPS اعدادات"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "المحرك"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "م؎غل X"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "ليس لديك أيّ فواصل ! "
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "غير معروف"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "وحدة"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Card mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "الغاء"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "وحدة"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "الوصف"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "التحقق"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "اختر ملف"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway device"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 buttons"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+msgid "Alternative drivers"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "خروج"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_مساعدة"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_مساعدة"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/مساعدة/_حول الؚرنامج..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "تحقق آلي"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "التحقق من الأقراص الصلؚة"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "عرض معلومات العتاد"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "إعداد الفأرة"
+msgid "Information"
+msgstr "اعرض المعلومات"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "اعرض المعلومات"
+msgid "Configure module"
+msgstr "إعداد الفأرة"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "من فضلك انت؞ر"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d ثوان"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "جاري ازالة الطاؚعة \"%s\" ..."
@@ -2561,16 +2649,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Card mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "غيّر النوع"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2579,11 +2667,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "حمل الإعدادات"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2595,22 +2683,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2747,7 +2835,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2773,10 +2861,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2811,11 +2899,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2856,7 +2944,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2887,24 +2975,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2913,7 +2989,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2933,13 +3009,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2972,7 +3048,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3005,10 +3083,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3041,7 +3121,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3069,7 +3149,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3079,12 +3159,12 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3094,7 +3174,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3103,19 +3183,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3132,26 +3212,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3179,7 +3259,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3188,7 +3268,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3221,34 +3301,34 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3257,30 +3337,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3294,7 +3379,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3307,16 +3392,23 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3346,15 +3438,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3393,8 +3485,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3402,16 +3497,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3459,18 +3545,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3587,7 +3673,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3600,14 +3688,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3631,7 +3719,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3646,30 +3734,45 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا الؚرنامج مع"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3695,73 +3798,73 @@ msgid ""
"Continue anyway?"
msgstr "استمرّ ؚأيّة حال"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "استعمل مكانا حرا"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -3773,80 +3876,80 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr ""
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr ""
@@ -3856,12 +3959,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3869,12 +3972,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr ""
@@ -3900,142 +4003,142 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "قؚول"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4045,17 +4148,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr ""
@@ -4229,7 +4332,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "لوحة المفاتيح"
@@ -4277,11 +4380,11 @@ msgstr ""
msgid "Please choose the type of your mouse."
msgstr "رجاء اختر لغة نوع الفأرة."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
@@ -4313,199 +4416,182 @@ msgstr ""
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "اختر الحزم التي ستُثَؚّت"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4544,7 +4630,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4556,155 +4642,155 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "خادم NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "ؚطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "طاؚعة"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "احصل على خطوط Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr " الخادم NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4720,21 +4806,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domain name"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4752,19 +4838,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4780,7 +4866,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -4789,28 +4875,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "أدخل قرص مرن ؚالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr " إن؎اء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr " bootloader إعداد "
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4818,25 +4904,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "bootloader التّركيؚ "
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4847,24 +4933,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4883,16 +4969,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4901,15 +4987,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr ""
@@ -4918,7 +5004,8 @@ msgstr ""
msgid "Mandrake Linux Installation %s"
msgstr ""
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -4935,22 +5022,22 @@ msgstr "consolehelper missing"
msgid "Choose a file"
msgstr "إختر ملف"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "متقدم"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<-ساؚق "
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "التالي"
@@ -5016,375 +5103,375 @@ msgstr ""
msgid "Re-submit"
msgstr "إعادة تسليم"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "الت؎يكية (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "الألمانية"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "الإسؚانية"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "الفنلندية"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "الفرنسية"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "النرويجية"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "الؚولندية"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "الروسية"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "السويدية"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "لوحة المفاتيح الؚريطانية"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "لوحة المفاتيح الأمريكية"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "الألؚانيةّ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "الأرمينية (قديم)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "الأرمينية (آلة كاتؚة)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "الأرمينيةّ (صوتي)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "الأذرؚيجانية (لاتيني)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "الؚلجيكية"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "تمكين"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "الؚلغارية (صوتية)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "الؚلغارية (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "الؚرازيليةّ (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "الؚيلاروسية"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "السويسرية (تصميم ألماني)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "السويسرية (تصميم فرنسي) "
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "الت؎يكية (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr " الألمانيةّ (no dead keys)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "الدنماركية"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (نرويجيةّ) "
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (سويدية)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "الجورجية (التصميم الروسي)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "الجورجيةّ (التصميم اللاتيني)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "اليونانية"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "المجرية الهنغارية"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "الكرواتية"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "العؚرية"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "العؚرية (صوتية)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "الإيرانيّة"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "الآيسلاندية"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "الإيطالية"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "الياؚانية 106 مفاتيح"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "لوحة المفاتيح الكورية"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "الأمريكية اللاتينية"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "اللاتفية"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "اللّيتوانيّة AZERTY ( جديد ) "
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "اللّيتوانيةّ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "اللاتفية"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "المقدونية"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "الصّرؚيةّ (cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "الهولنديّة"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "الؚولندية (qwerty layout)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "الؚولندية (qwertz layout)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "الؚرتغالية"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "الكنديّة (كيؚيك)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "الرّومانيّة (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "الرّومانيةّ (qwertz)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "الرّوسيةّ (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "السلوفينية"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "الصّرؚيةّ (cyrillic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "التاميل (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "التاميل (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "لوحة المفاتيح التّايلانديّة"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "لوحة مفاتيح الطّاجيكيّة"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "التّركيّ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "التّركيّ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "الأوكرانية"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "( "
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "الفيتناميّ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "( يوغسلافيّ ( اللّاتينيّة "
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "مفتاح Alt key"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "مفتاح CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Right \"Windows\" key"
@@ -5442,11 +5529,11 @@ msgstr "Generic PS2 Wheel Mouse"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5454,115 +5541,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 button"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wheel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generic 3 Button Mouse"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serial, old C7 type)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 buttons"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 buttons"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "ولا واحد"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "من فضلك اختؚر الفأرة"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! حرّك "
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "إنتهاء"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "التالي ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "هل هذا صحيح ? "
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "المعلومات"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expand Tree"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Collapse Tree"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5597,6 +5694,74 @@ msgstr "use pppoe"
msgid "use pptp"
msgstr "use pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "خادم"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domain name"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "خادم قواعد ؚيانات"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "خادم LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "لا ؚطاقة ؎ؚكة وجدت "
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"أداة تهي؊ة الجدار الناري الؚسيط\n"
+"\n"
+"هذه الأداة تسمح لك ؚتهي؊ة جدار ناري ؎خصي لن؞ام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق ن؞رة على\n"
+"توزيعة MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "أخرى"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -5611,7 +5776,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "اختر السّطح الؚينيّ لل؎ؚكة "
@@ -5624,7 +5789,7 @@ msgstr ""
msgid "no network card found"
msgstr "لا ؚطاقة ؎ؚكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "ا عداد ؎ؚكة"
@@ -5636,7 +5801,7 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Host اسم "
@@ -5898,13 +6063,13 @@ msgstr ""
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "وضعية الخؚير"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
@@ -6052,11 +6217,11 @@ msgstr "Automatic IP"
msgid "Start at boot"
msgstr "اؚدأ عند الإقلاع"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6064,43 +6229,55 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Proxies اعداد"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr ""
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "تم اكت؎اف إعداد للجدار الناري!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسؚقا. رؚما تحتاج الى اصلاح يدوي ؚعد "
+"التثؚيت."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "اعداد Internet "
@@ -6204,36 +6381,36 @@ msgstr "Account Password"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ف؎ل التحميل: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6276,150 +6453,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "طاؚعة محلية"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "طاؚعة ؚعيدة"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "طاؚعة ؎ؚكة (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr ""
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "غير معروف"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "الطاؚعات المحلية"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "الطاؚعات الؚعيدة"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "على خادم CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr ""
@@ -6442,11 +6624,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr " CUPS اعدادات"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "الخادم CUPS حدّد"
@@ -6475,7 +6657,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -6483,7 +6665,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "عنوان IP لخادم CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "الؚواؚة"
@@ -6491,12 +6673,127 @@ msgstr "الؚواؚة"
msgid "Automatic CUPS configuration"
msgstr "تهي؊ة CUPS آلية"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "انسخ الخطوط الى ن؞امك"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "رجاء اختر المنفذ الموصلة إليه طاؚعتك."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"هل تريد تعيين هذه الطاؚعة (\"%s\")\n"
+"كطاؚعة افتراضية؟"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "هل تريد تجرؚة إعداد طاؚعة أخرى؟"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "أضف طاؚعة جديدة"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6509,7 +6806,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6518,7 +6815,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -6531,7 +6828,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6540,7 +6852,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -6551,25 +6863,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "تحقق من الطاؚعات آليا"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "طاؚعة محلية"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6583,50 +6895,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "تحقق آلي"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "تم التحقق من %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "طاؚعة ؎ؚكة (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6634,36 +6946,36 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"لم يتم ايحاد طاؚعة محلية!\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "طاؚعة محلية"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6671,7 +6983,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6679,81 +6991,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "رجاء اختر المنفذ الموصلة إليه طاؚعتك."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "إعداد يدوي"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "تم التحقق من %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "جاري ؚدء ال؎ؚكة..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "جاري الطؚاعة على الطاؚعة \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6761,46 +7073,46 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "مجموعة العمل"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "تحقق آلي"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6824,7 +7136,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6833,7 +7145,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6841,11 +7153,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6853,43 +7165,43 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
@@ -6897,58 +7209,58 @@ msgid ""
"vary. See the manual of your hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "اسم مستضيف الطاؚعة"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "اسم مستضيف الطاؚعة"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "المكان"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6963,24 +7275,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "تم اختيار النّموذج يدويًّا"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "إختيار وحدات الطاؚعة"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "ما هو نوع الطاؚعة لديك؟"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -6989,17 +7301,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "إعداد OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7009,11 +7321,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "إعداد Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7021,20 +7333,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7044,22 +7382,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7068,11 +7406,11 @@ msgstr ""
"هل تريد تعيين هذه الطاؚعة (\"%s\")\n"
"كطاؚعة افتراضية؟"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7080,39 +7418,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "إطؚع"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7122,21 +7460,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "طاؚعة خام"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7145,15 +7483,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7162,7 +7500,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7170,41 +7508,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7214,7 +7552,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7223,40 +7561,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "جاري الطؚاعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "جاري الطؚاعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "جاري الطؚاعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "جاري الطؚاعة على الطاؚعة \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "إغلاق"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "قا؊مة خيارات الطاؚعة"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7270,7 +7608,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7283,17 +7621,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "نقل إعدادات الطاؚعة"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7303,51 +7641,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7355,56 +7693,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "جاري ؚدء ال؎ؚكة..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "لم يتم تحديد و؞يفية ال؎ؚكة"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7412,11 +7750,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7426,31 +7764,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "مرتفع"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7465,11 +7803,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7483,99 +7821,96 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "أي ن؞ام طؚاعة تريد أن تستخدم؟"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "جاري إعداد الطاؚعة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "جاري قراءة ؚيانات الطاؚعة ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "جاري إعداد التطؚيقات..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "تغيير ن؞ام الطؚاعة"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "هل تريد تجرؚة إعداد طاؚعة أخرى؟"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "تعديل اعدادات الطاؚعة"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -7584,100 +7919,102 @@ msgstr ""
"الطاؚعة %s\n"
"هل تريد تعديل تلك الطاؚعة؟"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "نوع وصلة الطاؚعة"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "اعرف كيف تستخدم هذه الطاؚعة"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "جاري ازالة الطاؚعة القديمة \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "جاري ازالة الطاؚعة \"%s\" ..."
@@ -8004,7 +8341,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "ن؞ام"
@@ -8055,186 +8392,228 @@ msgstr "اؚدأ"
msgid "Stop"
msgstr "توقف"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "الإنترنت و المراسلة"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "وصّل إلى الإنترنت "
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "وسا؊ط متعددة و رسوميات"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "الالعاؚ"
+
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
+" يمدّون أفضل لعؚ ؚمصادر مفتوحة Mandrake Linux 9.0 - arcade, action, "
+"cards, sports, strategy,...."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "واجهات الإستخدام"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "ؚرامج الخادم"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"حوّل ماكينتك إلى خادم قويّ مع/Øš فقط نقرات قليلة من ال الفأرة : خادم الويؚ , "
"الؚريد الإلكترونيّ , فيروول , الحفّار , الملفّ و خادم الطؚّع ,"
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "الالعاؚ"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
msgstr ""
-" يمدّون أفضل لعؚ ؚمصادر مفتوحة Mandrake Linux 8.2 - arcade, action, "
-"cards, sports, strategy,...."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "است؎ارات Mandrake"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "تركيؚ طرود ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "يرجى اعادة تسجيل الدخول الى %s لتن؎يط التغييرات"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-" لا يمكن أن أقرأ جدول فاصلك هو يفسد أيضًا سوف أحاول أن أستمرّ فواصل سيّ؊ة "
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8278,12 +8657,13 @@ msgstr "اضف مستخدم"
msgid "Add/Del Clients"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "مساعدة"
@@ -8440,8 +8820,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr ""
@@ -8463,27 +8843,31 @@ msgstr ""
msgid "Remove the last item"
msgstr "أزل المادة الأخيرة"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8491,7 +8875,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8499,13 +8883,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8514,16 +8905,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, c-format
+msgid "Bad password on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "لا يمكن أن ينفتح %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -8534,59 +8950,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -8594,293 +9015,297 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "انسخ ملفات الن؞ام Ù‚ØšÙ„:"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "استخدم القرص الصلؚ للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "فضلا قم ؚالتأ؎ير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم ؚالتأ؎ير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "فضلا قم ؚالتأ؎ير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "فضلا قم ؚالتأ؎ير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "اختر ملف"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "ال؎ؚكة"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "النوع"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "أسؚوعيّا"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "؎هريا"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "استخدم المراقؚ"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -8888,7 +9313,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما ؚين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -8896,78 +9321,78 @@ msgstr ""
"رجاء اختر\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "إعدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "على القرص الصّلؚ"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "عؚر ال؎ؚّكة"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "ن؞ام المساعد"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -8975,7 +9400,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -8983,7 +9408,7 @@ msgstr ""
"\n"
"-ملفّات النّ؞ام :\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -8991,7 +9416,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -8999,71 +9424,71 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"- احفد القرص الصّلؚ على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "جهاز الفأرة: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"-FTP و على host احفد على : %s\n"
+"-FTP و على host احفد على: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"-FTP و على host احفد على : %s\n"
+"-FTP و على host احفد على: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -9071,234 +9496,353 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr "قا؊مة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "انسخ ملفات الن؞ام Ù‚ØšÙ„:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "استخدم القرص الصلؚ للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "وصلة FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "وصلة آمنة"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "استعد من القرص الصلؚ"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "استعد النّ؞ام"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "اختر مسار الإستعادة (ؚدلاً من / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "قم ؚنسخ احتياطي جديد فؚل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "أزل أدلة المستخدمين Ù‚ØšÙ„ الإستعادة"
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "ازل المادة المختارة"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "استعد آخر"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "استعد من القرص الصلؚ"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "استعادة جدول التقسيم"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "أعد المستخدمين "
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Host اسم "
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "كلمة المرور"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "اسم المستخدم"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "اسم المستضيف :"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "استعد آخر"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "استعادة جدول التقسيم"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "أعد المستخدمين "
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "الساؚق"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "حف؞"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "اؚني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "استعادة"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "الحزمة %s يجؚ أن تُثؚّت. هل تريد تثؚيتها؟"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "رجاء اختر الؚيانات المطلوؚ نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9306,59 +9850,59 @@ msgstr ""
"لم يتم ايجاد ملف تهي؊ة \n"
"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "تحت التطوير ... انت؞ر فضلا"
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "انسخ ملفات الن؞ام"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "قم ؚالنسخ الآن من ملف التهي؊ة"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "اعرض تهي؊ة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "قم ؚالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -9390,7 +9934,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9399,7 +9943,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -9440,47 +9984,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" جميع الحقوق محفو؞ة (C) 2001 MandrakeSoft من دوؚون سيؚاستيان <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9513,7 +10057,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -9553,7 +10097,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -9564,7 +10108,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9577,7 +10121,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -9658,9 +10202,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "أدوات سطر الأوامر"
@@ -9712,25 +10256,25 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "معالج إعداد ال؎ؚكة"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "التحقق"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr ""
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "من فضلك انت؞ر"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -9742,21 +10286,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "استعادة"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "ما ؚعد ازالة التثؚيت"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ستكون لقطات ال؎ا؎ة موجودة ؚعد التثؚيت في %s"
@@ -10197,7 +10741,7 @@ msgid "Font List"
msgstr "قا؊مة الخطوط"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "اختر التطؚيقات التي ستدعم الخطوط :"
#: ../../standalone/drakfont_.c:918
@@ -10268,19 +10812,19 @@ msgstr "أزل الخطوط من الن؞ام"
msgid "Post Uninstall"
msgstr "ما ؚعد ازالة التثؚيت"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "م؎اركة الإتصال ؚالإنترنت"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "آسفون, نحن ندعم اصدارات النواة 2.4"
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "م؎اركة الإتصال ؚالإنترنت ممكنة حاليا"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10288,31 +10832,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "تعطيل"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "اهمال"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "إعداة الإعداد"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "جاري تعطيل الخوادم..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "م؎اركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "م؎اركة الإتصال ؚالإنترنت"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10320,19 +10864,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "تمكين"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "جاري تمكين الخوادم..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "م؎اركة إتصال الإنترنت ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10342,31 +10886,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "الواجهة %s (ؚاستخدام الوحدة %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "الواجهة %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "لا محوّل ال؎ؚّكة على ن؞امك"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "سطح ؚينيّ لل؎ؚكة "
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10376,17 +10920,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "واجهة ال؎ؚكة معدّة مسؚقا!"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10396,15 +10940,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "اعداة تهي؊ة آلية"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "أ؞هر تهي؊ة الواجهة الحالية"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10421,7 +10965,7 @@ msgstr ""
"صفة الـIP: %s\n"
"الم؎غل: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10433,54 +10977,42 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "؎ؚكة محلية من الف؊ة C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "إعادة إعداد الواجهة و خادم DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "ال؎ؚكة المحلية لم تنته ØšÙ€`0', جاري الخروج."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"تم ايجاد تعارض في عنوان ال؎ؚكة المحلية المؚد؊ي في الإعداد الحالي لـ%s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "تم اكت؎اف إعداد للجدار الناري!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"تحذير! تم إيجاد إعداد جدار ناري موجود مسؚقا. رؚما تحتاج الى اصلاح يدوي ؚعد "
-"التثؚيت."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "جاري الإعداد..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "جاري إعداد النصوص الؚرمجية و تثؚيت الؚرمجيات و ؚدء الخدمات..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "كانت هناك م؎اكل في تثؚيت الحزمة %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10490,23 +11022,23 @@ msgstr ""
"يمكنك الآن م؎اركة اتصال الإنترنت مع الأجهزة الأخرى في ؎ؚكتك المحلية ؚاستخدام "
"إعداد ال؎ؚكة الأوتوماتيكي (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "تم عمل التنصيؚ, و لكنه غير ممكَّن الآن"
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "تم عمل التنصيؚ, و هو ممكَّن الآن."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "لم يتم اعداد أي م؎اركة اتصال ؚالإنترنت"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "إعدادات م؎اركة إتصال الإنترنت"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10521,6 +11053,166 @@ msgstr ""
"\n"
"اضغط على تهي؊ة لت؎غيل معالج الإعداد."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "لم يتم ايجاد ؚطاقة تلفاز!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"لم يتم ايجاد ؚطاقة تلفاز على جهازك. فضلاً تأكد من أن ؚطاقة الفيديو/التلفاز "
+"المدعومة في لينكس موصولة ؚ؎كل صحيح.\n"
+"\n"
+"\n"
+"يمكنك زيارة قاعدة ؚيانات العتاد المدعوم الخاصة ؚنا على:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "صنع قرص مرن لؚدء الن؞ام"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "دقة العرض"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "إختر ملف"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "اسم المستخدم"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Proxies اعداد"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "خروج"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "تثؚيت الن؞ام"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "تهي؊ة الخدمات"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "وحدة"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "إختر ؎ا؎ة"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "إختيار وحدات الطاؚعة"
+
+#: ../../standalone/draksplash_.c:454
+msgid "You must choose an image file first!"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "جاري التحقق من الأجهزة ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -10609,11 +11301,11 @@ msgstr ""
"اطؚع tv norm الخاص ØšÙƒ و ؚلدك"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV norm :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "المنطقة :"
#: ../../standalone/drakxtv_.c:114
@@ -10696,7 +11388,7 @@ msgstr "لم أتمكن من ؚدء الترقية الحية !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجؚ عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -10874,8 +11566,9 @@ msgid "service setting"
msgstr "إعدادات الخدمات"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "سوف تستلم تنؚيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
#: ../../standalone/logdrake_.c:443
@@ -10895,19 +11588,19 @@ msgstr "إعدادات التنؚيه"
msgid "Please enter your email address below "
msgstr "رجاء كلمة المرور"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "حف؞ ؚإسم.."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "فضلاً, اختر نوع الفأرة الخاصة ØšÙƒ."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "محاكاة الزر الثالث؟"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "جاري قراءة ؚيانات الطاؚعة ..."
@@ -10919,32 +11612,43 @@ msgstr "جاري التحقق من الأجهزة ..."
msgid "Test ports"
msgstr ""
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s found on %s وفّق ؚينه "
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "اختر جهاز المسح الضو؊ي"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "هذا %s الماسح الضّو؊يّ غير مدعّم"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "اختر الجهاز "
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -10954,7 +11658,7 @@ msgstr ""
"الماسح الضو؊ي %s يجؚ اعداده عن طريق PrinterDrake.\n"
"يمكن ت؎غيل PrinterDrake من مركز التحكم في قسم العتاد."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -10965,48 +11669,18 @@ msgstr ""
"يمكنك الآن مسح المستندات ؚاستخدام ``XSane'' من فرع وسا؊ط متعددة/ؚرامج رسومية "
"في قا؊مة التطؚيقات."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "إعدادات الجدار الناري"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "أعدادات الجدار الناري"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"الجدار الناري\n"
-"\n"
-"لقد قمت ؚإعداد جدار ناري مسؚقا.\n"
-"اضغط تهي؊ة لتغيير أو إزالة الجدار الناري"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"الجدار الناري\n"
-"\n"
-"اضغط تهي؊ة لإعداد جدار ناري قياسي"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "اختر لغتك"
@@ -11079,224 +11753,7 @@ msgstr "تثؚيت تحديثات الن؞ام"
msgid "Exit install"
msgstr "الخروج من التثؚيت"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"أداة تهي؊ة الجدار الناري الؚسيط\n"
-"\n"
-"هذه الأداة تسمح لك ؚتهي؊ة جدار ناري ؎خصي لن؞ام Mandrake Linux هذا.\n"
-"إذا كنت تريد جدارا ناريا متخصصا, الق ن؞رة على\n"
-"توزيعة MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"الآن سنسألك ؚعض الأس؊لة حول أي الخدمات تريد أن تسمح لها\n"
-"ؚالإتصال ؚالإنترنت. فضلا فكر ؚعناية حول هذه\n"
-"الأس؊لة لأن أمن كمؚيوترك مهم.\n"
-"\n"
-"رجاء, اذا كنت لا تستخدم أياً من هذه الخدمات فاحجؚها عن\n"
-"الجدار الناري. يمكنك تغيير التهي؊ة في أي وقت تريد عن طريق\n"
-"ت؎غيل هذا الؚرنامج مرة أخرى!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"هل ت؎غّل خادم ويؚ على هذا الجهاز و تريد كل الإنترنت أن\n"
-"تراه؟ اذا كنت تستخدم خادم ويؚ تحتاج فقط أن تصل اليه عن طريق\n"
-"هذا الجهاز فيمكنك أن تجيؚ ØšÙ€\"لا\" هنا.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"هل ت؎غل خادم أسماء نطاقات هنا؟ إذا لم تكن أعددت واحدا\n"
-"لإعطاء معلومات الـIP و المكان لكل الإنترنت, فضلا أجؚ\n"
-"ØšÙ€\"لا\".\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"هل تريد السماح لإتصالات ssh الواردة؟ هذا\n"
-"ؚديل عن telnet و يمكنك استخدامه للدخول. لإذا كنت تستخدم\n"
-"telnet الآن فيجؚ عليك حتما ؚالتؚديل الى ssh. Telnet غير\n"
-"م؎فر -- مما يسمح للمخترقين ؚسرقة كلمة المرور إذا كنت تستخدمها.\n"
-"SSH م؎فر و لا يسمح ؚالتلصص."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"هل تريد السماح لإتصالات Telnet الواردة؟\n"
-"هذا غير آم ؚ؎كل مخيف كما ؎رحنا في الخطوة الساؚقة. نحن ننصح ؚقوة\n"
-"ؚالإجاؚة Øš\"لا\" هنا و استخدام SSH ؚدلا\n"
-"من Telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"هل ت؎غل خادم FTP هنا و تريد أن يُسمح للوصل اليه عن طريق\n"
-"الإنترنت؟ إذا كنت كذلك فنحن ننصح ؚقوة ؚاستخدامه فقط\n"
-"لنقل الملفات عن طريق الدخول اللاإسمي [Anonymous]. أي كلمات مرور مؚعوثة\n"
-"عن طريق FTP يمكن سرقتها عن طريق ؚعض المخترقين ؚما أن FTP أيضا لا يستخدم "
-"الت؎فير لنقل كلمات المرور.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"هل ت؎غل خادم ؚريد هنا؟ إذا كنت ترسل الرسا؊ل من خلال \n"
-"pine أو mutt أو أي ؚرنامج ؚريد يعمل في سطر الأوامر,\n"
-"فالأرجح أنك تفعل ذلك. إذا كان غير ذلك, فسيجؚ عليك حجؚ الجدار الناري عن هذا.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"هل ت؎غل خدمة POP أو IMAP هنا؟ هذا سوف\n"
-"يستخدم لاستضافة حساؚات الؚريد غير المعتمدة على الإنترنت\n"
-"عؚر هذه الماكينة.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"يؚدو أنك ت؎غل نواة من الإصدار 2.2. إذا كان عنوان IP الخاص\n"
-"ؚ؎ؚكتك يتم تحديده عن طريق الكمؚيوتر في ؚيتك أو مكتؚك \n"
-"(مُعيَّن ديناميكياً), سيجؚ عليك السماح ؚهذا. هل\n"
-"هذه هي القضية؟\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"هل التوقيت في جهازك متزامن مع جهاز آخر؟\n"
-"غالؚا, هذه الطريقة تستخدم في أن؞مة يونيكس/لينكس المتوسطة و الكؚيرة.\n"
-"لتحديث أوقات الدخول و أ؎ياء أخرى كهذه. إذا لم تكن جزءا من\n"
-"مكتؚ أكؚر (أو ØŽØŠ من هذا القؚيل) أو لم تسمع ؚهذا من Ù‚ØšÙ„, فالأرجح أن\n"
-"هذا لا يحصل."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"اكتملت التهي؊ة. هل يمكننا كتاؚة هذه التغييرات الى القرص؟\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "لا يمكن أن ينفتح %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "%sللكتاؚة %sلا يمكن أن ينفتح \n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "لا, لا أحتاج الى DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "نعم أحتاج الى DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "لا, لا أحتاج الى NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "نعم أحتاج NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "لا تحف؞"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "إحف؞ و اخرج"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "معالج إعداد الجدار الناري"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "لا (امنع هذا من الإنترنت عن طريق الجدار الناري)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "نعم (اسمح لهذا من خلال الجدار الناري)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "يرجى الإنت؞ار... جاري التأكد من الحزم المثؚتة"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"ف؎ل تثؚيت الحزم الضرورية: %s و Bastille.\n"
-" حاول تثؚيتهم يدوياً."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -11428,6 +11885,10 @@ msgid "Graphical Environment"
msgstr "ؚي؊ات رسومية"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -11539,16 +12000,247 @@ msgstr "وسا؊ط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "tinyfirewall configurator\n"
+#~ "\n"
+#~ "This configures a personal firewall for this Mandrake Linux machine.\n"
+#~ "For a powerful dedicated firewall solution, please look to the\n"
+#~ "specialized MandrakeSecurity Firewall distribution."
+#~ msgstr ""
+#~ "أداة تهي؊ة الجدار الناري الؚسيط\n"
+#~ "\n"
+#~ "هذه الأداة تسمح لك ؚتهي؊ة جدار ناري ؎خصي لن؞ام Mandrake Linux هذا.\n"
+#~ "إذا كنت تريد جدارا ناريا متخصصا, الق ن؞رة على\n"
+#~ "توزيعة MandrakeSecurity Firewall."
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "خيارات"
+#~ msgid "Internet and Messaging"
+#~ msgstr "الإنترنت و المراسلة"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "الأمن"
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "وسا؊ط متعددة و رسوميات"
+
+#~ msgid "Server Software"
+#~ msgstr "ؚرامج الخادم"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "است؎ارات Mandrake"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (لا يعمل مع أن؞مة الـBIOS القديمة)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "ليس لديك أيّ فواصل ! "
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ " لا يمكن أن أقرأ جدول فاصلك هو يفسد أيضًا سوف أحاول أن أستمرّ فواصل سيّ؊ة "
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "إعدادات الجدار الناري"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "أعدادات الجدار الناري"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "الجدار الناري\n"
+#~ "\n"
+#~ "لقد قمت ؚإعداد جدار ناري مسؚقا.\n"
+#~ "اضغط تهي؊ة لتغيير أو إزالة الجدار الناري"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "الجدار الناري\n"
+#~ "\n"
+#~ "اضغط تهي؊ة لإعداد جدار ناري قياسي"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "الآن سنسألك ؚعض الأس؊لة حول أي الخدمات تريد أن تسمح لها\n"
+#~ "ؚالإتصال ؚالإنترنت. فضلا فكر ؚعناية حول هذه\n"
+#~ "الأس؊لة لأن أمن كمؚيوترك مهم.\n"
+#~ "\n"
+#~ "رجاء, اذا كنت لا تستخدم أياً من هذه الخدمات فاحجؚها عن\n"
+#~ "الجدار الناري. يمكنك تغيير التهي؊ة في أي وقت تريد عن طريق\n"
+#~ "ت؎غيل هذا الؚرنامج مرة أخرى!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ت؎غّل خادم ويؚ على هذا الجهاز و تريد كل الإنترنت أن\n"
+#~ "تراه؟ اذا كنت تستخدم خادم ويؚ تحتاج فقط أن تصل اليه عن طريق\n"
+#~ "هذا الجهاز فيمكنك أن تجيؚ ØšÙ€\"لا\" هنا.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ت؎غل خادم أسماء نطاقات هنا؟ إذا لم تكن أعددت واحدا\n"
+#~ "لإعطاء معلومات الـIP و المكان لكل الإنترنت, فضلا أجؚ\n"
+#~ "ØšÙ€\"لا\".\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "هل تريد السماح لإتصالات ssh الواردة؟ هذا\n"
+#~ "ؚديل عن telnet و يمكنك استخدامه للدخول. لإذا كنت تستخدم\n"
+#~ "telnet الآن فيجؚ عليك حتما ؚالتؚديل الى ssh. Telnet غير\n"
+#~ "م؎فر -- مما يسمح للمخترقين ؚسرقة كلمة المرور إذا كنت تستخدمها.\n"
+#~ "SSH م؎فر و لا يسمح ؚالتلصص."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "هل تريد السماح لإتصالات Telnet الواردة؟\n"
+#~ "هذا غير آم ؚ؎كل مخيف كما ؎رحنا في الخطوة الساؚقة. نحن ننصح ؚقوة\n"
+#~ "ؚالإجاؚة Øš\"لا\" هنا و استخدام SSH ؚدلا\n"
+#~ "من Telnet.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "هل ت؎غل خادم FTP هنا و تريد أن يُسمح للوصل اليه عن طريق\n"
+#~ "الإنترنت؟ إذا كنت كذلك فنحن ننصح ؚقوة ؚاستخدامه فقط\n"
+#~ "لنقل الملفات عن طريق الدخول اللاإسمي [Anonymous]. أي كلمات مرور مؚعوثة\n"
+#~ "عن طريق FTP يمكن سرقتها عن طريق ؚعض المخترقين ؚما أن FTP أيضا لا يستخدم "
+#~ "الت؎فير لنقل كلمات المرور.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ت؎غل خادم ؚريد هنا؟ إذا كنت ترسل الرسا؊ل من خلال \n"
+#~ "pine أو mutt أو أي ؚرنامج ؚريد يعمل في سطر الأوامر,\n"
+#~ "فالأرجح أنك تفعل ذلك. إذا كان غير ذلك, فسيجؚ عليك حجؚ الجدار الناري عن "
+#~ "هذا.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "هل ت؎غل خدمة POP أو IMAP هنا؟ هذا سوف\n"
+#~ "يستخدم لاستضافة حساؚات الؚريد غير المعتمدة على الإنترنت\n"
+#~ "عؚر هذه الماكينة.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "يؚدو أنك ت؎غل نواة من الإصدار 2.2. إذا كان عنوان IP الخاص\n"
+#~ "ؚ؎ؚكتك يتم تحديده عن طريق الكمؚيوتر في ؚيتك أو مكتؚك \n"
+#~ "(مُعيَّن ديناميكياً), سيجؚ عليك السماح ؚهذا. هل\n"
+#~ "هذه هي القضية؟\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "هل التوقيت في جهازك متزامن مع جهاز آخر؟\n"
+#~ "غالؚا, هذه الطريقة تستخدم في أن؞مة يونيكس/لينكس المتوسطة و الكؚيرة.\n"
+#~ "لتحديث أوقات الدخول و أ؎ياء أخرى كهذه. إذا لم تكن جزءا من\n"
+#~ "مكتؚ أكؚر (أو ØŽØŠ من هذا القؚيل) أو لم تسمع ؚهذا من Ù‚ØšÙ„, فالأرجح أن\n"
+#~ "هذا لا يحصل."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "اكتملت التهي؊ة. هل يمكننا كتاؚة هذه التغييرات الى القرص؟\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "%sللكتاؚة %sلا يمكن أن ينفتح \n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "لا, لا أحتاج الى DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "نعم أحتاج الى DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "لا, لا أحتاج الى NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "نعم أحتاج NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "لا تحف؞"
+
+#~ msgid "Save & Quit"
+#~ msgstr "إحف؞ و اخرج"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "معالج إعداد الجدار الناري"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "لا (امنع هذا من الإنترنت عن طريق الجدار الناري)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "نعم (اسمح لهذا من خلال الجدار الناري)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "يرجى الإنت؞ار... جاري التأكد من الحزم المثؚتة"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "ف؎ل تثؚيت الحزم الضرورية: %s و Bastille.\n"
+#~ " حاول تثؚيتهم يدوياً."
#~ msgid "Data list to include on CDROM."
#~ msgstr "قا؊مة الؚيانات التي ستضمن في القرص."
@@ -11575,18 +12267,6 @@ msgstr "محطة عمل علمية"
#~ " من فضلك فحص إذا أردت أن تتضمّن \n"
#~ "ركؚّ الجدر على قرصك المدمج"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "خادم NTP"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "تركيؚ طرود ..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "تركيؚ طرود ..."
-
#~ msgid "Control Center"
#~ msgstr "مركز التّحكّم "
@@ -11690,12 +12370,6 @@ msgstr "محطة عمل علمية"
#~ msgid "Choose a X driver"
#~ msgstr "إختر م؎غل X"
-#~ msgid "X driver"
-#~ msgstr "م؎غل X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "تحذير: اختؚار ؚطاقة العرض هذه قد يتسؚ في ايقاف جهازك"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standard VGA, 640x480 at 60 Hz"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index e21ba8371..ed3f2ef88 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -48,23 +48,22 @@ msgid "32 MB"
msgstr "32 MB"
#: ../../Xconfig/card.pm_.c:24
-#, fuzzy
msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
+msgstr "64 MB və ya daha çox"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Bir X vericisi seçin"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X verici"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Çoxlu Başlıq quraşdırılması"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,27 +71,27 @@ msgstr ""
"Sizin sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Ekran kartınızın yaddaş böyÃŒklÃŒyÃŒnÃŒ seçin"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree quraşdırılması"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "BÃŒtÃŒn başlıqları ayrı ayrı quraşdır"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Təkcə \"%s\" kartını qur (%s)"
@@ -103,13 +102,13 @@ msgstr "Təkcə \"%s\" kartını qur (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "3D avadanlıq sÃŒr'ətləndirməsi ilə XFree %s"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +120,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D ÌçÌn daha yaxşı "
"bir fikir olar."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MƏRHƏLƏSÄ°NDƏKÄ° 3D sÃŒr'ətləndirmə dəstəkli XFree %s"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -145,7 +144,7 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D ÌçÌn daha yaxşı "
"bir seçki olar."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,53 +153,54 @@ msgstr ""
"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "XÃŒsusi"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Ekran kartı"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Oldu"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Çıx"
@@ -217,28 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Ümumi"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Geri al"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -256,11 +256,11 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa dÌşərsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "ÜfÃŒqi yeniləmə sÃŒr'əti"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Şaquli yeniləmə sÃŒr'əti"
@@ -297,36 +297,41 @@ msgstr "Rezolyusiya və rəng dərinliyini seçin"
msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Ləğv et"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlÃŒkəlidir"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -462,26 +467,22 @@ msgstr "DOS/Wİndowsdan açıl (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Sistem yÃŒkləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Açılış yÃŒkləyici quruluşu"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (köhnə BIOSlarda işləməz)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Bəsit"
@@ -498,16 +499,17 @@ msgstr "Ekran modu"
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə mÃŒddəti"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Parol (təkrar)"
@@ -542,14 +544,14 @@ msgid ""
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
@@ -594,16 +596,16 @@ msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Qurtardı"
@@ -615,7 +617,7 @@ msgstr "Təkmilləşdir"
msgid "Which type of entry do you want to add?"
msgstr "Ne cÃŒr bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linuks"
@@ -710,13 +712,13 @@ msgstr "Başqa var?"
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara ÌzÌ var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bəli"
@@ -814,40 +816,48 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -856,32 +866,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -890,59 +900,59 @@ msgstr ""
"KompÃŒterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə ÌçÌn bir dil seçin."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -951,42 +961,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "YÃŒksək"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "YÃŒksək"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "ŞÌbhəci"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -997,7 +1007,7 @@ msgstr ""
"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1005,7 +1015,7 @@ msgstr ""
"Parollar fəallaşdırıldı, yenə də bir şəbəkə ÃŒstÃŒndə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1014,13 +1024,13 @@ msgstr ""
"Ä°nternetə bağlı bir kompÃŒter ÌçÌn standart və tövsiyə edilən bir "
"təhlÃŒkəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1045,7 @@ msgstr ""
"TəhlÃŒkəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
"artırılmışdır. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1045,32 +1055,32 @@ msgstr ""
"tamamilə qapalıdır.\n"
"TəhlÃŒkəsizlik səviyyəsi indi ən ÃŒstdədir."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Seçənəklər"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "TəhlÃŒkəsizlik səviyyəsini seçin"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "TəhlÃŒkəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici ÌçÌn seçənəkləri göstərin"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1112,7 +1122,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1126,7 +1136,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
@@ -1141,7 +1151,7 @@ msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1155,7 +1165,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1170,32 +1180,32 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Masa ÜstÃŒ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yÃŒkləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
@@ -1203,8 +1213,8 @@ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
@@ -1214,7 +1224,7 @@ msgstr "/_Fayl"
msgid "/File/_Quit"
msgstr "/Fayl/_Çıx"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1256,94 +1266,101 @@ msgstr "Sistemi qur"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Yeni bölmə yarat"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Xəta"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NoVÄ°deo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Quruluş sinifini seçin"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1352,23 +1369,22 @@ msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq ÌçÌn tıqlayın."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1377,45 +1393,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriş istəmirəm"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi ÌçÌn avtomatik giriş istəyirəm (istifadəçi, masa ÃŒstÃŒ)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq ÌçÌn açıla bilmir: %s"
@@ -1521,48 +1537,53 @@ msgstr "serial"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "yeni"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ayır"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Bağla"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
@@ -1571,8 +1592,9 @@ msgstr "Seçənəklər: %s"
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1611,10 +1633,15 @@ msgid "Please click on a partition"
msgstr "Xahiş edirik bir bölmə ÃŒstÃŒnə tıqlayın"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ətraflı"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Yerli Çap Edici"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1640,13 +1667,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Boş"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Digər"
@@ -1654,12 +1681,12 @@ msgstr "Digər"
msgid "Filesystem types:"
msgstr "Fayl sistemi növÌ:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Növ"
@@ -1669,7 +1696,7 @@ msgstr "Növ"
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Sil"
@@ -1677,7 +1704,7 @@ msgstr "Sil"
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1685,111 +1712,111 @@ msgstr ""
"%s bölməsinin növÃŒnÃŒ dəyişdirdikdən sonra, bu bölmədəki bÃŒtÃŒn mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Avtomatik ayır"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Daha Çox"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "BÃŒtÃŒn birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq ÌçÌn, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökÃŒlə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1797,11 +1824,11 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyÃŒklÃŒyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1809,114 +1836,106 @@ msgstr ""
"Disket sÃŒrÃŒcÃŒyə bir disket yerləşdirin\n"
"Bu disketdəki bÃŒtÃŒn mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "BöyÃŒklÃŒyÃŒnÃŒ Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Daşı"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Şəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Bağla"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ayır"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Loopback ÌçÌn istifadə et"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "MB cinsindən böyÃŒklÃŒk: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Fayl sistemi növÌ: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "XÃŒsusiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Bölmə növÃŒnÃŒ Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1925,144 +1944,144 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"Əvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "BöyÃŒklÃŒyÃŒ dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növÃŒnÃŒ istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bÃŒtÃŒn mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyÃŒklÃŒyÃŒ dəyişdirildirkdən sonra bu bölmədəki bÃŒtÃŒn mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Yeni böyÌklÌk seçin"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyÃŒklÃŒk: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Bölmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək ÌçÌn mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək ÌçÌn mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM adı?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback ÌçÌn işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "avadanlıq"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "parça böyÌklÌyÌ"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlÃŒkəlidir."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2074,7 +2093,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2086,7 +2105,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2097,132 +2116,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnÃŒn bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı ÌçÌn sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bÃŒtÃŒn mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Şəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr ÌçÌn boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr ÌçÌn boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Avadanlıq: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sÃŒrÃŒcÃŒ hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Növ: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "BöyÌklÌyÌ: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2231,7 +2250,7 @@ msgstr ""
"Loopback faylı:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2239,27 +2258,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılışı ÌçÌn)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça böyÌklÌyÌ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2270,7 +2289,7 @@ msgstr ""
"Bəlkə də bu bir SÃŒrÃŒcÃŒ bölməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2281,59 +2300,63 @@ msgstr ""
"Bu, ikili açılış ÌçÌn xÃŒsusi\n"
"Bootstrap-dır.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "BöyÌklÌk: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növÃŒ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nö'li\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi növÌ: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2372,7 +2395,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "İstifadəçi adı"
@@ -2387,23 +2410,23 @@ msgstr "NIS sahəsi"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2420,33 +2443,52 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Bölmə cədvəlinizi oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
+"Xarab olmuş bolmələri dÃŒzəltməyə çalışacam.\n"
+"Amma bÃŒtÃŒn mə'lumatlar itəcəkdir.\n"
+"Başqa bir yol isə DrakXin bölmə cədvəllərini yoxlamasını "
+"passivləşdirməkdir.\n"
+"(xəta %s)\n"
+"\n"
+"BÃŒtÃŒn bölmələri itirmək istəyirsiniz?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s ÌçÌn LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2455,231 +2497,277 @@ msgstr ""
"Bu bağlama nöqtəsi ÌçÌn həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardır.\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s ÌçÌn LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə ÌçÌn boş sahə yoxdur"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq ÌçÌn açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlÃŒ bir sÃŒrÃŒcÃŒ "
-"tapılmadı. Bu problemin qaynağı ÌçÌn avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Heç disk bölməniz yoxdur!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "SÌrÌcÌ"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Siçan"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Kart mem (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Ləğv et"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Siçan"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Ä°zah"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Tanıtma"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Fayl seç"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Keçit avadanlığı"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 dÃŒyməli"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Sınaq səhifəsi çap edilir..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Çıx"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Kömək"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Kömək"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Kömək/_Haqqında..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Avtomatik yoxla"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Avadanlıq mə'lumatına bax"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Siçan qurğuları"
+msgid "Information"
+msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Mə'lumatı göstər"
+msgid "Configure module"
+msgstr "Siçan qurğuları"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapısında tapıldı"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Xahiş edirik gözləyin"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d saniyə sonra çıxılacaq"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
@@ -2712,16 +2800,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kart mem (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Bölmə növÃŒnÃŒ Dəyişdir"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2730,11 +2818,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Şəkilləndirilir"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2746,22 +2834,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2874,7 +2962,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2900,10 +2988,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2938,11 +3026,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2992,7 +3080,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3023,24 +3111,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3049,7 +3125,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3069,13 +3145,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3109,7 +3185,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3142,7 +3220,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
@@ -3193,7 +3273,7 @@ msgstr ""
"bilgiyi asandlıqla itirə bilərsiniz.\n"
" TəcrÃŒbəsiz isəniz bunu seçməyin."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3226,7 +3306,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3282,7 +3362,7 @@ msgstr ""
"Yeni Linuks Mandrake sisteminizi qurmaq ÌçÌn başqa bölmə seçmək\n"
"istəyirsiniz isə \"Ləğv et\" dÃŒyməsinə basın."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3299,12 +3379,12 @@ msgstr ""
"\n"
"Xahiş edirik, səbrli olun."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3314,7 +3394,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3323,19 +3403,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3353,26 +3433,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3400,7 +3480,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3477,7 +3557,7 @@ msgstr ""
"Əgər daha çox yeriniz varsa ; məsələn 50 MB, onda bÃŒtÃŒn kernel və ramdisk "
"əksini təcili açılış halları ÌçÌn saxlaya bilərsiniz."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3541,11 +3621,11 @@ msgstr ""
"SCSI sÃŒrÃŒcÃŒlərində \"a\" nın mənası \"birinci sÃŒrÃŒcÃŒ\",\n"
"\"b\"nin mənası \"ikinci sÃŒrÃŒcÃŒ\"dÃŒr vs..."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Səbrli olun. Bu əməliyyat bir neçə deqiqə sÃŒrə bilər."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3553,23 +3633,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3578,11 +3658,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Xahiş edirik Linuks Mandrakenin daha əvvəlki buraxılışları qurulu deyilsə və "
"ya mÃŒxtəlif əməliyyat sistemlərindən istifadə etmək istəyirsinizsə \"YÃŒklə\" "
@@ -3614,23 +3694,28 @@ msgstr ""
" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
"sinifi seçin."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3644,7 +3729,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3657,10 +3742,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3669,7 +3761,7 @@ msgstr ""
"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
"Linuksda ttyS0'dır."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3699,15 +3791,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3746,8 +3838,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3755,17 +3851,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3825,18 +3911,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4086,7 +4172,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4099,7 +4187,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -4110,7 +4198,7 @@ msgstr ""
"Diqqətli olun, sÃŒrÃŒcÃŒdəki bÃŒtÃŒn mə'lumatlar silinəcək\n"
"və geri gəlməyəcək."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -4143,7 +4231,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4167,20 +4255,29 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnə FAT şəkilləndirilmiş bir disket taxın"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4188,11 +4285,19 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək ÌçÌn qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlÃŒ bir sÃŒrÃŒcÃŒ "
+"tapılmadı. Bu problemin qaynağı ÌçÌn avadanlığınızı yoxlayın"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4227,60 +4332,60 @@ msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr ÌçÌn boş sahə yoxdur"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Var olan bölmələri işlədimmi"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Loopback ÌçÌn Windows bölməsini işlət"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq ÌçÌn hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "BöyÃŒklÃŒklərini seçin"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Kök (root) bölməsi böyÃŒklÃŒyÃŒ (Mb): "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Swap sahəsi böyÃŒklÃŒyÃŒ (Mb): "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmənin böyÃŒklÃŒyÃŒnÃŒ dəyişdirəcəksiniz?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4289,7 +4394,7 @@ msgstr ""
"FAT tədqiqatçımız sizin bölÃŒmləri işlədə bilmir,\n"
"bu xəta oldu: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4298,7 +4403,7 @@ msgstr ""
"Sizin Windows bölÃŒmÃŒ çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
"(defraq)"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4318,56 +4423,56 @@ msgstr ""
"Ardından quruluma \n"
"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT böyÃŒklÃŒyÃŒ dəyişdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "FAT bölməsi yoxdur ya da loopback ÌçÌn lazımi yer buraxılmayıb"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "BÃŒtÃŒn diski sil"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "\"Windows\"u sil"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq ÌçÌn hansını istifadə "
"edəcəksiniz?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"%s bölÃŒməsinin böyÃŒklÃŒyÃŒ dəyişdirildikdən sonra bu bölmədəki bÃŒtÃŒn "
"mə'lumatlar silinəcəkdir"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4376,28 +4481,28 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmə cədvəli növÃŒ: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Şəbəkə fəallaşdırılır"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Şəbəkə dayandırılır"
@@ -4409,12 +4514,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə dÃŒzəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4426,12 +4531,12 @@ msgstr ""
"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Disket sÌrÌcÌ yoxdur"
@@ -4463,69 +4568,69 @@ msgstr "Qurulum Sinifi"
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyÃŒklÃŒk: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "BöyÌklÌyÌ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Əhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, çÌnki qurmaq ÌçÌn yer çatmır."
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4533,77 +4638,77 @@ msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan çıx"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Qalan mÃŒddət"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4617,17 +4722,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sÃŒrÃŒcÃŒnÃŒzə taxın və OLDU'ya basın.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq ÌçÌn Ä°MTÄ°NA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4947,7 +5052,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
@@ -4999,11 +5104,11 @@ msgstr "Paket seçkilərini saxla"
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növÃŒnÃŒ seçin."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Siçan Qapısı"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
@@ -5035,117 +5140,90 @@ msgstr "IDE qapıları qurulur"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri ÌçÌn bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Bölmə cədvəlinizi oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
-"Xarab olmuş bolmələri dÃŒzəltməyə çalışacam.\n"
-"Amma bÃŒtÃŒn mə'lumatlar itəcəkdir.\n"
-"Başqa bir yol isə DrakXin bölmə cədvəllərini yoxlamasını "
-"passivləşdirməkdir.\n"
-"(xəta %s)\n"
-"\n"
-"BÃŒtÃŒn bölmələri itirmək istəyirsiniz?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
-"ÖzÃŒnÃŒz davam edə bilərsiniz."
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin daxil olması ÌçÌn kompÃŒterinizi yenidən "
"başlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Bölmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək ÌçÌn lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "GÃŒncəllənəcək paketlar tapılır"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5153,63 +5231,63 @@ msgid ""
msgstr ""
"Sisteminizdə qurulum ya da gÃŒncəlləmə ÌçÌn lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Seçili böyÌklÌk var olandan daha böyÌkdÌr"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5220,16 +5298,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basın."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5238,21 +5316,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5322,7 +5400,7 @@ msgstr ""
"USA\n"
"Ìnvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5334,164 +5412,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Əks ÃŒnvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq ÌçÌn bir əks ÃŒnvanı seçin"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ÃŒnvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "MÃŒndəricat"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5507,21 +5585,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Sahə(domain) adı"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5552,19 +5630,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "İlk disket sÌrÌcÌ"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "İkinci disket sÌrÌcÌ"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5594,7 +5672,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5603,28 +5681,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sÃŒrÃŒcÃŒ yoxdur"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq ÌçÌn istifadə ediləcək disket sÃŒrÃŒcÃŒyÃŒ seçin"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Açılış yÃŒkləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5632,11 +5710,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5644,17 +5722,17 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yÃŒkləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yÃŒkləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1274
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1259
+#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
@@ -5666,21 +5744,21 @@ msgstr ""
"Siz Open FÄ°rmware açılış avadanlığınızı açılış yÃŒkləyicisini\n"
"fəallaşdırmaq ÌçÌn dəyişdirməli ola bilərsiniz. Əmr-Seçənək-O-F dÃŒymələrini\n"
" yenidən başlarkən basın və bunları girin:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
+" setenv boot-device %s,\\\\:tbxi\n"
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yÃŒkləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sÃŒrÃŒcÃŒsÃŒnə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5690,7 +5768,7 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5716,15 +5794,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5738,15 +5816,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5755,7 +5833,8 @@ msgstr "Paket seçkilərini saxla"
msgid "Mandrake Linux Installation %s"
msgstr "Linuks-Mandrake Qurulumu %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5774,22 +5853,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Ətraflı"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Əvvəlki"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Sonrakı ->"
@@ -5857,385 +5936,385 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Ä°spanca"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Fransızca"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "İngiliz (UK) klaviaturası"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturası"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maşını)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "fəallaşdır"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "İsveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "İsveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Almanca (ölÃŒ dÃŒymələr olmasın)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "GÌrcÌ dili (\"Rus\" sırası)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "GÌrcÌ dili (\"Latın\" sırası)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Xırvatca"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Ä°srail"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Ä°srail (Fonetik)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Ä°zlandiya dili"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Ä°talyanca"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Yaponca 106 dÃŒyməli"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Koreya klaviaturası"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latın Amerika dili"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sırası)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sırası)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "TÃŒrkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "TÃŒrkcə (mÃŒasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latın/kiril)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6293,11 +6372,11 @@ msgstr "Sıravi PS2 Çərxli Siçan"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6305,115 +6384,124 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 dÃŒymə"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 DÃŒyməli Siçan"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Çərx"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Sıravi 3 DÃŒyməli Siçan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mouse (serial ya da köhnə C7 növÃŒ)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 dÃŒyməli"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 dÃŒyməli"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "heç biri"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq ÌçÌn,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Sonrakı ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Doğrudur?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Mə'lumat"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Ağacı Aç"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Ağacı Qapat"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
@@ -6451,6 +6539,75 @@ msgstr "pppoe istifadə et"
msgid "use pptp"
msgstr "pptpe istifadə et"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Verici"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Sahə(domain) adı"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Databeyz"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Verici"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "şəbəkə kartı tapılmadı"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall configurator\n"
+"\n"
+"Bu, Linuks Mandrake sisteminiz ÌçÌn şəxsi bir firewall quraşdıracaqdır.\n"
+"Daha gÃŒclÃŒ və e'tibarlı sistem ÌçÌn xahiş edirik xÃŒsusi MandrakeSecurity "
+"Firewall\n"
+"buraxılışını tədqiq edin."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Qapıları sına"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6467,7 +6624,7 @@ msgstr ""
"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Şəbəkə ara ÃŒzÃŒnÃŒ seçin"
@@ -6480,7 +6637,7 @@ msgstr "Ä°nternetə bağlanmaq ÌçÌn şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6495,7 +6652,7 @@ msgstr ""
"Məsələn``kompÃŒteradı.sahəadı.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Ev sahibi adı"
@@ -6794,13 +6951,13 @@ msgstr "Qurulacaq profili seçin"
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Usta Modu"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
@@ -6965,11 +7122,11 @@ msgstr "Avtomatlaşdırılmış IP"
msgid "Start at boot"
msgstr "Açılışda başladılır"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ÃŒnvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6980,43 +7137,55 @@ msgstr ""
"Məsələn``kompÃŒteradı.sahəadı.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Diqqət! Var olan Firewall qurğusu tapıldı. YÃŒkləmədən sonra bir az əl "
+"gəzdirə bilərsiniz."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "İnternet qurğuları"
@@ -7125,15 +7294,15 @@ msgstr "Hesap Parolu"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "bağlama iflas etdi: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7144,21 +7313,21 @@ msgstr ""
"daşıyaraq\n"
"məsələni həll edə bilərsiniz."
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından qurtarılışda xəta: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7204,158 +7373,162 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Çap Edici Vericisi"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Əsas)"
@@ -7382,12 +7555,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
@@ -7418,7 +7591,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ÃŒnvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
@@ -7427,7 +7600,7 @@ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Qapı"
@@ -7436,13 +7609,130 @@ msgstr "Qapı"
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Çap Edici"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Çap edicini sınamaq istəyirsiniz?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7455,7 +7745,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7464,7 +7754,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7477,7 +7767,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7486,7 +7791,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7497,26 +7802,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7530,50 +7835,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7581,34 +7886,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7616,7 +7921,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7624,38 +7929,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Quraşdırma"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7665,51 +7970,51 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7722,46 +8027,46 @@ msgstr ""
"IP ÃŒnvanı, çap edicinin paylaşdırma adı, işləmə grupu, istifadəçi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB verici adı"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "İş qrupu"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7785,7 +8090,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7794,7 +8099,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7802,11 +8107,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "NetWare Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7818,44 +8123,44 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7866,61 +8171,61 @@ msgstr ""
"Soket çap edicidən yekun almaq ÌçÌn, çap edicinin ev sahibi adını ve "
"mÃŒmkÃŒnsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Çap edici adı"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7935,28 +8240,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cÃŒr bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7965,18 +8270,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7986,12 +8291,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7999,20 +8304,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8022,34 +8353,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Qapıları sına"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8057,45 +8388,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8111,7 +8442,7 @@ msgstr ""
"\n"
"DÃŒz mÃŒ işləyir?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8121,16 +8452,16 @@ msgstr ""
"Çap edicinin işləməsi ÌçÌn bir az vaxt keçər.\n"
"DÃŒz mÃŒ işləyir?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8139,15 +8470,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8156,7 +8487,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8164,41 +8495,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8208,7 +8539,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8217,41 +8548,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Qapat"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8265,7 +8596,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8278,19 +8609,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8300,51 +8631,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8352,61 +8683,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayıb"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8414,12 +8745,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Şəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8429,34 +8760,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "YÃŒksək"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "ŞÌbhəci"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8471,12 +8802,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8490,81 +8821,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Çap Edici"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8574,137 +8900,139 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrÃŒlməsi"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
@@ -9119,7 +9447,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -9178,191 +9506,228 @@ msgstr "Hal:"
msgid "Stop"
msgstr "Sektor"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "BÃŒtÃŒn dÃŒnya"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "İnternet imkanı"
+msgid "Get the most from the Internet"
+msgstr "İnternetə bağlan"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedya - Qrafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "TəcrÃŒbi"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Oyunlar"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Şəbəkə ara ÃŒzÃŒ"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "SMB verici adı"
+msgid "Development simplified"
+msgstr "TəcrÃŒbi"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Oyunlar"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Usta"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Usta"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Usta"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "LÃŒtfen çıxın və Ctrl-Alt-BackSpace dÃŒymələrinə basın"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
-"Xəsərli hissələri dÃŒzəltməyə cəhd edəcəm"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9406,12 +9771,13 @@ msgstr "İstifadəçini əlavə et"
msgid "Add/Del Clients"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Yardım"
@@ -9572,8 +9938,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Təbriklər!"
@@ -9598,27 +9964,31 @@ msgstr "İstifadəçi əlavə et"
msgid "Remove the last item"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9626,7 +9996,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9634,13 +10004,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Qapıları sına"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9649,16 +10026,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Parolsuz"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%s açıla bilmir: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9669,63 +10071,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9733,800 +10140,923 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Xahiş edirik bir bölmə ÃŒstÃŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə ÃŒstÃŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Xahiş edirik bir bölmə ÃŒstÃŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Xahiş edirik bir bölmə ÃŒstÃŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Xahiş edirik bir bölmə ÃŒstÃŒnə tıqlayın"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara ÃŒzÃŒ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Növ"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə ÌçÌn bir dil seçin."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növÃŒnÃŒ seçin."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növÃŒnÃŒ seçin."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Xahiş edirik siçanınızın növÃŒnÃŒ seçin."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Növbəni sil"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Disketdən geri çağır"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Ev sahibi adı"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Parol"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "İstifadəçi adı"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ev sahibi adı:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "XÃŒsusi"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Fayldan geri çağır"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə ÌçÌn bir dil seçin."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə ÌçÌn bir dil seçin."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə ÌçÌn bir dil seçin."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10558,7 +11088,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10567,7 +11097,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10608,45 +11138,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10663,7 +11193,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10703,7 +11233,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10714,7 +11244,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10727,7 +11257,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10808,9 +11338,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol Vasitələri"
@@ -10862,26 +11392,26 @@ msgstr "Çap Edici"
msgid "Configuration Wizards"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Tanıtma"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Xahiş edirik gözləyin"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10893,21 +11423,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Qapı"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
@@ -11357,7 +11887,7 @@ msgstr "Bağlama nöqtəsi"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
#: ../../standalone/drakfont_.c:918
@@ -11439,19 +11969,19 @@ msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
msgid "Post Uninstall"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrÃŒlməsi"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrÃŒlməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11463,31 +11993,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "passivləşdir"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrÃŒlməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrÃŒlməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11499,19 +12029,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "fəallaşdır"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrÃŒlməsi indi açıldı"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11527,21 +12057,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq ÌçÌn uyğun Şəbəkə Adapterinə "
"ehtiyacınız var."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Üz %s (%s modulu işlədilir)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Ara ÃŒz %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11549,11 +12079,11 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salın."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Şəbəkə ara ÃŒzÃŒ"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11568,18 +12098,18 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq ÃŒzərəyəm?"
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayıb"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11589,17 +12119,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11610,7 +12140,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11622,54 +12152,42 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN ÃŒnvan çaxışması tapıldı!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Diqqət! Var olan Firewall qurğusu tapıldı. YÃŒkləmədən sonra bir az əl "
-"gəzdirə bilərsiniz."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11680,23 +12198,23 @@ msgstr ""
"bölÌşdÃŒrə bilərsiniz, bunun ÌçÌn isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ä°nternet Bağlantısı BölÌşdÃŒrmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Ä°nternet bağlantısı bölÌşdÃŒrÃŒlməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11711,6 +12229,158 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq ÌçÌn Quraşdıra tıqlayın."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "açılış disketi yaradılması"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolyusiya"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Paylaşdırma adı"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Qurulum sonrası qurğular"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Çıx"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Sistemi qur"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Xidmətləri qur"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "avadanlıq"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Çap Edici Bağlantısı"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Çap Edici avadanlığı URI"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Avadanlıqlar tanınır..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11803,11 +12473,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11883,7 +12553,7 @@ msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12062,7 +12732,7 @@ msgstr "avadanlıq"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -12084,19 +12754,19 @@ msgstr "Quraşdırma"
msgid "Please enter your email address below "
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növÃŒnÃŒ seçin."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3 dÃŒymə emulasiyası"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "CUPS sÌrÌcÌ datası oxunur..."
@@ -12110,34 +12780,45 @@ msgstr "Avadanlıqlar tanınır..."
msgid "Test ports"
msgstr "Qapıları sına"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Bir çap edici qurmaq istəyirsiniz?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Ekran kartınızı seçin"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Açılış avadanlığı"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12145,7 +12826,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12153,48 +12834,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Firewall quraşdırılması"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Firewall quraşdırılması"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Firewall qurğularını artıq qurtarmısınız.\n"
-"Qur-a tıqlayaraq firewall qurğuların silin ya da təkmilləşdirin."
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Qur-a tıqlayaraq standart firewall qurğularını aparın."
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "İşlətdiyiniz dili seçin"
@@ -12268,225 +12919,7 @@ msgstr "Sistemi qur"
msgid "Exit install"
msgstr "Qurulumdan çıx"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall configurator\n"
-"\n"
-"Bu, Linuks Mandrake sisteminiz ÌçÌn şəxsi bir firewall quraşdıracaqdır.\n"
-"Daha gÃŒclÃŒ və e'tibarlı sistem ÌçÌn xahiş edirik xÃŒsusi MandrakeSecurity "
-"Firewall\n"
-"buraxılışını tədqiq edin."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"İndi isə internetə bağlanırkən istifadə etməyi arzuladığınız xidmətləri\n"
-"soruşacağıq. Bu suallara xahiş edirik diqqətlə cavab verin, çÌnkÃŒ "
-"kompÃŒterinizin \n"
-"təhlÃŒkəsizliyi çox vacib məsələdir.\n"
-"\n"
-"Xahiş edirik, bu xidmətlərdən istifadə etmədiklərinizə yaxşı qərar verin ki, "
-"firewall\n"
-"onu bağlasın. Sonradan bu qurğuları özÃŒnÃŒz proqramı yenidən işə salaraq "
-"dəyişdirə bilərsiniz.!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Sisteminizdə bÃŒtÃŒn Ä°nternetə göstərmək istədiyiniz veb vericisi "
-"işlədirsiniz? \n"
-"Təkcə bu kompÃŒterin görəcəyi bir veb vericisi olacaqsa burada YOX cavasbı "
-"verə bilərsiniz.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Bu kompÃŒterdə ad vericisi işlədirsiniz? Əgər internetə bağlanırkən bir IP "
-"ÃŒnvanı və\n"
-"nahiyə mə'lumatı almırsınızsa YOX cavabı verin.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Gələn E'tibarlı Qabıq (ssh) bağlantılarına icazə vermək istəyiriniz? Bu, "
-"bir\n"
-"cÃŒr telnet əvəzidir. Ä°ndi telnet işlədirsinizsə onda \"ssh\"yə "
-"keçməlisiniz. \n"
-"Telnet kodlama işlətmir, ona görə dəbə'zi həkerlər parolunuzu oğurlaya "
-"bilər. \n"
-"ssh bunlara icazə verməz."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Gələn telnet bağlantılarına icazə verim?\n"
-"Bu çox e'tibarsızdır. Bunu sizə əvvəlki ekranda söylədik. Buna \n"
-"yox cavabı verməyinizi tövsiyyə edirik. Yerinə ssh işlədin.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"İnternetdən yetişilə bilən bir FTP vericisi işlədirsiniz? Əgər "
-"işlədirsinizsə,\n"
-"təkcə Anonim köçÌrmələr ÌçÌn olmasını tövsiyyə edərik. FTP ilə göndərilən\n"
-"parollar həkerlər tərəfindən oğurlana bilər. FTP parolları kodlaya bilmir "
-"axı.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Burada məktub vericisi işlədirsiniz? Əgər ismarıclarınızı pine\n"
-"mutt və ya başqa mətn əsaslı məktub alıcısından göndərirsinizsə,\n"
-"demək ki, işlədirsiniz. Yoxsa firewall bunu bağlamalıdır.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Burada POP və ya IMAP vericisi işlədirsiniz? Bu isə\n"
-"kompÃŒterdə veb əsaslı olmayan məktub hesabları qurmaq ÌçÌn lazımdır.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Dəyəsən 2.2 çəkirdək işlədirsiniz. Əgər kompÃŒterinizin\n"
-"IPsi başqa bir kompÃŒter tərəfindən dinamik olaraq verilirsə,\n"
-"onda buna icazə vermək olar. Beledir?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"KompÃŒterinizin vaxtı başqa bir kompÃŒterlə sinxronlaşdırır?\n"
-"Bu, daha çox orta və geniş Unix/Linuks şirkətləri tərəfindən işlədilir.\n"
-"Əgər bir şirkətin bir parçası deyilsinizsə, demək ki, işlətmirsiniz."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Qurulum qurtarıldı. Dəyişiklikləri diskə yazım?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s açıla bilmir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Yazmaq ÌçÌn %s açıla bilmir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall quraşdırılması"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12619,6 +13052,10 @@ msgid "Graphical Environment"
msgstr "Qrafiki Ara Üz"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "TəcrÃŒbi"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache və Pro-ftpd"
@@ -12728,98 +13165,187 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (köhnə BIOSlarda işləməz)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Heç disk bölməniz yoxdur!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
-#~ "asand\n"
-#~ "işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. "
-#~ "İnternetə \n"
-#~ "bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
+#~ "DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
+#~ "ÖzÃŒnÃŒz davam edə bilərsiniz."
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Bu təhlÃŒkəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
-#~ "mÃŒmkÃŒndÃŒr. \n"
-#~ "TəhlÃŒkəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
-#~ "artırılmışdır. "
+#~ "Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
+#~ "Xəsərli hissələri dÃŒzəltməyə cəhd edəcəm"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Seçənəklər"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Firewall quraşdırılması"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "TəhlÃŒkəsizlik"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Firewall quraşdırılması"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Klaviatura quruluşunu seçiniz."
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Firewall qurğularını artıq qurtarmısınız.\n"
+#~ "Qur-a tıqlayaraq firewall qurğuların silin ya da təkmilləşdirin."
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Xahiş edirik siçanınızı seçin"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Qur-a tıqlayaraq standart firewall qurğularını aparın."
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "İndi isə internetə bağlanırkən istifadə etməyi arzuladığınız xidmətləri\n"
+#~ "soruşacağıq. Bu suallara xahiş edirik diqqətlə cavab verin, çÌnkÃŒ "
+#~ "kompÃŒterinizin \n"
+#~ "təhlÃŒkəsizliyi çox vacib məsələdir.\n"
+#~ "\n"
+#~ "Xahiş edirik, bu xidmətlərdən istifadə etmədiklərinizə yaxşı qərar verin "
+#~ "ki, firewall\n"
+#~ "onu bağlasın. Sonradan bu qurğuları özÃŒnÃŒz proqramı yenidən işə salaraq "
+#~ "dəyişdirə bilərsiniz.!"
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Vəkil verici ftp://... olmalıdır."
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Sisteminizdə bÃŒtÃŒn Ä°nternetə göstərmək istədiyiniz veb vericisi "
+#~ "işlədirsiniz? \n"
+#~ "Təkcə bu kompÃŒterin görəcəyi bir veb vericisi olacaqsa burada YOX cavasbı "
+#~ "verə bilərsiniz.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Bu kompÃŒterdə ad vericisi işlədirsiniz? Əgər internetə bağlanırkən bir IP "
+#~ "ÃŒnvanı və\n"
+#~ "nahiyə mə'lumatı almırsınızsa YOX cavabı verin.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "\"Windows\"u sil"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Gələn E'tibarlı Qabıq (ssh) bağlantılarına icazə vermək istəyiriniz? Bu, "
+#~ "bir\n"
+#~ "cÃŒr telnet əvəzidir. Ä°ndi telnet işlədirsinizsə onda \"ssh\"yə "
+#~ "keçməlisiniz. \n"
+#~ "Telnet kodlama işlətmir, ona görə dəbə'zi həkerlər parolunuzu oğurlaya "
+#~ "bilər. \n"
+#~ "ssh bunlara icazə verməz."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Cədvəl"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Gələn telnet bağlantılarına icazə verim?\n"
+#~ "Bu çox e'tibarsızdır. Bunu sizə əvvəlki ekranda söylədik. Buna \n"
+#~ "yox cavabı verməyinizi tövsiyyə edirik. Yerinə ssh işlədin.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS Verici"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "İnternetdən yetişilə bilən bir FTP vericisi işlədirsiniz? Əgər "
+#~ "işlədirsinizsə,\n"
+#~ "təkcə Anonim köçÌrmələr ÌçÌn olmasını tövsiyyə edərik. FTP ilə "
+#~ "göndərilən\n"
+#~ "parollar həkerlər tərəfindən oğurlana bilər. FTP parolları kodlaya bilmir "
+#~ "axı.\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Uzaq Çap Edici"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Burada məktub vericisi işlədirsiniz? Əgər ismarıclarınızı pine\n"
+#~ "mutt və ya başqa mətn əsaslı məktub alıcısından göndərirsinizsə,\n"
+#~ "demək ki, işlədirsiniz. Yoxsa firewall bunu bağlamalıdır.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "%s paketi qurulur"
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Burada POP və ya IMAP vericisi işlədirsiniz? Bu isə\n"
+#~ "kompÃŒterdə veb əsaslı olmayan məktub hesabları qurmaq ÌçÌn lazımdır.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "%s paketi qurulur"
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Dəyəsən 2.2 çəkirdək işlədirsiniz. Əgər kompÃŒterinizin\n"
+#~ "IPsi başqa bir kompÃŒter tərəfindən dinamik olaraq verilirsə,\n"
+#~ "onda buna icazə vermək olar. Beledir?\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "%s paketi qurulur"
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "KompÃŒterinizin vaxtı başqa bir kompÃŒterlə sinxronlaşdırır?\n"
+#~ "Bu, daha çox orta və geniş Unix/Linuks şirkətləri tərəfindən işlədilir.\n"
+#~ "Əgər bir şirkətin bir parçası deyilsinizsə, demək ki, işlətmirsiniz."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "CUPS sÌrÌcÌ datası oxunur..."
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Qurulum qurtarıldı. Dəyişiklikləri diskə yazım?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Yazmaq ÌçÌn %s açıla bilmir: %s\n"
#~ msgid "Control Center"
#~ msgstr "İdarə Mərkəzi"
@@ -12897,9 +13423,6 @@ msgstr "Elmi iş stansiyası"
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seçin"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlÃŒkəlidir"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standart VGA, 60 Hz-də 640x480 "
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 250f86846..fbbee9ab5 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -49,46 +49,46 @@ msgstr "32 Ìá"
msgid "64 MB or more"
msgstr "64 Ìá öi áîëåé"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Àáÿðûöå X ñåðâåð"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X ñåðâåð"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
#, fuzzy
msgid "Multi-head configuration"
msgstr "÷ûòàííå íàñòðîéêi"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Ïàçíà÷öå ïàìåð âiäýàïàìÿöi"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Íàñòðîéêà XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "ßêóþ êàíôiãóðàöûþ XFree âû æàäàåöå àòðûìàöü?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Êàíôiãóðàâàöü ìàþ êàðòó"
@@ -99,13 +99,13 @@ msgstr "Êàíôiãóðàâàöü ìàþ êàðòó"
msgid "XFree %s"
msgstr "Ñåðâåð XFree86 %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ç ïàäòðûìêàé 3D-ïàñêàðýííÿ"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,19 +114,19 @@ msgstr ""
"Ïàäòðûìêà 3D-ïàñêàðýííÿ ¢ Âàøàé â³äýàêàðöå âûêàíàíà òîëüê³ ¢ XFree %s.\n"
"XFree %s ìîæà âûêàðûñòî¢âàöü òîëüê³ 2D-ïàñêàðýííå äëÿ ãýòàé â³äýàêàðòû."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Âàøà âiäýàêàðòà ìîæà ìåöü 3D-ïàñêàðýííå, ÿêîå ïàäòðûìëiâàåööà òîëüêi XFree %"
"s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ç ýêñïåðûìåíòàëüíàé ïàäòðûìêàé 3D-ïàñêàðýííÿ"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"ÇÀÂIÑÀÍÍß ÂÀØÀÃÀ ÊÀÌÏ'ÞÒÝÐÓ. Âàøà âiäýàêàðòà ïàäòðûìëiâàåööà XFree %s, ÿêi\n"
"ëåïåé ïàäòðûìëiâàå êàðòû ç 2D-ïàñêàðýííåì."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,53 +150,54 @@ msgstr ""
"ÌÀÉÖÅ ÍÀ ¡ÂÀÇÅ, ØÒÎ ÃÝÒÀ ÝÊÑÏÅÐÛÌÅÍÒÀËÜÍÀß ÏÀÄÒÐÛÌÊÀ I ÌÎÆÀ ÏÐÛÂÅÑÖI ÄÀ\n"
"ÇÀÂIÑÀÍÍß ÂÀØÀÃÀ ÊÀÌÏ'ÞÒÝÐÓ."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Ïà âûáàðó"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Âiäýàêàðòà"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ìàíiòîð"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Ïàìåðû ýêðàíó"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îïöûi"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Îê"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Âûõàä"
@@ -213,28 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Àáÿðûöå ìàíiòîð"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Àãóëüíû"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Àäêàò"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +258,11 @@ msgstr ""
"âû ìîæàöå ñàïñàâàöü ìàíiòîð.\n"
"Êàëi âû ñóìíÿâàåöåñÿ, àáÿðûöå êàíñåðâàòû¢íûÿ íàñòðîéêi."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "×àñö³íÿ ãàðûçàíòàëüíûé ðàçãîðòêi"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "×àñö³íÿ âåðòûêàëüíàé ðàçãîðòêi"
@@ -298,36 +299,41 @@ msgstr "Âûáàð ïàìåðࢠýêðàíó i ãëûáiíi êîëåðó"
msgid "Graphics card: %s"
msgstr "Âiäýàêàðòà: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Àäìåíà"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Ïðàâåðêà ïàðàìåòðࢠíàñòðîéêi"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Ïðàâåðêà ïàðàìåòðࢠíàñòðîéêi"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Ïàïÿðýäæàííå: òýñöiðàâàííå íà ãýòàé âiäýàêàðöå íåáÿñïå÷íà"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -463,27 +469,23 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Ãàëî¢íûÿ îïöûi ïà÷àòêîâàãà çàãðóç÷ûêó"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
#, fuzzy
msgid "Bootloader to use"
msgstr "Ãàëî¢íûÿ îïöûi ïà÷àòêîâàãà çàãðóç÷ûêó"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Óñòàëÿâàííå çàãðóç÷ûêó"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Çàãðóçà÷íàÿ ïðûëàäà"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (íå ïðàöóå ïðû ñòàðûõ âåðñiÿõ BIOS)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Êàìïàêòíà"
@@ -500,16 +502,17 @@ msgstr "Âiäýà-ðýæûì"
msgid "Delay before booting default image"
msgstr "Çàòðûìêà ïåðàä çàãðóçêàé âîáðàçó ïà äàìà¢ëåííþ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ïàðîëü"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Ïà¢òàðûöå ïàðîëü"
@@ -544,14 +547,14 @@ msgid ""
msgstr ""
"Îïöûÿ ``Àáìåæàâàííå îïöûÿ¢ êàìàíäíàãà ðàäêó'' íå âûêàðûñòî¢âàåööà áåç ïàðîëÿ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ïàðîëi íå ñóïàäàþöü"
@@ -597,16 +600,16 @@ msgstr ""
"Ó ìåíþ ìàþööà íàñòóïíûÿ ïóíêòû.\n"
"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äàäàöü"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Çðîáëåíà"
@@ -619,7 +622,7 @@ msgstr "Çìÿíiöü RAID"
msgid "Which type of entry do you want to add?"
msgstr "ßêi òûï ïóíêòà æàäàåöå äàäàöü?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -715,13 +718,13 @@ msgstr "Öi žñöü ó âàñ iíøû?"
msgid "Do you have any %s interfaces?"
msgstr "Öi žñöü ó âàñ %s iíòýðôåéñ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íå"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Òàê"
@@ -819,40 +822,48 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(óæî äàäàäçåíà %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Ãýòû ïàðîëü çàíàäòà ïðîñòû"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Êàëi ëàñêà, óâÿäçiöå iìÿ êàðûñòàëüíiêó"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iìÿ êàðûñòàëüíiêó ïàâiííà çìÿø÷àöü ëiòàðû òîëüêi íà íiæíiì ðýãiñòðû, \n"
"ëi÷áû, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Ãýòà iìÿ êàðûñòàëüíiêó ¢æî äàäàäçåíà"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Ãýòà iìÿ êàðûñòàëüíiêó ¢æî äàäàäçåíà"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -861,32 +872,32 @@ msgstr ""
"Óâÿäçiöå iìÿ êàðûñòàëüíiêó\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Ïðûíÿöü êàðûñòàëüíiêà"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Óëàñíàå iìÿ"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Àáàëîíêà:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ïiêòàãðàìà"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "À¢òàìàòû÷íû ¢âàõîä ó ñiñòýìó"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -895,57 +906,57 @@ msgstr ""
"Ìîæíà íàñòðîiöü ñiñòýìó äëÿ à¢òàìàòû÷íàãà ¢âàõîäó ¢ ñiñòýìó äëÿ\n"
"àäíàãî êàðûñòàëüíiêà. Êàëi Âû íå æàäàåöå ãýòàãà, íàöiñíiöå \"Àäìåíà\"."
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Àáÿðûöå àñíî¢íàãà êàðûñòàëüíiêà:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Àáÿðûöå ìýíýäæàð âîêíà¢:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Óñž"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "×àêàåööà"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -954,42 +965,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Ñàðäý÷íà çàïðàøàåì ó Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Çóñ³ì ñëàáû"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ñòàíäàðòíû"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Âûñîêi"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Âûñîêi"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Ïàðàíàiäàëüíû"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1001,7 +1012,7 @@ msgstr ""
"íà ìàøûíàõ, ÿêiÿ äàëó÷àíû äà ñåòêi öi äà Internet. Óâàõîä íå àáàðîíåíû "
"ïàðîëåì."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1009,7 +1020,7 @@ msgstr ""
"Ïàðîëü çàðàç óêëþ÷àíû, àëå âûêàðûñòàííå êàìï'þòýðó ¢ ÿêàñöi ñåòêàâàãà\n"
"òàêñàìà íå ðýêàìåíäàâàíà."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1019,13 +1030,13 @@ msgstr ""
"ÿêi äàëó÷àíû äà Internet ó ÿêàñöi êëiåíòó. Äàäàíûÿ íîâûÿ ïðàâåðêi\n"
"áÿñïåêi."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1039,7 +1050,7 @@ msgstr ""
"ñåðâåðó. Óçðîâåíü áÿñïåêi äàñòàòêîâà âûñîêi äëÿ ðàáîòû\n"
"ñåðâåðó, ÿêi äàïóñêàå çëó÷ýííi ñà øìàòëiêiìi êëiåíòàìi."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1048,32 +1059,32 @@ msgstr ""
"Ïðûìàþööà ¢ëàñöiâàñöi 4 óçðî¢íÿ, àëå çàðàç ñiñòýìà ïî¢íàñöþ çà÷ûíåíà.\n"
"Ïàðàìåòðû áÿñïåêi ¢ñòàíî¢ëåíû íà ìàêñiìóì."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îïöûi"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Óçðîâåíü áÿñïåêi"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
#, fuzzy
msgid "Security level"
msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Àáÿðûöå äàäàòêîâûÿ íàñòðîéêi äëÿ ñåðâåðà"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1097,57 +1108,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "Íå õàïàå äûñêàâàé ïðàñòîðû ¢ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Ïðàöî¢íû ñòîë"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Êóäû âû æàäàåöå ¢ñòàëÿâàöü ïà÷àòêîâû çàãðóç÷ûê?"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr ""
@@ -1156,8 +1167,8 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
@@ -1168,7 +1179,7 @@ msgstr "Ôàéëû:\n"
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1214,119 +1225,125 @@ msgstr "Óñòàëÿâàííå ñiñòýìû"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Ïàìûëêà"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "Ñåðâåð XFree86 %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "ãàëüøòóê"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Êëàñ óñòàëÿâàííÿ"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Íàñòðîéêà X Window"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
#, fuzzy
msgid "Themes"
msgstr "Äðýâà"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1335,44 +1352,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1476,48 +1493,53 @@ msgstr "ïàñëÿäî¢íàÿ"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr ""
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Íîâû"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ðàçìàíöiðàâàöü"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ìàíöiðàâàííå"
+
+#: ../../diskdrake/dav.pm_.c:61
#, fuzzy
msgid "Server"
msgstr "ñåðâåð"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Êðîïêà ìàíöiðàâàííÿ"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "ñåðâåð"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ïóíêò ìàíöiðàâàííÿ:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îïöûi: %s"
@@ -1526,8 +1548,9 @@ msgstr "Îïöûi: %s"
msgid "Please make a backup of your data first"
msgstr "Ïà-ïåðøàå, çðàáiöå ðýçåðâîâóþ êîïiþ âàøûõ äàäçåíûõ"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "×ûòàéöå ¢âàæëiâà!"
@@ -1565,10 +1588,15 @@ msgid "Please click on a partition"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ïàäðàáÿçíàñöi"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ëàêàëüíû ïðûíòýð"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1594,13 +1622,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Ïóñòà"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "²íøûÿ"
@@ -1608,12 +1636,12 @@ msgstr "²íøûÿ"
msgid "Filesystem types:"
msgstr "Òûïû ôàéëàâûõ ñiñòýìà¢:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Ñòâàðûöü"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Òûï"
@@ -1623,7 +1651,7 @@ msgstr "Òûï"
msgid "Use ``%s'' instead"
msgstr "Âûêàðûñòî¢âàéöå ``%s'' çàìåñò"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Çíiø÷ûöü"
@@ -1631,84 +1659,84 @@ msgstr "Çíiø÷ûöü"
msgid "Use ``Unmount'' first"
msgstr "Ñïà÷àòêó çðàáiöå ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Óñå äàäçåíûÿ ¢ ðàçäçåëå %s áóäóöü ñòðà÷àíû ïàñëÿ çìåíû ÿãî òûïó"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose a partition"
msgstr "Àáÿðûöå äçåÿííå"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
#, fuzzy
msgid "Choose another partition"
msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Ðýæûì ýêñïåðòó"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Çâû÷àéíû ðýæûì"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Àäêàò"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Ñàïðà¢äû ïðàöÿãâàöü?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Âûéñöi áåç çàõàâàííÿ"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Âûéñöi áåç çàïiñó òàáëiöû ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Ðàçìåðêàâàöü à¢òàìàòû÷íà"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "À÷ûñöiöü óñž"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Ïåðàíîñ"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
#, fuzzy
msgid "Hard drive information"
msgstr "Iíôàðìàöûÿ"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Óñå ïåðøàñíûÿ ðàçäçåëû âûêàðûñòàíû"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Äàäàöü ðàçäçåë íåìàã÷ûìà"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1716,35 +1744,35 @@ msgstr ""
"Êàá çðàáiöü áîëüø ðàçäåëà¢, âûäàëiöå àäçií i ñòâàðûöå ïàøûðàíû ðàçäçåë "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Save partition table"
msgstr "Çàïiñ òàáëiöû ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
#, fuzzy
msgid "Restore partition table"
msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Reload partition table"
msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
#, fuzzy
msgid "Removable media automounting"
msgstr "À¢òàìàíöiðàâàííå çìåííûõ íàçàïàøâàëüí³êà¢"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Àáÿðûöå ôàéë"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1752,11 +1780,11 @@ msgstr ""
"Òàáëiöà ðàçìÿø÷ýííÿ ðýçåðâîâàãà äûñêó ìàå iíøû ïàìåð\n"
"Ïðàöÿãâàöü äàëåé?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Óâàãà!"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1764,115 +1792,107 @@ msgstr ""
"Óñòà¢öå äûñêåòó ¢ äûñêàâîä\n"
"Óñå äàäçåíûÿ íà ãýòàé äûñêåöå áóäóöü ñòðà÷àíû"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Ïàñïðàáóåì âûðàòàâàöü òàáëiöó ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
#, fuzzy
msgid "Detailed information"
msgstr "Iíôàðìàöûÿ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Çìÿíåííå ïàìåðà¢"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Ïåðàíîñ"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Ôàðìàòàâàííå"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Ìàíöiðàâàííå"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Äàäàöü äà RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Äàäàöü äà LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ðàçìàíöiðàâàöü"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Âûäàëiöü ç RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Âûäàëiöü ç LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Çìÿíiöü RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Âûêàðûñòî¢âàöü äëÿ âiðòóàëüíàé ôàéëàâàé ñiñòýìû"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Ïà÷àòêîâû ñåêòàð:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ïàìåð ó Ìá:"
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Òûï ôàéëàâàé ñiñòýìû:"
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Ïàðàìåòðû: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ôàðìàòàâàííå âiðòóàëüíàãà ðàçäçåëó %s"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Çìÿíiöü òûï ðàçäçåëó"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Êóäû âû æàäàåöå ìàíöiðàâàöü âiðòóàëüíóþ ïðûëàäó %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Êóäû âû æàäàåöå ìàíöiðàâàöü ïðûëàäó %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1881,142 +1901,142 @@ msgstr ""
"âiðòóàëüíàé ôàéëàâàé ñiñòýìû.\n"
"Ñïà÷àòêó âûäàëiöå âiðòóàëüíóþ ñiñòýìó"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Êóäû âû æàäàåöå ìàíöiðàâàöü ïðûëàäó %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Ïàäë³ê ìåæࢠôàéëàâàé ñiñòýìû FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Çìÿíåííå ïàìåðà¢"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ïàìåðû ÿêîãà ðàçäçåëà âû æàäàåöå çìÿíiöü?"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Óñå äàäçåíûÿ ¢ ãýòûì ðàçäçåëå ïàâiííû áûöü çàðõiâàâàíûÿ"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Óñå äàäçåíûÿ ¢ ðàçäçåëå %s áóäóöü ñòðà÷àíû"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Âûáàð íîâûõ ïàìåðà¢"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
#, fuzzy
msgid "New size in MB: "
msgstr "Ïàìåð ó Ìá:"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Íà ÿêi äûñê ïåðàíåñö³?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Ñåêòàð"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Íà ÿêi ñåêòàð ïåðàíåñö³?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Ïåðàíîñ³ì"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Ïåðàíîñ³ööà ðàçäçåë..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Àáÿðûöå iñíóþ÷û RAID äëÿ äàäàííÿ"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "íîâû"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Âûáÿðûöå iñíóþ÷û LVM äëÿ äàáà¢ëåííÿ"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Ãýòû ðàçäçåë íå ìîæà áûöü âûêàðûñòàíû ïàä âiðòóàëüíóþ ôàéëàâóþ ñiñòýìó"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Âiðòóàëüíàÿ ôàéëàâàÿ ñiñòýìà (loopback)"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Iìÿ âiðòóàëüíàãà ðàçäçåëó"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
#, fuzzy
msgid "Give a file name"
msgstr "Óëàñíàå iìÿ"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ôàéë óæî âûêàðûñòî¢âàåööà iíøàé âiðòóàëüíàé ñiñòýìàé. Êàëi ëàñêà, \n"
"àáÿðûöå iíøóþ íàçâó"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Ôàéë óæî iñíóå. Âûêàðûñòàöü ÿãî?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
#, fuzzy
msgid "Mount options"
msgstr "Îïöûi ìîäóëþ:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ïðûëàäà"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "óçðîâåíü"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ïàìåð áëîêó"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Áóäçüöå óâàæëiâû. Ãýòóþ àïåðàöûþ íåëüãà àäìÿíiöü"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
#, fuzzy
msgid "What type of partitioning?"
msgstr "ßêi òûï äðóêàðêi âû ìàåöå?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2027,7 +2047,7 @@ msgstr ""
"Êàë³ âû äóìàåöå âûêàðûñòî¢âàöü LILO - òàäû ãýòà íå áóäçå ïðàöàâàöü, LILO íå "
"âûêàðûñòî¢âàåöà, òàäû /boot íå ïàòðýáíû."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2039,7 +2059,7 @@ msgstr ""
"Êàëi áóäçå âûêàðûñòî¢âàööà äûñïå÷àð çàãðóçêi LILO, íå çàïàìÿòàéöå äàäàöü\n"
"ðàçäçåë /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2049,137 +2069,137 @@ msgstr ""
"Íÿìà çàãðóç÷ûêó, ÿêi á çàãðóçi¢ñÿ áåç /boot ðàçäçåëà.\n"
"Äàäàéöå ðàçäåë /boot, êàëi ëàñêà."
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Òàáëiöà ðàçìÿø÷ýííÿ ïðûëàäû %s áóäçå çàïiñàíà íà äûñê!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Êàá çìÿíåííi ¢ñòóïiëi ¢ äçåÿííå, íåîáõîäíà ïåðàçàãðóçiööà"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Óñå äàäçåíûå ¢ ðàçäçåëå %s áóäóöü ñòðà÷àíû ïàñëÿ ôàðìàòàâàííÿ"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Ôàðìàòàâàííå"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôàðìàòàâàííå âiðòóàëüíàãà ðàçäçåëó %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Ôàðìàòàâàííå ðàçäçåëó %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Hide files"
msgstr "mkraid íå ïðàöàçäîëüíû"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Move files to the new partition"
msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Ïàìåðû ýêðàíó: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Ïðûëàäà:"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ëiòàðà äëÿ DOS-äûñêó: %s (íà¢ãàä)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Òûï: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Iìÿ: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Ïà÷àòàê: ñåêòàð %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Ïàìåð: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s ñåêòàðà¢"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Öûëiíäðû ç %d ïà %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Ôàðìàòàâàííå\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Íå àäôàðìàòàâàíà\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Çàìàíöiðàâàíà\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ôàéë(û) âiðòóàëüíàé ôàéëàâàé ñiñòýìû: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2187,27 +2207,27 @@ msgstr ""
"Çàãðóçà÷íû ðàçäçåë ïà äàìà¢ëåííþ\n"
" (äëÿ çàãðóçêi MS-DOS, à íå äëÿ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Óçðîâåíü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ïàìåð ôðàãìåíòó %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äûñêi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Iìÿ ôàéëó âiðòóàëüíàé ôàéëàâàé ñiñòýìû: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2215,7 +2235,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2223,60 +2243,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Ïàìåð: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ãåàìåòðûÿ: %s öûëiíäðà¢, %s ãàëîâàê, %s ñåêòàðà¢\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Iíôàðìàöûÿ: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äûñêi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Òûï òàáëiöû ðàçäçåëà¢: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "íà øûíå %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Òûï ôàéëàâàé ñiñòýìû:"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ãýòû ïàðîëü çàíàäòà ïðîñòû (ÿãî äà¢æûíÿ ïàâiííà áûöü íå ìåíåé çà %d ëiòàðà¢)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ïàðîëi íå ñóïàäàþöü"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2315,7 +2339,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Iìÿ êàðûñòàëüíiêó:"
@@ -2330,23 +2354,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS ñåðâåð"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ïàìûëêà ôàðìàòàâàííÿ %s"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Íå âåäàþ ÿê àäôàðìàòàâàöü %s ç òûïàì %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ïàìûëêà ðàçìàíöiðàâàííÿ %s: %s"
@@ -2363,34 +2387,52 @@ msgstr ""
msgid "server"
msgstr "ñåðâåð"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Òàáëiöà ðàçäçåëࢠíå ÷ûòàåööà, ÿíà çàíàäòà ñàïñàâàíàÿ äëÿ ìåíÿ :(\n"
+"Ïàñïðàáóþ iñöi äàëåé i áóäó ïðàïóñêàöü äðýííûÿ ðàçäçåëû (Óñå ÄÀÄÅÇÅÍÛß\n"
+"áóäóöü ñòðà÷àíû!). Iíøàå ðàøýííå íå äàçâîëiöü DrakX çìÿíiöü òàáëiöó "
+"ðàçäçåëà¢.\n"
+"(ïàìûëêà ¢ %s)\n"
+"\n"
+"Öi æàäàåöå ñòðàöiöü óñå ðàçäçåëû?\n"
+
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Âû íå ìîæàöå ðàçáiâàöü íà ðàçäåëû, ïàìåð ÿêiõ ìåíåé çà 16 Ìá"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Âû íå ìîæàöå ðàçáiâàöü íà ðàçäåëû, ïàìåð ÿêiõ ìåíåé çà 32 Ìá"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Ïóíêò ìàíöiðàâàííÿ ïàâiíåí ïà÷ûíàööà ç /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Óæî žñöü ðàçäçåë ç ïóíêòàì ìàíöiðàâàííÿ %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Ãýòû êàòàëîã ïàâ³íåí çíàõîäç³ööà ¢íóòðû êàðàížâàé ôàéëàâàé ñ³ñòýìû"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2399,232 +2441,278 @@ msgstr ""
"Âàì íåàáõîäíà çàäàöü ïðàâiëüíû òûï ôàéëàâàé ñiñòýìû (ext2, reiserfs)\n"
"äëÿ ãýòàé êðîïêi ìàíöiðàâàííÿ\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Âàì íåàáõîäíà çàäàöü ïðàâiëüíû òûï ôàéëàâàé ñiñòýìû (ext2, reiserfs)\n"
"äëÿ ãýòàé êðîïêi ìàíöiðàâàííÿ\n"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Íàñòðîéêà"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "ñåðâåð"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
msgstr ""
-"Ïàìûëêà: äëÿ ñòâàðýííÿ íîâûõ ôàéëàâûõ ñiñòýìࢠíå çíàéäçåíû àäïàâåäíûÿ \n"
-"ïðûëàäû. Ïðàâåðöå àáñòàëÿâàííå äëÿ ïîøóêó iìàâåðíàé ïðû÷ûíû."
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Âû íå ñòâàðûëi àíiÿêiõ ðàçäçåëà¢!"
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Ïîðò ìûøû"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Àäðàñû ïàìÿö³ êàðòû (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Àäìåíà"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Ïîðò ìûøû"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Àïiñàííå"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Àáÿðûöå ôàéë"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Ïðûëàäà-øëþç"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 êíîïêi"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Âûõàä"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr ""
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "Àäìÿíiöü"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "À¢òàïîøóê"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Âûçíà÷ýííå æîðñòêàãà äûñêó"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Ãë. àïiñàííå àáñòàëÿâàííÿ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Íàñòðîéêà ìûøû"
+msgid "Information"
+msgstr "Iíôàðìàöûÿ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Iíôàðìàöûÿ"
+msgid "Configure module"
+msgstr "Íàñòðîéêà ìûøû"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Êàëi ëàñêà, ïà÷àêàéöå"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d ñåêóíäà¢"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
@@ -2657,16 +2745,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Àäðàñû ïàìÿö³ êàðòû (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Çìÿíiöü òûï ðàçäçåëó"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2675,11 +2763,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "ôàðìàòàâàííå"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2691,22 +2779,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2812,7 +2900,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2838,10 +2926,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2876,11 +2964,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2921,7 +3009,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2952,24 +3040,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -2978,7 +3054,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -2998,13 +3074,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3038,7 +3114,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3071,7 +3149,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Ó ãýòûì ïóíêöå, âû ïàâ³ííû àáðàöü äçå íà âàøûì æîðñê³ì \n"
"äûñêó óñòàëÿâàöü àïåðàöûéíóþ ñ³ñòýìó Mandrake Linux. Êàë³ äûñê ïóñòû\n"
@@ -3132,7 +3212,7 @@ msgstr ""
" ëžãêà çãóá³öü ñâàå äàäçåíûÿ. Òàìó íå àá³ðàéöå ãýòóþ îïöûþ êàë³ âûíå âåäàåöå "
"øòî ðîá³öå."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3165,7 +3245,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
@@ -3222,7 +3302,7 @@ msgstr ""
"óñòàëÿâàííÿâàøàé\n"
"íîâàé àïåðàöûéíàé ñ³ñòýìû Mandrake Linux."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3240,12 +3320,12 @@ msgstr ""
"\n"
"Êàë³ ëàñêà, ïà÷àêàéöå."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3255,7 +3335,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3264,19 +3344,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3293,26 +3373,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3340,7 +3420,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3349,7 +3429,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
@@ -3410,11 +3490,11 @@ msgstr ""
"\"Windows ²ìÿ\" ñ³ìâàë âàøàãà äûñêó ¢ Windows (ïåðøû äûñê ö³\n"
"ðàçäçåë ïàçíà÷àåööà ÿê \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Êàë³ ëàñêà, ïà÷àêàéöå. Ãýòàÿ àïåðàöûÿ àäûìå ïý¢íû ÷àñ."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3422,23 +3502,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3447,11 +3527,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Êàë³ ëàñêà, íàö³ñí³öå \"Óñòà랢êà\" êàë³ íå ìàåööà àí³ÿêàé ïàïÿðýäíÿéâåðñ³³ "
"Mandrake Linux\n"
@@ -3485,23 +3565,28 @@ msgstr ""
"âåëüì³ ñêëàäàíûì³, êàë³ âû íå ìàåöå äîáðûõ âåäࢠó GNU/Linux.\n"
" Òàìó íå àá³ðàéöå ãýòû êëàñ ³íñòàëÿöû³, êàë³ âû íå âåäàåöå òîå, øòî ðîá³öå."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3515,7 +3600,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3528,16 +3613,23 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3567,15 +3659,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3614,8 +3706,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3623,17 +3719,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3699,18 +3785,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3827,7 +3913,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3840,7 +3928,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3852,7 +3940,7 @@ msgstr ""
"áóäóöü\n"
" çí³ø÷àíû ³ ³õ íåìàã÷ûìà áóäçå àäíàâ³öü."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3884,7 +3972,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3899,30 +3987,47 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Íåìàã÷ûìà âûêàðûñòî¢âàöü broadcast áåç äàìåíà NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ïàìûëêà ÷ûòàííÿ ôàéëó %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ïàìûëêà: äëÿ ñòâàðýííÿ íîâûõ ôàéëàâûõ ñiñòýìࢠíå çíàéäçåíû àäïàâåäíûÿ \n"
+"ïðûëàäû. Ïðàâåðöå àáñòàëÿâàííå äëÿ ïîøóêó iìàâåðíàé ïðû÷ûíû."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -3956,61 +4061,61 @@ msgstr ""
"\n"
"Óñž àäíî ïðàöÿãâàöü?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Âû ïàâiííû ìåöü ðàçäçåë swap"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Âûêàðûñòî¢âàöü íåçàíÿòóþ ïðàñòîðó"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Âûêàðûñòî¢âàöü iñíóþ÷û ðàçäçåë"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Íÿìà iñíóþ÷ûõ ðàçäçåëà¢, ÿêiÿ ìîæíà âûêàðûñòàöü"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Âûêàðûñòî¢âàöü ðàçäçåë Windows äëÿ âiðòóàëüíàé ôàéëàâàé ñiñòýìû"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ïàìåðû ÿêîãà ðàçäçåëà âû æàäàåöå çìÿíiöü?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Âûáàð ïàìåðà¢"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Êàðàížâû ðàçäçåë ¢ Má: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ïàìåð swap ðàçäçåëó ¢ Má:"
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Âûêàðûñòî¢âàöü íåçàíÿòóþ ïðàñòîðó íà ðàçäçåëå Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Ïàìåðû ÿêîãà ðàçäçåëà âû æàäàåöå çìÿíiöü?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Âûëi÷ýííå ìåæࢠôàéëàâàé ñiñòýìû Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4019,7 +4124,7 @@ msgstr ""
"Ó ïðàãðàìû çìåíû ïàìåðࢠðàçäçåëà FAT íå àòðûìàëàñÿ\n"
"àïðàöàâàöü Âàø ðàçäçåë, ïàìûëêà: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4028,7 +4133,7 @@ msgstr ""
"Âàø ðàçäçåë ç Windows çàíàäòà ôðàãìåíòàâàíû. \n"
"Ðýêàìåíäóåì ñïà÷àòêó çàïóñöiöü ïðàãðàìó ``defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4049,21 +4154,21 @@ msgstr ""
"äàäçåíûõ i òîëüêi ïîòûì çíî¢ âÿðíiöåñÿ äà ïðàãðàìû ¢ñòàëÿâàííÿ.\n"
"Êàëi ïàäðûõòàâàëiñÿ, íàöiñíiöå Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "ßêóþ ïðàñòîðó çàõàâàöü äëÿ Windows?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "Ðàçäçåë %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "À¢òàçìÿíåííå ïàìåðࢠíå àòðûìàëàñÿ äëÿ ðàçäçåëó FAT %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4071,33 +4176,33 @@ msgstr ""
"Íå çíîéäçåíà ðàçäçåëࢠFAT äëÿ çìÿíåííÿ ïàìåðࢠàëüáî âûêàðûñòàííÿ\n"
"¢ ÿêàñöi âiðòóàëüíàé ôàéëàâàé ñiñòýìû (öi íåäàñòàòêîâà ïðàñòîðû íà äûñêó)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Ñöžðöi äàäçåíûÿ íà ¢ñiì äûñêó"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Âûäàëiöü Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Íà ÿêi ç ìàþ÷ûõñÿ æîðñòêiõ äûñêࢠÂû æàäàåöå ¢ñòàëÿâàöü Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Óñå iñíóþ÷ûÿ ðàçäçåëû íà äûñêó %s i äàäçåíûÿ íà iõ áóäóöü ñòðà÷àíû"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Âûêàðûñòî¢âàöü iñíóþ÷û ðàçäçåë"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Âûêàðûñòî¢âàöü fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4106,30 +4211,30 @@ msgstr ""
"Âû ìîæàöå öÿïåð ðàçáiöü âàø äûñê %s\n"
"Ïà çàêàí÷ýííi íå çàáóäçüöåñÿ çàõàâàöü çìÿíåííi, ñêàðûñòà¢øû `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Âûêàðûñòî¢âàöü íåçàíÿòóþ ïðàñòîðó íà ðàçäçåëå Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Äàäàöü ðàçäçåë íåìàã÷ûìà"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ìàéñòàð ïàäðûõòî¢êi ðàçäçåëࢠDrakX çíàéøî¢ íàñòóïíûÿ âàðûÿíòû:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ïàäðûõòî¢êà ðàçäåëࢠíå ¢äàëàñÿ: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Äàëó÷ýííå äà ñåòêi"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Àäëó÷ýííå àä ñåòêi"
@@ -4141,12 +4246,12 @@ msgstr ""
"Óçíiêëà ïàìûëêà, ÿêóþ íå àòðûìë³âàåööà êàðýêòíà àïðàöàâàöü,\n"
"òàìó ïðàöÿãâàéöå íà ñâàþ ðûçûêó."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4158,12 +4263,12 @@ msgstr ""
"Ïðàâåðöå cdrom íà âàøûì êàìïóòàðû, âûêàðûñòî¢âàþ÷û\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "СарЎэчМа запрашаеЌ у %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Äûñêàâîä íåäàñòóïíû"
@@ -4194,70 +4299,70 @@ msgstr "Êëàñ Óñòàëÿâàííÿ"
msgid "Please choose one of the following classes of installation:"
msgstr "Êàëi ëàñêà, àáÿðûöå àäçií ç êëàñࢠóñòàëÿâàííÿ:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Àãóëüíû ïàìåð: %d / %d Má"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Äðýííû ïàêåò"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Iìÿ: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Âåðñiÿ: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Ïàìåð: %d Ká\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Çíà÷íàñöü: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Âû íå ìîæàöå âûáðàöü ãýòû ïàêåò, òàìó ÿê íå õàïàå ìåñöà äëÿ ÿãî ¢ñòàëÿâàííÿ"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü äàäàíû äà ñiñòýìû"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü âûäàëåíû"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Âû íå ìîæàöå âûëó÷àöü ³ àäìÿíÿöü âûëó÷ýííå ãýòàãà ïàêåòó"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ãýòà àáàâÿçêîâû ïàêåò, ÿãî âûëó÷ýííå íåëüãà àäìÿíiöü"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Âû íå ìîæàöå àäìÿíiöü âûëó÷ýííå ãýòàãà ïàêåòó. ší óæî ¢ñòàëÿâàíû"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4265,78 +4370,78 @@ msgstr ""
"Ãýòû ïàêåò ïàâiíåí áûöü àáíî¢ëåíû\n"
"Âû ¢ïý¢íåíû, øòî õî÷àöå àäìÿíiöü âûëó÷ýííå?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Âû íå ìîæàöå àäìÿíiöü âûëó÷ýííå ãýòàãà ïàêåòó. ßãî ïàòðýáíà àáíàâiöü"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Óñòà랢êà"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Çàõàâàííå íà äûñêåòó"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
#, fuzzy
msgid "Updating package selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Minimal install"
msgstr "Âûäàëiöü ç ñiñòýìû"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Óñòà랢âàåì"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "×àêàåööà"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Çàñòàëîñÿ ÷àñó "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d ïàêåòà¢"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ïðûíÿöü"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Àäêàçàöü"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4352,17 +4457,17 @@ msgstr ""
"Êàëi âû íå ìàåöå ÿãî, íàöiñíiöå Àäìÿíiöü, êàá àäìÿíiöü óñòàëÿâàííå ç ãýòàãà "
"Cd."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Óñž ðî¢íà ïðàöÿãâàöü?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
@@ -4537,7 +4642,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Êëàâiÿòóðà"
@@ -4590,11 +4695,11 @@ msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
msgid "Please choose the type of your mouse."
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ïîðò ìûøû"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Êàëi ëàñêà, ïàçíà÷öå ïîñëÿäî¢íû ïîðò, äà ÿêîãà ïàäêëþ÷àíà âàøàÿ ìûø."
@@ -4626,115 +4731,89 @@ msgstr "Íàñòðîéêà IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "íÿìà äàñòóïíûõ ðàçäçåëà¢"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Àáÿðûöå ïóíêòû ìàíöiðàâàííÿ"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Òàáëiöà ðàçäçåëࢠíå ÷ûòàåööà, ÿíà çàíàäòà ñàïñàâàíàÿ äëÿ ìåíÿ :(\n"
-"Ïàñïðàáóþ iñöi äàëåé i áóäó ïðàïóñêàöü äðýííûÿ ðàçäçåëû (Óñå ÄÀÄÅÇÅÍÛß\n"
-"áóäóöü ñòðà÷àíû!). Iíøàå ðàøýííå íå äàçâîëiöü DrakX çìÿíiöü òàáëiöó "
-"ðàçäçåëà¢.\n"
-"(ïàìûëêà ¢ %s)\n"
-"\n"
-"Öi æàäàåöå ñòðàöiöü óñå ðàçäçåëû?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake íå çìîã ïðàâiëüíà ïðà÷ûòàöü òàáëiöó ðàäçåëà¢.\n"
-"Ïðàöÿãâàéöå òîëüêi íà ñâàþ ðûçûêó!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Êàðàížâû ðàçäçåë íå çíîéäçåíû"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Êàðàížâû ðàçäçåë"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "ßêi ðàäçåë êàðàížâû (/) äëÿ âàøàé ñiñòýìû?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Êàá ìàäûôiêàöûÿ òàáëiöû ðàçäçåëࢠçäåéñíiëàñÿ, ïàòðýáíà ïåðàçàãðóçêà."
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Âûáàð ðàçäçåëࢠäëÿ ôàðìàòàâàííÿ"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Ïðàâåðûöü íà íàÿ¢íàñöü äðýííûõ áëîêà¢?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Ôàðìàòàâàííÿ ðàçäçåëà¢"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ñòâàðýííå i ôàðìàòàâàííå ôàéëà %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Íå õàïàå ìåñöà ¢ áóôåðû ïàäêà÷êi (swap) äëÿ ¢ñòàëÿâàííÿ, ïàâÿëi÷öå ÿãî."
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ïðàãëÿä äàñòóïíûõ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Ïðàãëÿä äàñòóïíûõ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Âû íå ìîæàöå àäìÿíiöü âûëó÷ýííå ãýòàãà ïàêåòó. ší óæî ¢ñòàëÿâàíû"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Ïîøóê ïàêåòࢠäëÿ àáíà¢ëåííÿ"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4742,65 +4821,65 @@ msgid ""
msgstr ""
"Âàøà ñiñòýìà íå ìàå äàñòàêîâà ìåñöà äëÿ ¢ñòàëÿâàííÿ öi àáíà¢ëåííÿ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
#, fuzzy
msgid "Load from floppy"
msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Loading from floppy"
msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
#, fuzzy
msgid "Package selection"
msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Çàõàâàííå íà äûñêåòó"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Âûáàð ïàêåòࢠäëÿ óñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "×àêàéöå"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4810,16 +4889,16 @@ msgstr ""
"Êàëi âû íå ìàåöå àíi âîäíàãà ç ãýòûõ CD äûñêà¢, íàöiñíiöå Àäìÿíiöü.\n"
"Êàëi íåêàòîðûõ ç CD äûñêࢠíå ìàåöå, àäìÿíiöå iõ âûäçÿëåííå i íàöiñíiöå Îê."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ïàçíà÷àíû \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -4828,21 +4907,21 @@ msgstr ""
"Óñòàëÿâàííå ïàêåòó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4920,7 +4999,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4932,169 +5011,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ñóâÿçü ç ëþðàì äëÿ àòðûìàííÿ ñïiñó äàñòóïíûõ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Âûáàð ëþñòðà äëÿ àòðûìàííÿ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ñóâÿçü ç ëþðàì äëÿ àòðûìàííÿ ñïiñó äàñòóïíûõ ïàêåòà¢"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "ßêi âàø ÷àñàâû ïîÿñ?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Âàø ñiñòýìíû ãàäçiííiê óñòàëÿâàíû íà GMT?"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
#, fuzzy
msgid "NTP Server"
msgstr "NIS ñåðâåð:"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Àääàëåíû ñåðâåð CUPS"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
#, fuzzy
msgid "No printer"
msgstr "Iìÿ äðóêàðêi"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi žñöü ó âàñ iíøû?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
#, fuzzy
msgid "Mouse"
msgstr "Ïîðò ìûøû"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ïðûíòýð"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
#, fuzzy
msgid "ISDN card"
msgstr "Óíóòðàíàÿ ISDN êàðòà"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
#, fuzzy
msgid "Sound card"
msgstr "Ñòàíäàðòíû"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
#, fuzzy
msgid "NIS"
msgstr "Âûêàðûñòî¢âàöü NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
#, fuzzy
msgid "Local files"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ïàðîëü äëÿ root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Íÿìà ïàðîëþ"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ãýòû ïàðîëü çàíàäòà ïðîñòû (ÿãî äà¢æûíÿ ïàâiííà áûöü íå ìåíåé çà %d ëiòàðà¢)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
#, fuzzy
msgid "LDAP Server"
msgstr "ñåðâåð"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
#, fuzzy
msgid "Authentication NIS"
msgstr "À¢òýíòûôiêàöûÿ NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS ñåðâåð:"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5110,22 +5189,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Iìÿ äàìåíó"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
#, fuzzy
msgid "Domain Admin Password"
msgstr "Ïàäöâåðäçiöü ïàðîëü"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5152,19 +5231,19 @@ msgstr ""
"Êàëi æàäàåöå ñòâàðûöü çàãðóçà÷íû äûñê çàðàç, óñòà¢öå äûñêåòó ¢ ïåðøû\n"
"äûñêàâîä i íàöiñíiöå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ïåðøû äûñêàâîä"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Äðóãi äûñêàâîä"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ïðàïóñöiöü"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5190,7 +5269,7 @@ msgstr ""
"Æàäàåöå ñòâàðûöü çàãðóçà÷íû äûñê çàðàç?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5199,28 +5278,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Âûáà÷àéöå, àëå äûñêàâîä íåäàñòóïíû"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Àáÿðûöå äûñêàâîä, ó ÿêiì áóäçå ñòâàðàööà çàãðóçà÷íàÿ äûñêåòà"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Ñòâàðýííå çàãðóçà÷íàé äûñêåòû"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Ïàäðûõòî¢êà çàãðóç÷ûêà"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5228,11 +5307,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Âû æàäàåöå âûêàðûñòî¢âàöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5240,16 +5319,16 @@ msgstr ""
"Ïàìûëêà ¢ñòàëÿâàííÿ àboot, \n"
"ñïðàáàâàöü óñòà랢âàöü, íåãëåäçÿ÷û íà ìàã÷ûìàñöü ïàðóøýííÿ ïåðøàãà ðàçäåëó?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
#, fuzzy
msgid "Installing bootloader"
msgstr "Óñòàëÿâàííå çàãðóç÷ûêó"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ïðàöýñ óñòàëÿâàííÿ çàãðóç÷ûêà íå àòðûìà¢ñÿ. Óçíiêëà íàñòóïíàÿ ïàìûëêà:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5260,17 +5339,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5279,7 +5358,7 @@ msgstr ""
"Íåêàòîðûÿ êðîêi íå çàâåðøàíû.\n"
"Âû ñàïðà¢äû æàäàåöå âûéñöi çàðàç?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5311,16 +5390,16 @@ msgstr ""
"Iíôàðìàöûÿ ïà íàñòðîéêå âàøàé ñiñòýìû žñòü ¢ ïàñëÿ-¢ñòàëžâà÷íàé\n"
"ãëàâå âàøàãà Äàïàìîæíiêà Êàðûñòàëüíiêó ç Àôiöûéíàãà Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5329,16 +5408,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "À¢òàìàòû÷íû"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
#, fuzzy
msgid "Replay"
msgstr "Ïåðàçàãðóçiöü"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
@@ -5348,7 +5427,8 @@ msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
msgid "Mandrake Linux Installation %s"
msgstr "Óñòàëÿâàííå Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5367,22 +5447,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Àáÿðûöå äçåÿííå"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Òýêñò"
@@ -5450,387 +5530,387 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "×åøñêi (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Íÿìåöêi"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Iñïàíñêi"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ôiíñêi"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ôðàíöóçñêi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Íàðâåæñêi"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Ïîëüñêi"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ðóñêi"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Øâåöêi"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK êëàâiÿòóðà"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US êëàâiÿòóðà"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
#, fuzzy
msgid "Albanian"
msgstr "Iðàíñêi"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Àðìÿíñêi (ñòàðû)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Àðìÿíñêi (typewriter)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Àðìÿíñêi (ôàíåòû÷íû)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Àçåðáàéäæàíñê³ (latin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Áåëüãiéñêi"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "Òàáëiöà"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Àðìÿíñêi (ôàíåòû÷íû)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áàëãàðñêi"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Áðàçiëüñêi (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Ýñòîíñêi"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Áåëàðóñê³"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Øâåéöàðñêi (Íÿìåöêàÿ ðàñêëàäêà)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Øâåéöàðñêi (Ôðàíöóçñêàÿ ðàñêëàäêà)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "×åøñêi (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Íÿìåöêi (íÿìà çàáëàêiðàâàíûõ êëàâiø)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Äàöêi"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íàðâåæñêi)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Ýñòîíñêi"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ãðóçiíñêi (\"Ðóñêàÿ\" ðàñêëàäêà)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ãðóçiíñêi (\"Ëàöiíñêàÿ\" ðàñêëàäêà)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Ãðý÷àñêi"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Ìàäüÿðñêi"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Õàðâàöêi"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "I¢ðûò"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "I¢ðûò (ôàíåòû÷íû)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iðàíñêi"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Iñëàíäñêi"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Iòàëüÿíñêi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "ßïîíñêi 106 êëàâiø"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Korean keyboard"
msgstr "UK êëàâiÿòóðà"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Ëàöiíà-Àìåðûêàíñêi"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Ðàçìåðêàâàííå"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Ëiòî¢ñêi AZERTY (ñòàðû)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Ëiòî¢ñêi AZERTY (íîâû)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëiòî¢ñêi \"íóìàð ðàäêà\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëiòî¢ñêi \"ôàíåòû÷íû\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
#, fuzzy
msgid "Latvian"
msgstr "Ðàçìåðêàâàííå"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Àçåðáàéäæàíñê³ (ê³ðûë³öà)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Ãàëàíäñêi"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Ïîëüñêi (ñòàíäàðòíàÿ ðàñêëàäêà)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Ïîëüñêi (qwertz ðàñêëàäêà)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Ïàðòóãàëüñêi"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Êàíàäñêi (Êâåáýê)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Ðóñêi (ß-Â-Å-Ð-Ò-È)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Ðóñêi (ß-Â-Å-Ð-Ò-È)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ðóñêi (ß-Â-Å-Ð-Ò-È)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Ñëàâåíñêi"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Ñëàâàöêi (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Ñëàâàöêi (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Àçåðáàéäæàíñê³ (ê³ðûë³öà)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
#, fuzzy
msgid "Tamil (Unicode)"
msgstr "i18n (äîáðà)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Òàéñêàÿ êëàâiÿòóðà"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Òàéñêàÿ êëàâiÿòóðà"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Òóðýöêi (òðàäûöûžíàÿ \"F\" ìàäýëü)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Òóðýöêi (ñó÷àñíàÿ \"Q\" ìàäýëü)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óêðàiíñêi"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US êëàâiÿòóðà (ìiæíàðîäíàÿ)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âüåòíàìñêi \"íóìàð ðàäêà\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Àçåðáàéäæàíñê³ (latin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -5889,11 +5969,11 @@ msgstr "Çâû÷àéíàÿ ìûø ç 2 êíîïêàì³"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5901,119 +5981,128 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
#, fuzzy
msgid "1 button"
msgstr "2 êíîïêi"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Çâû÷àéíàÿ ìûø ç 2 êíîïêàì³"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Ç êîëàì"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "ïàñëÿäî¢íàÿ"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Çâû÷àéíàÿ ìûø ç 3 êíîïêàì³"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (ïàñëÿäî¢íàÿ, ñòàðû òûï C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
#, fuzzy
msgid "busmouse"
msgstr "Íÿìà ìûøû"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 êíîïêi"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 êíîïêi"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "íÿìà"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Íÿìà ìûøû"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
#, fuzzy
msgid "To activate the mouse,"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "Ðóøöå êîëàì ìûøû!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:159
#, fuzzy
msgid "Finish"
msgstr "Ôiíñêi"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Äàëåé ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Ãýòà äàêëàäíà?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Iíôàðìàöûÿ"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Ðàçãàðíóöü äðýâà"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Çãàðíóöü äðýâà"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Ïåðàêëþ÷ýííå ïàìiæ óïàðàäêàâàííåì ïà ãðóïå i àñîáêàõ"
@@ -6049,6 +6138,69 @@ msgstr "âûêàðûñòî¢âàöü pppoe"
msgid "use pptp"
msgstr "âûêàðûñòî¢âàöü pppoe"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "ñåðâåð"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Iìÿ äàìåíó"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ñåðâåð äðóêó"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "ñåðâåð"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ñåòêàâàÿ êàðòà íå çíîéäçåíà"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+#, fuzzy
+msgid "Everything (no firewall)"
+msgstr "¡ñž ñêàíôiãóðàâàíà!"
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Iíøûÿ êðàiíû"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6066,7 +6218,7 @@ msgstr ""
"Íi âîäíû ethernet ñåòêàâû àäàïòàð ó âàøàé ñiñòýìå íå âûçíà÷àíû. Êàëi ëàñêà, "
"ñêàðûñòàéöå êàíôiãóðàöûéíû iíñòðóìýíò."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Ïàçíà÷öå ñåòêàâû iíòýðôåéñ"
@@ -6081,7 +6233,7 @@ msgstr ""
msgid "no network card found"
msgstr "ñåòêàâàÿ êàðòà íå çíîéäçåíà"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Íàñòðîéêà ñåòêi"
@@ -6097,7 +6249,7 @@ msgstr ""
"íàïðûêëàä ``mybox.mylab.myco.com''.\n"
"Âû ìîæàöå òàêñàìà ¢âåñöi IP àäðàñ øëþçó, êàëi ží ó âàñ žñöü."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Iìÿ ìàøûíû"
@@ -6397,14 +6549,14 @@ msgstr "Àáÿðûöå àñíî¢íàãà êàðûñòàëüíiêà:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr "Ýêñïåðò"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
@@ -6564,11 +6716,11 @@ msgstr "À¢òàìàòû÷íû IP"
msgid "Start at boot"
msgstr "Ñòâàðûöü çàãð. äûñê"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6580,43 +6732,55 @@ msgstr ""
"íàïðûêëàä ``mybox.mylab.myco.com''.\n"
"Âû ìîæàöå òàêñàìà ¢âåñöi IP àäðàñ øëþçó, êàëi ží ó âàñ žñöü."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS ñåðâåð"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Ïðûëàäà-øëþç"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Íàñòðîéêà proxy êýøóþ÷ûõ ñåðâåðà¢"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy ïàâiíåí áûöü http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy ïàâiíåí áûöü ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Óâàãà! Çíîéäçåíà ³ñíóþ÷àÿ ñiñòýìà ñåòêàâàé áÿñïåêi (firewall). Âàì ìàã÷ûìà "
+"ñïàòðýá³ööà ñêàðýêòàâàöü ÿå ïàñëÿ ¢ñòàëÿâàííÿ."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
@@ -6730,15 +6894,15 @@ msgstr "Ïàðîëü äëÿ ¢âàõîäó"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ïàìûëêà ìàíöiðàâàííÿ: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Ïàøûðàíû ðàçäçåë íå ïàäòðûìëiâàåööà ãýòàé ïëàòôîðìàé"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6748,21 +6912,21 @@ msgstr ""
"Àäçiíû âûõàä ó òûì, êàá ïåðàìÿñöiöü ïåðøàñíûÿ ðàçäçåëû òàê, êàá äçiðêà iøëà\n"
"àäðàçó çà ïàøûðàíûì (extended) ðàçäçåëàì"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Àäíà¢ëåííå ç ôàéëà %s íå àòðûìàëàñÿ: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Ïàìûëêà çàïiñó ¢ ôàéë %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6805,157 +6969,161 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Àääàëåíû ñåðâåð CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Àääàëåíû ñåðâåð lpd"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Ñåòêàâû ïðûíòýð (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Ñåðâåð äðóêó"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI ïðûíòýðó"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ïàìûëêà çàïiñó ¢ ôàéë %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(ìîäóëü %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ñåðâåðà SMB"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Ïà äàìà¢ëåííþ)"
@@ -6982,12 +7150,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Íàñòðîéêà"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Àääàëåíû ñåðâåð CUPS"
@@ -7018,7 +7186,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr ""
@@ -7027,7 +7195,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ñåðâåðà SMB"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ïîðò"
@@ -7036,13 +7204,130 @@ msgstr "Ïîðò"
msgid "Automatic CUPS configuration"
msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Ïðûíòýð"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü âûäàëåíû"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü âûäàëåíû"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Æàäàåöå ïðàòýñöiðàâàöü äðóê?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Âû æàäàåöå, êàá ãýòàå çëó÷ýííå ñòàðòàâàëà ïðû çàãðóçöû?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Iìÿ äðóêàðêi"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7055,7 +7340,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7064,7 +7349,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7077,7 +7362,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7086,7 +7386,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7097,26 +7397,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7130,50 +7430,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Ñåòêàâû ïðûíòýð (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7181,34 +7481,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI ïðûíòýðó"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Äàñòóïíûÿ ïàêåòû"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7216,7 +7516,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7224,38 +7524,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI ïðûíòýðó"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Íàñòðîéêà"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Îïöûi àääàëåíàãà ïðûíòýðó lpd"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7265,51 +7565,51 @@ msgstr ""
"ïàçíà÷ûöü iìÿ àääàëåíàãà ñåðâåðà i iìÿ ÷àðãi äðóêó,\n"
"ó ÿêóþ àääàëåíû ñåðâåð áóäçå àäïðà¢ëÿöü çàäàííi."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
#, fuzzy
msgid "Remote host name"
msgstr "Àääàëåíû âóçåë"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
#, fuzzy
msgid "Remote printer name"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
#, fuzzy
msgid "Remote host name missing!"
msgstr "Àääàëåíû âóçåë"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Àääàëåíû âóçåë"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Îïöûi ïðûíòýðó SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7322,46 +7622,46 @@ msgstr ""
"ðýñóðñó, ÿêi ñïàëó÷àíû ç âûáðàíûì ïðûíòýðàì, iìÿ êàðûñòàëüíiêó, ïàðîëü i "
"iíôàðìàöûþ àá ïðàöî¢íàé ãðóïå."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Iìÿ ñåðâåðó SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP ñåðâåðà SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Iìÿ äëÿ ðàçìåðêàâàíàãà ðýñóðñó"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Ïðàöî¢íàÿ ãðóïà"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7385,7 +7685,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7394,7 +7694,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7402,11 +7702,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Îïöûi ïðûíòýðó NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7418,44 +7718,44 @@ msgstr ""
"(íå çà¢ñžäû ñóïàäàå ç iìåíåì ó ñåòöû TCP/IP) i iìÿ ÷àðãi äðóêó, ÿêàÿ "
"àäïàâÿäàå àáðàíàìó ïðûíòýðó, à òàêñàìà iìÿ êàðûñòàëüíiêó i ïàðîëü."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Ñåðâåð äðóêó"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Iìÿ ÷àðãi äðóêó"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îïöûi ñîêåòó ïðûíòýðó"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -7466,61 +7766,61 @@ msgstr ""
"Êàá äðóêàâàöü ïðàç ñîêåò äðóêàðêi, âàì íåàáõîäíà çàáÿñïå÷ûöü\n"
"iìÿ ïðûíòýðó i ìàã÷ûìà ÿãî íóìàð ïîðòó."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Iìÿ ïðûíòýðó"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Iìÿ ïðûíòýðó"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI ïðûíòýðó"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Iìÿ äðóêàðêi"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ðàçìåðêàâàííå"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
#, fuzzy
msgid "Reading printer database..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
#, fuzzy
msgid "Preparing printer database..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7535,28 +7835,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Ãýòà äàêëàäíà?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
#, fuzzy
msgid "Printer model selection"
msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
#, fuzzy
msgid "Which printer model do you have?"
msgstr "ßêi òûï äðóêàðêi âû ìàåöå?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -7565,18 +7865,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7586,12 +7886,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7599,20 +7899,46 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7622,34 +7948,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Æàäàåöå ïðàòýñöiðàâàöü äðóê?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7657,45 +7983,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Òàê, íàäðóêàâàöü àáåäçâå ñòàðîíêi òýêñòó"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Ïðûíòýð"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Ñòàíäàðòíû"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7711,7 +8037,7 @@ msgstr ""
"\n"
"ší ïðàöóå íàðìàëüíà?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7721,16 +8047,16 @@ msgstr ""
"Ïåðàä òûì, ÿê ïðûíòýð çàïðàöóå, ìîæà ïðàéñöi ïý¢íû ÷àñ.\n"
"ší ïðàöóå íàðìàëüíà?"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Iìÿ äðóêàðêi"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7739,15 +8065,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7756,7 +8082,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7764,41 +8090,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7808,7 +8134,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7817,42 +8143,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Ïîðò ìûøû"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Îïöûi ïðûíòýðó"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7866,7 +8192,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7879,19 +8205,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Reading printer data..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7901,51 +8227,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7953,62 +8279,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Iìÿ äðóêàðêi"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
#, fuzzy
msgid "Refreshing printer data..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Íàñòðîéêà ïðûíòýðó"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Íàñòðîéêà ñåòêi"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ìàíiòîð ïàêóëü íå íàñòðîåíû"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8016,12 +8342,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Íàñòðîéêà ñåòêi"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8031,34 +8357,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Âûñîêi"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Ïàðàíàiäàëüíû"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8073,12 +8399,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8092,81 +8418,76 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Âûáàð òûïó çëó÷ýííÿ ïðûíòýðó"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Íàñòðîéêà ïðûíòýðó"
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Îïöûi ïðûíòýðó"
-#: ../../printerdrake.pm_.c:2778
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
-msgid "Preparing PrinterDrake..."
+msgid "Preparing Printerdrake..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Íàñòðîéêà ïðûíòýðó"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Æàäàåöå íàñòðîiöü ïðûíòýð?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Ïðûíòýð"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Òóò çìÿø÷àþööà ÷ýðãi äðóêó.\n"
"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8176,138 +8497,140 @@ msgstr ""
"Òóò çìÿø÷àþööà ÷ýðãi äðóêó.\n"
"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Íàñòðîéêà ñåòêi"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Çâû÷àéíû"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
@@ -8708,7 +9031,7 @@ msgstr "öiêàâà"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8768,193 +9091,228 @@ msgstr "Ñòàðòàâàå ìåíþ"
msgid "Stop"
msgstr "Ñåêòàð"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Ïàäêëþ÷ýííå"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
+msgid "Get the most from the Internet"
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ìóëüòûìåäûÿ - Ãðàô³êà"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "ðàñïðàöî¢ø÷ûê"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Çàáàâû"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Iìÿ ñåðâåðó SMB"
+msgid "Development simplified"
+msgstr "ðàñïðàöî¢ø÷ûê"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Çàáàâû"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ýêñïåðò"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
+
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "àáàâÿçêîâà"
+msgid "Become a MandrakeExpert"
+msgstr "ýêñïåðò"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "ýêñïåðò"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
#, fuzzy
msgid "Installing packages..."
msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Êàëi ëàñêà, âûéäçiöå, à ïîòûì ñêàðûñòàéöå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Êàëi ëàñêà, ïåðàéäçiöå ¢ %s äëÿ àêòûâàöûi çìÿíåííÿ¢"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Òàáëiöà ðàçäçåëࢠíå ÷ûòàåööà, ÿíà çàíàäòà ñàïñàâàíà äëÿ ìåíÿ :(\n"
-"Ïàñïðàáóþ iñöi äàëåé i áóäó ïðàïóñêàöü äðýííûÿ ðàçäçåëû"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -8998,12 +9356,13 @@ msgstr "Äàäàöü êàðûñòàëüíiêà"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
@@ -9162,8 +9521,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Ïðûì³öå âiíøàâàííi!"
@@ -9188,27 +9547,31 @@ msgstr "Äàäàöü êàðûñòàëüíiêà"
msgid "Remove the last item"
msgstr "Ôàðìàòàâàííå âiðòóàëüíàãà ðàçäçåëó %s"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9216,7 +9579,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9224,13 +9587,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9239,16 +9609,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Íÿìà ïàðîëþ"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9259,63 +9654,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9323,803 +9723,926 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ïàìûëêà ÷ûòàííÿ ôàéëó %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Âûäàëiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "Íÿìà ïàðîëþ"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Êàëi ëàñêà, àáÿðûöå òûï êëàâiÿòóðû."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Àáÿðûöå ôàéë"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Ñåòêà:"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Òûï: "
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "×àêàéöå"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Îïöûi ìîäóëþ:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
#, fuzzy
msgid "across Network"
msgstr "Ñåòêà:"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
#, fuzzy
msgid "on Tape Device"
msgstr "Ïîðò ïðûíòýðó"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Ìûø: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îïöûi"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
#, fuzzy
msgid "\t-Tape \n"
msgstr "Òûï: "
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Âûáàð òûïó çëó÷ýííÿ ïðûíòýðó"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "²íøûÿ"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Âûäàëiöü ÷àðãó äðóêó"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Àäíà¢ëåííå ç äûñêåòû"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Ïåðàêàíôiãóðàâàöü ëàêàëüíóþ ñåòêó"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Iìÿ ìàøûíû"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Ïàðîëü"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Iìÿ ìàøûíû"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Àäíà¢ëåííå ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Ïà âûáàðó"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü äàäàíû äà ñiñòýìû"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Çàõàâàííå ¢ ôàéë"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íàñòðîéêà"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Çàêàí÷ýííå íàñòðîéêi"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10151,7 +10674,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10160,7 +10683,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10201,45 +10724,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10256,7 +10779,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10296,7 +10819,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10307,7 +10830,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10320,7 +10843,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10401,9 +10924,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Êàíñîëüíûÿ ³íñòðóìåíòàëüíûÿ ñðîäê³"
@@ -10456,26 +10979,26 @@ msgstr "Âûêàðûñòî¢âàöü DiskDrake"
msgid "Configuration Wizards"
msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Ïàêåò"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Êàëi ëàñêà, ïà÷àêàéöå"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10487,21 +11010,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Ïîðò"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
@@ -10970,7 +11493,7 @@ msgstr "Êðîïêà ìàíöiðàâàííÿ"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Âûáàð ðàçäçåëࢠäëÿ ôàðìàòàâàííÿ"
#: ../../standalone/drakfont_.c:918
@@ -11051,19 +11574,19 @@ msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
msgid "Post Uninstall"
msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç ìàã÷ûìà"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11071,35 +11594,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
#, fuzzy
msgid "disable"
msgstr "Òàáëiöà"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
#, fuzzy
msgid "reconfigure"
msgstr "Íàñòðîéêà X Window"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "Disabling servers..."
msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç çàáàðîíåíà"
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç çàáàðîíåíà"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11107,21 +11630,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
#, fuzzy
msgid "enable"
msgstr "Òàáëiöà"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç ìàã÷ûìà"
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -11138,21 +11661,21 @@ msgstr ""
"\n"
"Âû æàäàåöå óñòàëÿâàöü ñóìåñíû äîñòóï äà Internet?"
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11160,11 +11683,11 @@ msgstr ""
"Íi âîäíû ethernet ñåòêàâû àäàïòàð ó âàøàé ñiñòýìå íå âûçíà÷àíû. Êàëi ëàñêà, "
"ñêàðûñòàéöå êàíôiãóðàöûéíû iíñòðóìýíò."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11174,7 +11697,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11182,12 +11705,12 @@ msgstr ""
"Êàëi ëàñêà, àáÿðûöå ñåòêàâû àäàïòàð, ÿê³ áóäçå âûêàðûñòàíû äëÿ äàëó÷ýííÿ äà "
"âàøàé ëàêàëüíàé ñåòêi."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Ìàíiòîð ïàêóëü íå íàñòðîåíû"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11197,17 +11720,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11218,7 +11741,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11230,55 +11753,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ñåðâåðà SMB"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ïàòýíöûéíû àäðàñ ËÂÑ êàíôëiêòóå ç áÿãó÷àé êàíôiãóðàöûÿé %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Óâàãà! Çíîéäçåíà ³ñíóþ÷àÿ ñiñòýìà ñåòêàâàé áÿñïåêi (firewall). Âàì ìàã÷ûìà "
-"ñïàòðýá³ööà ñêàðýêòàâàöü ÿå ïàñëÿ ¢ñòàëÿâàííÿ."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
#, fuzzy
msgid "Configuring..."
msgstr "Íàñòðîéêà IDE"
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Êàíô³ãóðàöûÿ ñöýíàðà¢, óñòàëÿâàííå ÏÇ, çàïóñê ñëóæáà¢..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Ïðàáëåìû ç óñòàëÿâàííåì ïàêåòó %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11289,25 +11800,25 @@ msgstr ""
"ç ³íøûì³ êàìï'þòýðàì³ ¢ âàøàé ËÂÑ, êàðûñòàþ÷ûñÿ à¢òàìàòû÷íûì\n"
"êàíô³ãóðàâàííåì (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç ìàã÷ûìà"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Iíòýðíýò çëó÷ýííå i êàíôiãóðàöûÿ"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11317,6 +11828,158 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ðàçìåðêàâàííå"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Ïàìåðû ýêðàíó"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Àáÿðûöå äçåÿííå"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Iìÿ äëÿ ðàçìåðêàâàíàãà ðýñóðñó"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Âûõàä"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Íàñòðîéêà ñëóæáà¢"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Âiðòóàëüíàÿ ôàéëàâàÿ ñiñòýìà (loopback)"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "ïðûëàäà"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Àáÿðûöå ìàíiòîð"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Çëó÷ýííå ïðûíòýðó"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "URI ïðûíòýðó"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11409,11 +12072,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -11495,7 +12158,7 @@ msgstr "Íåìàã÷ûìà çàïóñö³öü live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr ""
@@ -11672,7 +12335,7 @@ msgstr "ïðûëàäà"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -11694,19 +12357,19 @@ msgstr "Íàñòðîéêà"
msgid "Please enter your email address below "
msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ýìóëÿâàöü òðýöþþ êíîïêó?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
@@ -11720,34 +12383,45 @@ msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
msgid "Test ports"
msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Æàäàåöå íàñòðîiöü ïðûíòýð?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Àáÿðûöå âiäýàêàðòó"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Çàãðóçà÷íàÿ ïðûëàäà"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11755,7 +12429,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11763,43 +12437,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
-
-#: ../../standalone/tinyfirewall_.c:43
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Âûáàð ìîâû"
@@ -11874,169 +12523,7 @@ msgstr "Óñòàëÿâàííå ñiñòýìû"
msgid "Exit install"
msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Êàíôiãóðàöûÿ ñåòêi"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12179,6 +12666,11 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "ðàñïðàöî¢ø÷ûê"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12295,102 +12787,25 @@ msgstr "Ìóëüòûìåäûÿ - Ñòâàðýííå CD"
msgid "Scientific Workstation"
msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (íå ïðàöóå ïðû ñòàðûõ âåðñiÿõ BIOS)"
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Ãýòû óçðîâåíü íåàáõîäíà âûêàðûñòî¢âàöü ç àñöÿðîãàé. Ñiñòýìà áóäçå "
-#~ "ïðàñöåé\n"
-#~ "ó êàðûñòàííi, àëå i áîëüø ÷óòíàé: ãýòû óçðîâåíü áÿñïåêi íåëüãà "
-#~ "âûêàðûñòî¢âàöü\n"
-#~ "íà ìàøûíàõ, ÿêiÿ äàëó÷àíû äà ñåòêi öi äà Internet. Óâàõîä íå àáàðîíåíû "
-#~ "ïàðîëåì."
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Âû íå ñòâàðûëi àíiÿêiõ ðàçäçåëà¢!"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Íà ãýòàì óçðî¢íå áÿñïåêi ìàã÷ûìà âûêàðûñòàííå ñiñòýìû ¢ ÿêàñöi\n"
-#~ "ñåðâåðó. Óçðîâåíü áÿñïåêi äàñòàòêîâà âûñîêi äëÿ ðàáîòû\n"
-#~ "ñåðâåðó, ÿêi äàïóñêàå çëó÷ýííi ñà øìàòëiêiìi êëiåíòàìi."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Îïöûi"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "êó÷àðàâû"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Êàëi ëàñêà, àáÿðûöå òûï êëàâiÿòóðû."
+#~ "DiskDrake íå çìîã ïðàâiëüíà ïðà÷ûòàöü òàáëiöó ðàäçåëà¢.\n"
+#~ "Ïðàöÿãâàéöå òîëüêi íà ñâàþ ðûçûêó!"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Proxy ïàâiíåí áûöü ftp://..."
-
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Âûäàëiöü Windows(TM)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Òàáëiöà"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NIS ñåðâåð:"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Àääàëåíû ïðûíòýð"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Óñòàëÿâàííå ïàêåòó %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Óñòàëÿâàííå ïàêåòó %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Óñòàëÿâàííå ïàêåòó %s"
-
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Òàáëiöà ðàçäçåëࢠíå ÷ûòàåööà, ÿíà çàíàäòà ñàïñàâàíà äëÿ ìåíÿ :(\n"
+#~ "Ïàñïðàáóþ iñöi äàëåé i áóäó ïðàïóñêàöü äðýííûÿ ðàçäçåëû"
#~ msgid "Choose the tool you want to use"
#~ msgstr "Àáÿðûöå iíñòðóìåíò, ÿêi æàäàåöå ñêàðûñòàöü"
@@ -12465,9 +12880,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ msgid "Select a graphics card"
#~ msgstr "Àáÿðûöå âiäýàêàðòó"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Ïàïÿðýäæàííå: òýñöiðàâàííå íà ãýòàé âiäýàêàðöå íåáÿñïå÷íà"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Ñòàíäàðòíû VGA, 640x480 ïðû 60 Hz"
@@ -13892,9 +14304,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ "Óñòà¢öå äûñêåòó äëÿ çàïiñó çàãðóç÷ûêó ç HTP\n"
#~ "(óñå äàäçåíûÿ íà ãýòàé äûñêåöå áóäóöü çíiø÷àíû)"
-#~ msgid "Everything configured!"
-#~ msgstr "¡ñž ñêàíôiãóðàâàíà!"
-
#~ msgid "Everything has been configured.\n"
#~ msgstr "Óñž ñêàíôiãóðàâàíà.\n"
@@ -14180,9 +14589,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ "Ïàäûõîäçÿ÷ûÿ ðýæûìû íå çíîéäçåíû.\n"
#~ "Ïàñïðàáóéöå âûáðàöü iíøóþ âiäýàêàðòó öi ìàíiòîð"
-#~ msgid "Other countries"
-#~ msgstr "Iíøûÿ êðàiíû"
-
#~ msgid "Password:"
#~ msgstr "Ïàðîëü:"
@@ -14201,9 +14607,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ msgid "Please submit the following information"
#~ msgstr "Ïðàäñòà¢öå íàñòóïíóþ iíôàðìàöûþ"
-#~ msgid "Reconfigure local network"
-#~ msgstr "Ïåðàêàíôiãóðàâàöü ëàêàëüíóþ ñåòêó"
-
#~ msgid "Regexp"
#~ msgstr "Regexp"
@@ -14558,9 +14961,6 @@ msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#~ msgid "linear"
#~ msgstr "Ëiíåéíà"
-#~ msgid "loopback"
-#~ msgstr "Âiðòóàëüíàÿ ôàéëàâàÿ ñiñòýìà (loopback)"
-
#~ msgid "nfs mount failed"
#~ msgstr "ïàìûëêà ìàíöiðàâàííÿ nfs"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 65fb2b273..2fb864424 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -6,8 +6,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2000-02-28 20:56+0200\n"
"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
@@ -51,45 +51,45 @@ msgstr "32 ÌÁ"
msgid "64 MB or more"
msgstr "64 ÌÁ èëè ïîâå÷å"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Èçáåðåòå X ñúðâúð"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X ñúðâúð"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Èçáåðåòå êàïàöèòåò íà ïàìåòòà íà ãðàôè÷íàòà ñè êàðòà"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Íàñòðîéêà íà XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Êîÿ íàñòðîéêà íà XFree èñêàòå äà èìàòå ?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Èçïîëçâàé ðàçøèðåíèåòî Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Íàñòðîéêà ñàìî íà êàðòà \"%s\" (%s)"
@@ -100,13 +100,13 @@ msgstr "Íàñòðîéêà ñàìî íà êàðòà \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ñ õàðäóåðíî 3D óñêîðåíèå"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
"2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå â XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ñ ÅÊÑÏÅÐÈÌÅÍÒÀËÍO õàðäóåðíî 3D óñêîðåíèå"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
"2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,53 +151,54 @@ msgstr ""
"ÎÒÁÅËÅÆÅÒÅ, ×Å ÒÎÂÀ Å ÅÊÑÏÅÐÈÌÅÍÒÀËÍÀ ÏÎÄÄÐÚÆÊÀ È ÊÎÌÏÞÒÚÐÚÒ ÂÈ ÌÎÆÅ ÄÀ "
"ÇÀÁÈÅ."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (èíñòàëàöèÿ ãðàôè÷åí äðàéâåð)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Êëèåíòñêà"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Ãðàôè÷íà êàðòà"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Ìîíèòîð"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îïöèè"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Èçõîä"
@@ -214,28 +215,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Èçáåðåòå ìîíèòîð"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Îáù"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Âúðíè"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -259,11 +260,11 @@ msgstr ""
"ïîâðåäèòå ìîíèòîðà ñè.\n"
" Àêî èìàòå íÿêàêâè ñúìíåíèÿ, èçáåðåòå êîíñåðâàòèâíà íàñòðîéêà."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Õîðèçîíòàëíà ñêîðîñò íà âúçñòàíîâÿâàíå"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Âåðòèêàëíà ñêîðîñò íà âúçñòàíîâÿâàíå"
@@ -300,36 +301,42 @@ msgstr "Èçáåðåòå ðàçäåëèòåëíà ñïîñîáíîñò è äúëáî÷èíà íà öâåòîâåòå"
msgid "Graphics card: %s"
msgstr "Ãðàôè÷íà êàðòà: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Îòêàç"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Ïðîâåðêà íà íàñòðîéêàòà"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Èñêàòå ëè äà òåñòâàòå íàñòðîéêèòå?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Ïðîâåðêà íà íàñòðîéêàòà"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Âíèìàíèå: òåñòâàíåòî íà òàçè ãðàôè÷íà êàðòà ìîæå äà \"çàìðàçè\" êîìïþòúðà âè"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -465,26 +472,22 @@ msgstr "Ñòàðòèðàíå îò DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Îïöèè íà çàðåæäàùàòà ïðîãðàìà"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Èçïîëçâàíà çàðåæäàùàòà ïðîãðàìà"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Bootloader èíñòàëàöèÿ"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ñòàðòèðàùî óñòðîéñòâî"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (íå ðàáîòè íà ñòàðè BIOS-è)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Êîìïàêòåí"
@@ -501,16 +504,17 @@ msgstr "Âèäåî ðåæèì"
msgid "Delay before booting default image"
msgstr "Çàáàâÿíå ïðåäè ñòàðòèðàíåòî íà default äÿëà"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ïàðîëà"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Ïàðîëà (îòíîâî)"
@@ -544,14 +548,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îïöèÿòà ``Îãðàíè÷è îïöèèòå îò êîìàíäíèÿ ðåä'' å áåçïîëåçíà áåç ïàðîëà"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Ïàðîëèòå íà ñúâïàäàò"
@@ -596,16 +600,16 @@ msgstr ""
"Òîâà ñà ðàçëè÷íèòå çàïèñè.\n"
"Ìîæåòå äà äîáàâèòå îùå èëè äà ïðîìåíèòå ñúùåñòâóâàùèòå."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äîáàâè"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Ãîòîâî"
@@ -617,7 +621,7 @@ msgstr "Ìîäèôèöèðàé"
msgid "Which type of entry do you want to add?"
msgstr "Êàêúâ òèï èíôîðìàöèÿ èñêàòå äà ïðèáàâèòå"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -712,13 +716,13 @@ msgstr "Èìàòå ëè äðóã(è) ?"
msgid "Do you have any %s interfaces?"
msgstr "Èìàòå ëè íÿêàêúâ %s èíòåðôåéñ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íå"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Äà"
@@ -818,39 +822,47 @@ msgstr ""
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr ""
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr ""
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(âå÷å ïðèáàâèõ %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Òàçè ïàðîëà å ïðåêàëåíî ïðîñòà"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Ìîëÿ, çàäàéòå ïîòðåáèòåëñêî èìå"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ïîòðåáèòåëñêîòî èìå ìîæå äà âêëþ÷âà ñàìî ìàëêè áóêâè, íîìåðà, `-' è `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Òîâà ïîòðåáèòåëñêî èìå å âå÷å äîáàâåíî"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Òîâà ïîòðåáèòåëñêî èìå å âå÷å äîáàâåíî"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Äîáàâè ïîòðåáèòåë"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -859,32 +871,32 @@ msgstr ""
"Âúâåäåòå ïîòðåáèòåë\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Ïðèåìè ïîòðåáèòåë"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Èñòèíñêî èìå"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Øåë"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Èêîíà"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -893,59 +905,59 @@ msgstr ""
"ïîòðåáèòåë.\n"
"Èñêàòå ëè òàçè âúçìîæíîñò ?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Èçáåðåòå ïîäðàçáèðàù ñå ïîòðåáèòåë :"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Èçáåðåòå Windows Manager çà ñòàðòèðàíå:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Âñè÷êè"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "Allow all users"
msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
#, fuzzy
msgid "No sharing"
msgstr "Ïîäåëÿíå íà ôàéëîâå"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -954,42 +966,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Äîáðå äîøëè ïðè Cracker-èòå"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Ëîøî"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ñòàíäàðòíà"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Âèñîêî"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
#, fuzzy
msgid "Higher"
msgstr "Âèñîêî"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Ïàðàíîè÷íî"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -999,7 +1011,7 @@ msgstr ""
"óïîòðåáà, íî å ïî-÷óâñòâèòåëíî: íå òðÿáâà äà áúäå èçïîëçâàíà íà ìàøèíè\n"
"ñâúðçàíè ñ äðóãè èëè ïî Èíòåðíåò. Íÿìà äîñòúï ñ ïàðîëè."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1007,7 +1019,7 @@ msgstr ""
"Ïàðîëàòà ñåãà å âêëþ÷åíà, íî èçïîëçâàíåòî êàòî ìðåæîâ êîìïþòúð íå å "
"ïðåïîðú÷èòåëíî."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1017,13 +1029,13 @@ msgstr ""
"èçïîëçâàí äà ñå ñâúðçâà êúì Èíòåðíåò êàòî êëèåíò. Èìà ïðîâåðêè íà "
"ñèãóðíîñòòà. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1038,7 +1050,7 @@ msgstr ""
"Ñèãóðíîñòòà ñåãà å äîñòàòú÷íî ãîëÿìà äà ñå èçïîëçâà ñèñòåìàòà êàòî\n"
"ñúðâúð ïðèåìàù âðúçêè îò ìíîãî êëèåíòè. "
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1047,32 +1059,32 @@ msgstr ""
"Èçáèðàìå 4-òî íèâî, íî ñèñòåìàòà å íàïúëíî çàòâîðåíà.\n"
"Íèâîòî íà ñèãóðíîñò å íà ìàêñèìóìà ñè."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îïöèè"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Èçáåðåòå íèâî íà ñèãóðíîñò"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Íèâî íà ñèãóðíîñò"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Èçïîëçâàéòå libsafe çà ñúðâúðè"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Áèáëèîòåêà, êîÿòî îñèãóðÿâà çàùèòà îò aòàêè ñ ïðåïúëâàíå íà áóôåð è ôîðìàòíè "
"ñòðèíãîâå."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1114,7 +1126,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1128,7 +1140,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1143,7 +1155,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1157,7 +1169,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1171,32 +1183,32 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "íÿìà äîñòàòú÷íî ìÿñòî çà /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Äåñêòîï"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Ñòàðòîâî Ìåíþ"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Íå ìîæåòå äà èíñòàëèðàòå bootloader íà äÿëà %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "íÿìà âúâåäåíà ïîìîù îùå.\n"
@@ -1204,8 +1216,8 @@ msgstr "íÿìà âúâåäåíà ïîìîù îùå.\n"
msgid "Boot Style Configuration"
msgstr "Íàñòðîéêà íà íà÷èíà íà ñòàðòèðàíå"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ôàéë"
@@ -1215,7 +1227,7 @@ msgstr "/_Ôàéë"
msgid "/File/_Quit"
msgstr "/Ôàéë/_Èçõîä"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1257,94 +1269,101 @@ msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Ñúçäàé íîâ äÿë"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Ãðåøêà"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Êîïèðàíå íà %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "Áåç ãðàôèêà"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Èçáîð íà êëàñ èíñòàëàöèÿ"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1353,23 +1372,22 @@ msgstr ""
"Â ìîìåíòà èçïîëçâàòå %s êàòî ïðîãðàìà çà ñòàðòèðàíå.\n"
"Öúêíåòå íà Íàñòðîé, çà äà ñòàðòèðàòå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Íàñòðîé"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Çàïàçè èçáîð íà ïàêåòè"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1378,44 +1396,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Ñèñòåìåí ðåæèì"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Ïóñíè X-Window ñèñòåìàòà ïðè ñòàðòèðàíå"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Íå, íå èñêàì autologin"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äà, èñêàì autologin ñ òîâà (ïîòðåáèòåë, äåñêòîï)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "íå ìîãà äà îòâîðÿ /etc/inittab çà ÷åòåíå: %s"
@@ -1520,49 +1538,53 @@ msgstr "ñåðèéíà"
msgid "United States"
msgstr ""
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Íåèçâåñòåí ìîäåë"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "íîâ"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Äåìîíòèðàé"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ìîíòèðàé"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Ñúðâúð"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ìÿñòî íà ìîíòèðàíå"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Ñúðâúð"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ìÿñòî íà ìîíòèðàíå: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îïöèè: %s"
@@ -1571,8 +1593,9 @@ msgstr "Îïöèè: %s"
msgid "Please make a backup of your data first"
msgstr "Ïúðâî ñúçäàéòå backup íà ñâîèòå äàííè"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Ïðî÷åòåòå âíèìàòåëíî !"
@@ -1611,10 +1634,15 @@ msgid "Please click on a partition"
msgstr "Ìîëÿ, öúêíåòå íà äÿëà"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Ïîäðîáíîñòè"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ëîêàëåí ïðèíòåð"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1639,13 +1667,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Ïðàçåí"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Äðóãà"
@@ -1653,12 +1681,12 @@ msgstr "Äðóãà"
msgid "Filesystem types:"
msgstr "Âèäîâå ôàéëîâà ñèñòåìà:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Ñúçäàé"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Âèä"
@@ -1668,7 +1696,7 @@ msgstr "Âèä"
msgid "Use ``%s'' instead"
msgstr "Âìåñòî òîâà èçïîëçâàéòå ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Èçòðèé"
@@ -1676,79 +1704,79 @@ msgstr "Èçòðèé"
msgid "Use ``Unmount'' first"
msgstr "Ïúðâî èçïîëçâàéòå 'Äåìîíòèðàíå'"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ñëåä ïðîìÿíà íà òèïà íà äÿëà %s, âñè÷êè äàííè âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Èçáåðåòå äÿë"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Èçáåðåòå äðóã äÿë"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Èçëåç"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Ïðåìèíè â Åêñïåðòåí ðåæèì"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ïðåìèíè â Íîðìàëåí ðåæèì"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Âúðíè"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Ïðîäúëæåíèå âúïðåêè âñè÷êî ?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Èçõîä áåç çàïèñ"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Èçõîä, áåç äà çàïèñ íà òàáëèöàòà íà äÿëîâåòå ?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Èñêàòå ëè äà çàïàçèòå ïðîìåíèòå â /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Àâòîìàòè÷íî ñúçäàâàíå"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Èç÷èñòè âñè÷êî"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Îùå"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Èíôîðìàöèÿòà çà òâúðäèÿ äèñê"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Âñè÷êè ïúðâè÷íè äÿëîâå ñå èçïîëçâàò"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Íå ìîãà äà äîáàâÿ ïîâå÷å äÿëîâå"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1756,31 +1784,31 @@ msgstr ""
"Àêî èñêàòå îùå äÿëîâå, ìîëÿ èçòðèéòå åäèí, çà äà ìîæåòå äà ñúçäàäåòå åäèí "
"ðàçøèðåí äÿë"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Çàïàçè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Ñïàñÿâàíå òàáëèöàòà ñ äÿëîâåòå"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ïðåçàðåäè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Àâòîìàòè÷íî ìîíòèðàíå íà ñìåíÿåì íîñèòåë"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Èçáåðåòå ôàéë"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1788,11 +1816,11 @@ msgstr ""
"Ðåçåðâíàòà òàáëèöà íà äÿëîâåòå íå å ñúñ ñúùàòà ãîëåìèíà\n"
"Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Ïðåäóïðåæäåíèå"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1800,112 +1828,104 @@ msgstr ""
"Ñëîæåòå äèñêåòà âúâ ôëîïèòî\n"
"Âñè÷êè äàííè, íàìèðàùè ñå âúðõó äèñêåòàòà, ùå áúäàò çàãóáåíè"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Îïèòâàì ñå äà ñïàñÿ òàáëèöàòà íà äÿëîâåòå"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Ïîäðîáíà èíôîðìàöèÿ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Ïðîìåíè ãîëåìèíàòà"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Ïðåìåñòè"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Ôîðìàòèðàé"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Ìîíòèðàé"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Ïðèáàâè êúì RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Ïðèáàâè êúì LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Äåìîíòèðàé"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Ïðåìàõíè îò RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Ïðåìàõíè îò LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Ìîäèôèöèðàé RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Èçïîëçâàé çà loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Ñúçäàé íîâ äÿë"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Íà÷àëåí ñåêòîð: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Ãîëåìèíà â MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Âèä ôàéëîâà ñèñòåìà: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Ïðåäïî÷èòàíèå: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Äà ïðåìàõíà ëè loopback ôàéëà ?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Ïðîìÿíà òèïà íà äÿëà"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Êîÿ ôàéëîâà ñèñòåìà èñêàòå ?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Ïðåõîä îò ext2 êúì ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Êúäå èñêàòå äà ìîíòèðàòå loopback-ôàéëà %s ?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1914,138 +1934,138 @@ msgstr ""
"loopback.\n"
"Ïúðâî ìàõíåòå loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà fat ôàéëîâàòà ñèñòåìà"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ïðîìÿíà íà ãîëåìèíàòà"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ãîëåìèíàòà íà äÿëà íå ìîæå äà áúäå ïðîìåíåíà"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Âñè÷êè äàííè íà òîçè äÿë òðÿáâà äà áúäàò àðõèâèðàíè"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ñëåä ïðîìÿíà ãîëåìèíàòà íà äÿëà %s, äàííète âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Èçáåðåòå íîâà ãîëåìèíà"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Íîâà ãîëåìèíà â MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Íà êîé äèñê èñêàòå äà ãî ïðåìåñòèòå ?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Ñåêòîð"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Íà êîé ñåêòîð èñêàòå äà ãî ïðåìåñòèòå?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Ìåñòåíå"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Ìåñòâÿ äÿëà ... "
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Èçáåðåòå ñúùåñòâóâàù RAID çà ïðèáàâÿíå"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "íîâ"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Èçáåðåòå ñúùåñòâóâàù LVM çà ïðèáàâÿíå"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM èìå ?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Òîçè äÿë íå ìîæå äà áúäå èçïîëçâàí çà loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Èìå íà loopback ôàéëà: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Äàéòå èìå íà ôàéë"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Ôàéëúò âå÷å ñå èçïîëçâà òî äðóã loopback, èçáåðåòå äðóã ôàéë."
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Ôàéëúò âå÷å ñúøåñòâóâà. Äà ãî èçïîëçâàì ëè ?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Îïöèè çà mount:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Ðàçëè÷íè"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "óñòðîéñòâî"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "íèâî"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "ãîëåìèíà íà ïàð÷åòî"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Âíèìàíèå: òàçè îïåðàöèÿ å îïàñíà"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Êàêúâ òèï ðàçäåëÿíå íà äÿëîâå ?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2057,7 +2077,7 @@ msgstr ""
"Èëè èçïîëçâàòå LILO è òî íå ðàáîòè, èëè íå èçïîëçâàòå LILO è íÿìàòå íóæäà "
"îò /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2069,7 +2089,7 @@ msgstr ""
"Àêî ñìÿòàòå äà èçïîëçâàòå boot ìåíèäæúðà LILO, áúäåòå âíèìàòåëíè ïðè\n"
"ïðèáàâÿíåòî íà /boot äÿë"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2079,44 +2099,44 @@ msgstr ""
"Íÿìà çàðåæäàùà ïðîãðàìà, êîÿòî äà ìîæå äà ñå ñïðàâè ñ íåãî áåç /boot äÿë.\n"
"Òàêà ÷å äîáàâåòå /boot äÿë"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Òàáëèöàòà íà äÿëîâåòå íà óñòðîéñòâî %s ùå áúäå çàïèñàíà âúðõó äèñêà !"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Òðÿáâà äà ðåñòàðòèðàòå, ïðåäè ïðîìåíèòå äà âëÿçàò â ñèëà"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ñëåä ôîðìàòèðàíå íà äÿëà %s, âñè÷êè äàííè âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Ôîðìàòèðàíå"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôîðìàòèðàíå íà loopback ôàéëà %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Ôîðìàòèðàíå íà äÿëà %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Ñêðèé ôàéëîâåòå"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Ïðåìåñòè ôàéëîâåòå íà íîâ äÿë"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2125,83 +2145,83 @@ msgstr ""
"Äèðåêòîðèÿòà %s âå÷å ñúäúðæà íÿêàêâè äàííè\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Ïðåìåñòè ôàéëîâåòå íà íîâ äÿë"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Êîïèðàíå íà %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Èçòðèâàíå íà %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Óñòðîéñòâî: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Áóêâà íà óñòðîéñòâîòî ïîä DOS: %s (ïðîñòî ïðåäïîëîæåíèå)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Âèä: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Èìå: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Íà÷àëî: ñåêòîð %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Ðàçìåð: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s ñåêòîðà"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Îò öèëèíäúð %d äî öèëèíäúð %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Ôîðìàòèðàí\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Íåôîðìàòèðàí\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Ìîíòèðàí\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2210,7 +2230,7 @@ msgstr ""
"Loopback ôàéë(îâå):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2218,27 +2238,27 @@ msgstr ""
"Äÿë, êîéòî ñå ñòàðòèðà ïî ïîäðàçáèðàíå\n"
" (çà MS-DOS boot, íå çà lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Íèâî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Ðàçìåð íà ïàð÷åòî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äèñêîâå %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Èìå íà loopback ôàéëà: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2250,7 +2270,7 @@ msgstr ""
"Äðàéâåð-äÿë, ìîæå áè òðÿáâà\n"
"òðÿáâà äà ãî îñòàâèòå.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2262,59 +2282,63 @@ msgstr ""
"èâèöà íà äÿëà å çà äâîéíî\n"
"ñòàðòèðàíå íà ñèñòåìàòà âè.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Ðàçìåð: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ãåîìåòðèÿ: %s öèëèíäðè, %s ãëàâè, %s ñåêòîðè\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Èíôîðìàöèÿ: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äèñêîâå %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Òèï íà òàáëèöàòà ñ äÿëîâå: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "íà øèíà %d àäðåñ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Âèä ôàéëîâà ñèñòåìà: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ïàðîëàòà å ïðåêàëåíî ïðîñòà (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ïàðîëèòå íà ñúâïàäàò"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr ""
@@ -2351,7 +2375,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Ïîòðåáèòåëñêî èìå"
@@ -2366,23 +2390,23 @@ msgstr "NIS äîìåéí"
msgid "Search servers"
msgstr "DNS ñúðâúð"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîðìàòèðàíå îò %s ïðîâàëåíî"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íå çíàì êàê äà ôîðìàòèðàì %s â òèï %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ãðåøêà ïðè äåìîíòèðàíåòî íà %s: %s"
@@ -2399,33 +2423,49 @@ msgstr ""
msgid "server"
msgstr "ñúðâúð"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Íå ìîãà äà ðàç÷åòà òàáëèöàòà íà äÿëîâåòå, ïðåêàëåíî å ïîâðåäåíà çà ìåí :(\n"
+"Ìîãà äà ñå îïèòàì äà èç÷èñòÿ ëîøèòå äÿëîâå (ÂÑÈ×ÊÈ ÄÀÍÍÈ ùå áúäàò "
+"çàãóáåíè!).\n"
+"Äðóãî ðåøåíèå å äà çàáðàíèòå íà DrakX ïîïðàâÿ òàáëèöàòà ñ äÿëîâå.\n"
+"(ãðåøêàòà å %s)\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Íå ìîæåòå äà èçïîëçâàòå JFS çà äÿë ïî-ìàëúê îò 16 ÌÁ"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Íå ìîæåòå äà èíñòàëèðàíå ReiserFS íà äÿë ïî-ìàëúê îò 32 ÌÁ"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Òî÷êèòå íà ìîíòèðàíå òðÿáâà äà çàïî÷âàò ñ /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Âå÷å èìà äÿë ñ òàçè ìÿñòî íà ìîíòèðàíå %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Íå ìîæåòå äà èçïîëçâàòå LVM ëîãè÷åñêè òèï çà ìÿñòî íà ìîíòèðàíå %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Òàçè äèðåêòîðèÿ òðÿáâà äà îñòàíå â ðàìêèòå íà root ôàéëîâàòà ñèñòåìà."
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2434,231 +2474,277 @@ msgstr ""
"Íóæäàåòå ñå îò èñòèíñêà ôàéëîâà ñèñòåìà (ext2, reiserfs) çà òàçè òî÷êà íà "
"ìîíòèðàíå\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Íå ìîæåòå äà èçïîëçâàòå LVM ëîãè÷åñêè òèï çà ìÿñòî íà ìîíòèðàíå %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Íÿìà äîñòàòú÷íî ìÿñòî çà àâòîìàòè÷íî çàåìàíå"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ãðåøêà ïðè îòâàðÿíå íà %s çà çàïèñ: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Íàñòðîéêà"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Ïîÿâè ñå ãðåøêà - íå ñà îòêðèòè âàëèäíè óñòðîéñòâà, âúðõó êîèòî äà áúäàò "
-"ñúçäàäåíè íîâè ôàéëîâè ñèñòåìè. Ìîëÿ ïðîâåðåòå òâúðäèÿ ñè äèñê ñè çà "
-"ïðè÷èíàòà çà òîçè ïðîáëåì"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Íÿìàòå íèêàêâè äÿëîâå!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Äðàéâåð"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Íåèçâåñòåí ìîäåë"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Ìîäóë"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Ïàìåò (DMA) íà êàðòàòà"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Îòêàç"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Ìîäóë"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Îïèñàíèå"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Èäåíòèôèêàöèÿ"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Èçáåðåòå ôàéë"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway óñòðîéñòâî"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 áóòîíà"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (À4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Èçõîä"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ïîìîù"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Ïîìîù"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Ïîìîù/_Îòíîñíî..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Àâòîìàòè÷íî çàñè÷àíå"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Çàñè÷àíå íà äèñêîâåòå"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Âèæ õàðäóåðíàòà èíôîðìàöèÿ"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Íàñòðîéêà íà ìèøêà"
+msgid "Information"
+msgstr "Ïîêàæè èíôîðìàöèÿòà"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Ïîêàæè èíôîðìàöèÿòà"
+msgid "Configure module"
+msgstr "Íàñòðîéêà íà ìèøêà"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "çàñå÷åí íà ïîðò %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Ìîëÿ èç÷àêàéòå"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d ñåêóíäè"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Èçòðèâàíå íà ïðèíòåðà \"%s\" ..."
@@ -2691,16 +2777,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Ïàìåò (DMA) íà êàðòàòà"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Ïðîìÿíè òèïà"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2709,11 +2795,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "Ôîðìàòèðàíå"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2725,22 +2811,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2900,7 +2986,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2967,10 +3053,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3042,11 +3128,11 @@ msgstr ""
#: ../../help.pm_.c:164
#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3126,7 +3212,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3158,7 +3244,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (îð X Window System) å ñúðöåòî íà GNU/Linux ãðàôè÷íèÿ èíòåðôåéñ, íà êîéòî\n"
"ñå îñëàíÿò ãðàôè÷íèòå ñðåäè (KDE, Gnome, AfterStep, WindowMaker...) "
@@ -3180,33 +3268,7 @@ msgstr ""
"å ñãðåøåíà è òåñòúò àâòîìàòè÷íî ùå áúäå ïðèêëþ÷åí ñëåä 10 ñåêóíäè,\n"
"âúçñòàíîâÿâàéêè åêðàíà."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Ïúðâèÿ ïúò, êîãàòî îïèòàòå íàñòðîéêàòà íà X, ìîæå áè íÿìà äà ñòå äîâîëíè îò\n"
-"îò âèäà (åêðàíúò å ïðåêàëåíî ìàëúê, îòìåñòåí íàëÿâî èëè íàäÿñíî...). "
-"Âúïðåêè\n"
-"òîâà, äàæå àêî X òðúãíå êàòî õîðàòà, DrakX ùå âè ïîïèòà äàëè íàñòðîéêàòà âè\n"
-"äîïàäà. Ñúùî òàêà, ÷å âè ïðåäëîæè ïðîìÿíà, êàòî ïîêàæå ñïèñúê íà âàëèäíè\n"
-"ðåæèìè, êîèòî å óñïÿë äà íàìåðè, ñ ìîëáà äà ïîñî÷èòå åäèí.\n"
-"\n"
-"Êàòî ïîñëåäíà âúçìîæíîñò, àêî âñå îùå íå ìîæåòå äà ïîäêàðàòå X, èçáåðåòå\n"
-"\"Ïðîìÿíà íà ãðàôè÷íàòà êàðòà\", ïîñî÷èòå \"Íåèçáðîåíà êàðòà\", è, êîãàòî\n"
-"áúäåòå ïîïèòàíè êîé ñúðâúð äà áúäå èçïîëçâàí, èçáåðåòå \"FBDev\". Òîâà å\n"
-"áåçãðåøíà îïöèÿ, êîÿòî ðàáîòè íà âñÿêà ïî-íîâà êàðòà. Òîãàâà èçáåðåòå "
-"\"Îïèòàé ïàê\", çà äà ñòå ñèãóðíè."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3220,7 +3282,7 @@ msgstr ""
"ìàøèíàòà\n"
"ùå ðàáîòè êàòî ñúðâúð èëè àêî íÿìà óñïåøíî íàñòðîåí äèñïëåé."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
@@ -3241,10 +3303,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux CDROM-úò èìà âãðàäåí ñïàñèòåëåí ðåæèì. Ìîæåòå äà ãî\n"
"äîñòèãíåòå, êàòî ñòàðòèðàòå îò CDROM-à, íàòèñíåòå êëàâèøà >>F1<< è íàïèøåòå\n"
@@ -3272,7 +3334,7 @@ msgstr ""
"äàííè, îò êîèòî íå ñå íóæäàåòå. Íÿìà íóæäà äà ÿ ôîðìàòèðàòå, òúé êàòî DrakX\n"
"ùå ïðåçàïèøå öÿëàòà äèñêåòà."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3306,7 +3368,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3339,7 +3403,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Â òîçè ìîìåíò òðÿáâà èçáåðåòå êúäå íà òâúðäèÿ ñè äèñêà äà èíñòàëèðàòå "
"âàøàòà\n"
@@ -3417,7 +3483,7 @@ msgstr ""
"ìíîãî ëåñíî äà çàãóáèòå âñè÷êè äàííè. Òàêà ÷å íå èçáèðàéòå òîâà, àêî íå\n"
"çíàåòå êàêâî ïðàâèòå."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3483,7 +3549,7 @@ msgstr ""
"(*) Òðÿáâà âè FAT-ôîðìàòèðàíà äèñêåòà (çà äà ñúçäàäåòå òàêâà ïîä GNU/Linux,\n"
"íàïèøåòå \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3540,7 +3606,7 @@ msgstr ""
"Öúêíåòå \"Íàïðåäíè÷àâ\", àêî èñêàòå äà èçáåðåòå äÿëîâå, êîèòî äà áúäàò\n"
"ïðîâåðåíè çà ëîøè áëîêîâå îò äèñêà."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3556,12 +3622,12 @@ msgstr ""
"\n"
"Ìîëÿ, áúäåòå òúðïåëèâè."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3571,7 +3637,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3587,14 +3653,14 @@ msgstr ""
"äà\n"
"ïðîäúëæèòå ñ èíñòàëàöèÿòà, öúêíåòå íà áóòîíà Ïðèåìè."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3610,7 +3676,7 @@ msgstr ""
"\n"
"Àêî íå çíàåòå êàêòî äà èçáåðåòå, èçáåðåòå îïöèÿòà ïî ïîäðàçáèðàíå."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3628,26 +3694,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3675,7 +3741,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3750,7 +3816,7 @@ msgstr ""
"íàìåðèòå çà ïîëåçíî ìÿñòî, êúäåòî äà ñúõðàíÿâàòå íÿêîå ÿäðî èëè image íà\n"
"ramdisk â ñëó÷àé íà èçâúíðåäíè ñèòóàöèè."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3817,11 +3883,11 @@ msgstr ""
"èëè\n"
"äÿë ñå íàðè÷à \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Ìîëÿ, áúäåòå òúðïåëèâè. Òàçè îïåðàöèÿ ìîæå äà îòíåìå íÿêîëêî ìèíóòè."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3829,23 +3895,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3854,11 +3920,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX ñåãà òðÿáâà äà ïðîâåäå èíñòàëàöèÿ ïî ïîäðàçáèðàíå (\"Ïðåïîðú÷èòåëíà"
"\")\n"
@@ -3887,19 +3953,22 @@ msgstr ""
"íå ïîçíàâàòå äîáðå GNU/Linux, òàêà ÷å èçáåðåòå òîâà, îñâåí àêî íå çíàåòå\n"
"êàêâî ïðàâèòå."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Îáèêíîâåíî, DrakX áè òðÿáâàëî äà èçáåðå ïðàâèëíàòà çà âàñ êëàâèàòóðà (â "
"çàâèñèìîñò\n"
@@ -3923,8 +3992,10 @@ msgstr ""
"íà áóòîíà \"Íàïðåäíè÷àâ\". Ùå âè áúäå ïðåäîñòàâåí ïúëåí ñïèñúê ñ "
"ïîääúðæàíèòå êëàâèàòóðè."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3949,7 +4020,7 @@ msgstr ""
"Îòáåëåæåòå, ÷å ìîãàò äà áúäàò èíñòàëèðàíè íÿêîëêî åçèêà. Âåäíúæ èçáðàí\n"
"íÿêàêúâ ëîêàë, öúêíåòå áóòîíà \"OK\", çà äà ïðîäúëæèòå."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3962,7 +4033,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Ïî ïîäðàçáèðàíå, DrakX ïðåäïîëàãà ÷å èìàòå äâóáóòîííà ìèøêà è ùå âêëþ÷è\n"
"ñèìóëèðàíå íà òðè áóòîíà. DrakX àâòîìàòè÷íî ðàçáèðà äàëè å PS/2, ñåðèéíà "
@@ -3977,7 +4055,7 @@ msgstr ""
"íàñòðîéêàòà å äîðà. Àêî ìèøêàòà íå ðàáîòè, êàêòî òðÿáâà, íàòèñíåòå èíòåðâàë\n"
"èëè ÑÅ ÂÚÐÍÅÒÅ êúì \"Îòêàç\" è èçáåðåòå ïàê."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3985,7 +4063,7 @@ msgstr ""
"Ìîëÿ, èçáåðåòå âåðíèÿ ïîðò. Íàïðèìåð, ïîðòúò COM1 ïîä Windows ïîä GNU/Linux\n"
"ñå íàðè÷à ttyS0."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4015,15 +4093,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4062,8 +4140,11 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -4071,16 +4152,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4144,18 +4216,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4272,7 +4344,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4285,7 +4359,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4296,7 +4370,7 @@ msgstr ""
"áúäàò çàãóáåíè\n"
"è íÿìà äà ìîãàò äà ñå âúçñòàíîâÿò."
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4328,7 +4402,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4352,20 +4426,29 @@ msgstr ""
"\n"
"Íàèñòèíà ëè èñêàòå äà èíñòàëèðàòå òåçè ñúðâúðè ?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Íå ìîæåòå äà èçïîëçâàòå broadcast áåç NIS äîìåéí"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ñëîæåòå FAT ôîðìàòèðàíà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Òàçè äèñêåòà íå å ôîðìàòèðàíà íà FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4373,11 +4456,20 @@ msgstr ""
"Çà äà èçïîëçâàòå çàïàçåí èçáîð íà ïàêåòè, ñòàðòèðàéòå èíñòàëàöèÿòà ñ ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ïîÿâè ñå ãðåøêà - íå ñà îòêðèòè âàëèäíè óñòðîéñòâà, âúðõó êîèòî äà áúäàò "
+"ñúçäàäåíè íîâè ôàéëîâè ñèñòåìè. Ìîëÿ ïðîâåðåòå òâúðäèÿ ñè äèñê ñè çà "
+"ïðè÷èíàòà çà òîçè ïðîáëåì"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4412,59 +4504,59 @@ msgstr ""
"\n"
"Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Òðÿáâà äà èìàòå FAT äÿë ìîíòèðàí â /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Èçïîëçâàé ñâîáîäíîòî ìÿñòî"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Íÿìà äîñòàòú÷íî ìÿñòî çà ñúçäàâàíå íà íîâ äÿë"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Èçïîçâàíå íà ñúùåñòâóâàù äÿë"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Íÿìà äÿë, êîéòî ìîãà äà èçïîëçâàì"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Èçïîëçâàé çà Windows äÿëúò çà loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Êîé äÿë èñêàòå äà èçïîëçâàòå çà Linux4Win ?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Èçáåðåòå ãîëåìèíèòå"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Ãîëåìèíà íà root-äÿëà â MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Ãîëåìèíà íà swap-äÿëà â MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Èçïîëçâàé ñâîáîäíîòî ìÿñòî íà Windows äÿëà"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Êîé äÿë æåëàåòå äà ïðîìåíèòå?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà Windows ôàéëîâàòà ñèñòåìà"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4473,7 +4565,7 @@ msgstr ""
"Íå âúçìîæíîñò çà ðàáîòà ñ âàøèÿ FAT äÿë, \n"
"ïîðàäè ïîëó÷åíàòà ãðåøêà: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4481,7 +4573,7 @@ msgid ""
msgstr ""
"Âàøèÿò Windows äÿë å ìíîãî ôðàãìåíòèðàí, ìîëÿ ïúðâî ñòàðòèðàéòå ''defrag''"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4502,21 +4594,21 @@ msgstr ""
"ïîâòîðåòå èíñòàëàöèàÿòà. Áè áèëî äîáðå äà íàïðàâèòå àðõèâ íà äàííèòå ñè.\n"
"Êîãàòî ñòå ñèãóðíè, íàòèñíåòå ÎÊ."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Êîëêî èñêàòå äà îñòàâèòå çà windows?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "äÿë %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Íåóñïåøíî ïðåðàçäåëÿíå íà FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4524,32 +4616,32 @@ msgstr ""
"Íÿìà FAT äÿëîâå çà ñìÿíà íà ãîëåìèíàòà èëè çà èçïîëçâàíå êàòî loopback (èëè "
"íÿìà äîñòàòú÷íî ìÿñòî íà äèñêà)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Èçòðèé öåëèÿ äèñê"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Ïðåìàõíè Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "èìàòå ïîâå÷å îò åäèí òâúðäè äèñêîâå, êîé äà èçïîëçâàì çà èíñòàëàöèÿòà?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ÂÑÈ×ÊÈ ñúùåñòâóâàùè äÿëîâå è äàííèòe âúðõó òÿõ íà %s ùå áúäàò çàãóáåíè"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Êëèåíòñêî ðàçäåëÿíå íà äèñêà"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Èçïîëçâàé fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4558,28 +4650,28 @@ msgstr ""
"Ñåãà ìîæåòå äà ðàçäåëèòå %s.\n"
"Êîãàòî ñòå ãîòîâè, íå çàáðàâÿéòå äà çàïèøåòå èçïîëçâàéêè `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Íÿìà äîñòàòú÷íî ñâîáîäíî ìÿñòî íà äÿëà"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Íå ìîãà äà íàìåðÿ íèêàêâî ìÿñòî çà èíñòàëàöèÿ"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ïîìîùíèêúò çà ðàçäåëèíå íà äÿëîâå íà DrakX íàìåðè ñëåäíèòå ðåøåíèÿ:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Íåóñïåøíî ðàçäåëÿíå íà: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Âêëþ÷âàì ìðåæàòà"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Èçêëþ÷âàíå íà ìðåæàòà"
@@ -4591,12 +4683,12 @@ msgstr ""
"Ïîÿâè ñå ãðåøêà, íî íå çíàì êàê äà ñå ñïðàâÿ ñ íåÿ äåëèêàòíî.\n"
"Ìîæåòå äà ïðîäúëæèòå íà ñâîé ðèñê."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëèðàé òî÷êàòà íà ìîíòèðàíå %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4608,12 +4700,12 @@ msgstr ""
"Ïðîâåðåòå êîìïàêò äèñêà íà èíñòàëèðàíèÿ êîìïþòúð èçïîëçâàéêè \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Äîáðå äîøëè â %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Íÿìà ôëîïè óñòðîéñòâî"
@@ -4644,71 +4736,71 @@ msgstr "Êëàñ èíñòàëàöèÿ"
msgid "Please choose one of the following classes of installation:"
msgstr "Ìîëÿ, èçáåðåòå åäèí îò ñëåäíèòå êëàñîâå íà èíñòàëàöèÿ:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Èçáîð íà ãðóïà ïàêåòè"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Èçáèðàíå íà ïàêåòè åäèí ïî åäèí"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Îáùà ãîëåìèíà: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Ëîø ïàêåò"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Èìå: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Âåðñèÿ: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Ãîëåìèíà: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Âàæíîñò: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Íå ìîæåòå äà îñòàâèòå ïàêåòà íåìàðêèðàí, çàùîòî íÿìàòå ìÿñòî äà ãî "
"èíñòàëèðàòå"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò èíñòàëèðàíè"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Íå ìîæåòå äà îòáåëåæåòå/äåîòáåëåæåòå òîçè ïàêåò"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Òîâà å íóæåí ïàêåò, íå ìîæå äà áúäå íåìàðêèðàí"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Íå ìîæåòå äà îñòàâèòå òîçè ïàêåò íåìàðêèðàí. Òîé âå÷å å èíñòàëèðàí"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4716,74 +4808,74 @@ msgstr ""
"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Íå ìîæåòå äà èçêëþ÷èòå òîçè ïàêåò. Òîé òðÿáâà äà áúäå îáíîâåí"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Ïîêàæè àâòîìàòè÷íî îòáåëÿçàíèòå ïàêåòè"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Èíñòàëèðàé"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Çàðåäè/Çàïàçè íà äèñêåòà"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Îáíîâÿâàíå íà èçáîðà íà ïàêåòè"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Ìèìèíàëíà èíñòàëàöèÿ"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Èíñòàëèðàì"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Ïðåñìÿòàíå"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Îñòàâàùî âðåìå "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Ìîëÿ, èç÷àêàéòå, ïîäãîòâÿíå íà èíñòàëàöèÿòà"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d ïàêåòà"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Èíñòàëèðàíå íà ïàêåòà %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ïðèåìè"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Îòêàæè"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4799,17 +4891,17 @@ msgstr ""
"Àêî ãî íÿìàòå, íàòèñíåòå Îòìÿíà, çà äà èçáåãíåòå èíñòàëèðàíåòî îò òîçè CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Ïîÿâè ñå ãðåøêà ïðè ïîðú÷âàíåòî íà ïàêåòèòå:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Ïîÿâè ñå ãðåøêà ïðè èíñòàëèðàíå íà ïàêåòèòå:"
@@ -5131,7 +5223,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Êëàâèàòóðà"
@@ -5183,11 +5275,11 @@ msgstr "Îáíîâÿâàíå íà èçáîðà íà ïàêåòè"
msgid "Please choose the type of your mouse."
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ïîðò íà ìèøêàòà"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ìîëÿ, èçáåðåòå êúì êîé ñåðèåí ïîðò å ñâúðçàíà ìèøêàòà âè."
@@ -5219,44 +5311,20 @@ msgstr "Íàñòðîéêà íà IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "íÿìà äÿëîâå íà ðàçïîëîæåíèå"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Ïðåòúðñâàíå íà äÿëîâåòå çà íàìèðàíå íà òî÷êè íà ìîíòèðàíå"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Èçáåðåòå ìåñòà çà ìîíòèðàíå"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Íå ìîãà äà ðàç÷åòà òàáëèöàòà íà äÿëîâåòå, ïðåêàëåíî å ïîâðåäåíà çà ìåí :(\n"
-"Ìîãà äà ñå îïèòàì äà èç÷èñòÿ ëîøèòå äÿëîâå (ÂÑÈ×ÊÈ ÄÀÍÍÈ ùå áúäàò "
-"çàãóáåíè!).\n"
-"Äðóãî ðåøåíèå å äà çàáðàíèòå íà DrakX ïîïðàâÿ òàáëèöàòà ñ äÿëîâå.\n"
-"(ãðåøêàòà å %s)\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake íå óñïÿ äà ðàç÷åòå ïðàâèëíî òàáëèöàòà íà äÿëîâåòå.\n"
-"Ïðîäúëæèòå íà ñîáñòâåí ðèñê !"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5264,70 +5332,70 @@ msgstr ""
"çà äà ñòàðòèðàòå ñèñòåìàòà ñè, ùå òðÿáâà äà ñúçäàäåòå ñòàðòèðàùî ïîëå â "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Íå å íàìåðåí ãëàâåí äÿë çà íàäãðàæäàíå"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Root äÿë"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Êîé å root-äÿëúò (/) íà ñèñòåìàòà âè ?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Íàëàãà ñå ðà ðåñòàðòèðàòå, ïðåäè ìîäèôèêàöèèòå äà ïðåäèçâèêàò åôåêò"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Èçáåðåòå äÿëîâåòå, êîèòî èñêàòå äà ôîðìàòèðàòå"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Ïðîâåðêà çà ëîøè ñåêòîðè ?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Ôîðìàòèðàíå íà äÿëowe"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ñúçäàâàíå è ôîðìàòèðàíå íà ôàéëà %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Íÿìà äîñòàòú÷íî swap çà ïðèêëþ÷âàíå íà èíñòàëàöèÿòà, ìîëÿ äîáàâåòå ìàëêî"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Òúðñÿ íàëè÷íè ïàêåòè"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Òúðñÿ íàëè÷íè ïàêåòè"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Íå ìîæåòå äà îñòàâèòå òîçè ïàêåò íåìàðêèðàí. Òîé âå÷å å èíñòàëèðàí"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Òúðñÿ ïàêåòè çà îáíîâÿâàíå"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5335,7 +5403,7 @@ msgid ""
msgstr ""
"Ñèñòåìàòà âè íÿìà äîñòàòú÷íî ìÿñòî çà èíñòàëàöèÿ èëè îáíîâÿâàíå (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5343,55 +5411,55 @@ msgstr ""
"Ìîæå èçáåðåòå çàðåæäàíå èëè çàïèñ íà èçáîðà íà ïàêåòè íà ôëîïè.\n"
"Ôîðìàòúò å ñúùèÿò êàòî auto_install ãåíåðèðàíèòå äèñêåòè."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Çàðåäè îò äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Çàðåæäàíå îò äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Èçáîð íà ïàêåòè"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Ñëîæåòå äèñêåòà ñúäúðæàùà èçáîð íà ïàêåòè"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Çàïàçè íà äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Èçáðàíàòà ãîëåìèíà å ïî-ãîëÿìà îò äîñòúïíîòî ïðîñòðàíñòâî"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
#, fuzzy
msgid "Type of install"
msgstr "Èçáåðåòå ïàêåòè çà èíñòàëèðàíå"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
#, fuzzy
msgid "With X"
msgstr "Åäèí ìîìåíò"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5401,16 +5469,16 @@ msgstr ""
"Àêî íÿìàòå íèòî åäíî îò òåçè CD-òà, íàòèñíåòå Îòìÿíà.\n"
"Àêî âè ëèïñâàò íÿêîè CD-òà, ìàõíåòå ãè, è íàòèñíåòå Ok. "
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçàãëàâåí \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Ïîäãîòâÿì èíñòàëàöèÿòà"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5419,21 +5487,21 @@ msgstr ""
"Èíñòàëèðàì ïàêåò %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ñëîæåòå ñòàðòèðàùàòà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ñëîæåòå äèñêåòà çà îáíîâÿâàíå íà ìîäóëè â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5499,7 +5567,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5511,157 +5579,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Èçáåðåòå îãëåäàëåí ñúðâúð,îò êîéòî äà ïîëó÷èòå ïàêåòèòå"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Êîÿ å âðåìåâàòà âè çîíà ?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê å íàñòðîåí ïî GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Àâòîìàòè÷íà ñèíõðîíèçàöèÿ íà âðåìåòî (èçïîëçâà NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Îòäàëå÷åí CUPS ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Íÿìà ïðèíòåð"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Èìàòå ëè äðóã(è) ?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Îáîáùåíèå"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Ìèøêà"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "×àñîâà çîíà"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ïðèíòåð"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN êàðòà"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Çâóêîâà êàðòà"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV êàðòà"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "NIS äîìåéí"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Ëîêàëíè ôàéëîâå"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Âúâåäåòå ïàðîëà çà root"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Áåç ïàðîëà"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ïàðîëàòà å ïðåêàëåíî ïðîñòà (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Èäåíòèôèêàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "LDAP àóòîðèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Áàçîâ dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "NIS àóòîðèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS äîìåéí"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS ñúðâúð"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5677,21 +5745,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP àóòîðèçàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Èìå íà äîìåéíà"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5720,19 +5788,19 @@ msgstr ""
"Àêî èñêàòå äà ñúçäàäåòå bootdisk çà âàøàòà ñèñòåìà, ïîñòàâåòå äèñêåòà â\n"
"ïúðâîòî óñòðîéñòâî è íàòèñíåòå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Ïúðâî ôëîïè óñòðîéñòâî"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Âòîðî ôëîïè óñòðîéñòâî"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ïðåñêî÷è"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5758,7 +5826,7 @@ msgstr ""
"ñëó÷àè íà ñðèâ. Èñêàòå ëè äà ñúçäàì bootdisk çà ñèñòåìàòà âè ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5767,28 +5835,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ñúæàëÿâàì íÿìà ôëîïè"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Èçáåðåòå ôëîïè äðàéâ,êúäåòî äà íàïðàâèòå ñòàðòèðàùà äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ñëîæåòå äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Ñúçäàâàíå íà ñòàðòèðàùà äèñêåòà"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Ïîäãîòîâêà íà bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5800,11 +5868,11 @@ msgstr ""
"Èíñòàëàöèÿòà ùå ïðîäúëæè, íî ùå òðÿáâà\n"
"äà èïîëçâàòå BootX, çà äà ñòàðòèðàòå ìàøèíàòà ñè"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Èñêàòå ëè äà èçïîëçâàòå aboot ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5812,15 +5880,15 @@ msgstr ""
"Ãðåøêà ïðè èíñòàëèðàíå íà aboot, \n"
"äà ñå îïèòàì ëè äà ïðîäúëæà èíñòàëàöèÿòà äîðè, àêî òîâà óíèæòîæè ïúðâèÿ äÿë ?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Èíñòàëèðàíå íà bootloader"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Èíñòàëàöèÿòà íà bootloader ïðîâàëåíà. Ïîÿâè ñå ñëåäíàòà ãðåøêà:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5837,17 +5905,17 @@ msgstr ""
" Ñëåä êîåòî íàïèøåòå: shut-down\n"
"Ïðè ñëåäâàùîòî ðåñòàðòèðàíå áè òðÿáâàëî äà âèäåòå ïîäñêàçêàòà."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ñëîæåòå ïðàçíà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Ïîäãîòâÿì äèñêåòà ñ àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5857,7 +5925,7 @@ msgstr ""
"\n"
"Íàèñòèíà ëè èñêàòå äà èçëåçåòå ñåãà ?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5889,15 +5957,15 @@ msgstr ""
"Èíôîðìàöèÿ çà íàñòðîéâàíå íà ñèñòåìàòà âè ìîæåòå äà íàìåðèòå â\n"
"ñëåäèíñòàëàöèîííàòà ãëàâà îò Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Ïîäãîòâè äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5911,15 +5979,15 @@ msgstr ""
"\n"
"Ìîæå áè èñêàòå äà ïîâòîðèòå èíñòàëàöèÿòà.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Àâòîìàòèçèðàí"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ïîâòîðè"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Çàïàçè èçáîð íà ïàêåòè"
@@ -5928,7 +5996,8 @@ msgstr "Çàïàçè èçáîð íà ïàêåòè"
msgid "Mandrake Linux Installation %s"
msgstr "Èíñòàëàöèÿ íà Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5946,22 +6015,22 @@ msgstr ""
msgid "Choose a file"
msgstr "Èçáåðåòå ôàéë"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Íàïðåäíè÷àâ"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Ïðåäèøåí"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
#, fuzzy
msgid "Next"
msgstr "Òåêñò"
@@ -6029,378 +6098,378 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "×åøêà (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Íåìñêà"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Äâîðàê"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Èñïàíñêà"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ôèíëàíäñêà"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ôðåíñêà"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Íîðâåæêà"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Ïîëñêà"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ðóñêà"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Øâåäñêà"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UÊ êëàâèàòóðà"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US êëàâèàòóðà"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Àëáàíñêà"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Àðìåíñêà (ñòàðà)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Àðìåíñêà (ïèøåùà ìàøèíà)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Àðìåíñêà (ôîíåòè÷åí)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Àçåðáàéäæàíñêà (ëàòèíèöà)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Áåëãèéñêà"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "âêëþ÷è"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Àðìåíñêà (ôîíåòè÷åí)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áúëãàðñêà"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Áðàçèëñêà (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Åñòîíñêà"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Áåëàðóñêà"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Øâåéöàðñêà (íåìñêà íàðåäáà)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Øâåéöàðñêà (ôðåíñêè íàðåäáà)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "×åøêà (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Íåìñêà (áåç íåðàáîòåùè êëàâèøè)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Äàòñêà"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Äâîðàê (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Äâîðàê (Íîðâåæêà)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Äâîðàê (US)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Åñòîíñêà"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Ãðóçèíñêà (\"Ðóñêà\" íàðåäáà)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Ãðóçèíñêà (\"Ëàòèíñêà\" íàðåäáà)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Ãðúöêà"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Óíãàðñêà"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Õúðâàòñêà"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Èçðàåëñêà"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Èçðàåëñêà (ôîíåòè÷íà)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Èðàíñêà"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Èñëàíäñêà"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Èòàëèàíñêà"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "ßïîíñêà 106 êëàâèøà"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Êîðåéñêà êëàâèàòóðà"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Ëàòèíîàìåðèêàíñêà"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Ëàòâèéñêà"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Ëèòâèéñêà AZERTY (ñòàðà)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Ëèòâèéñêà AZERTY (íîâà)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëèòâèéñêà \"÷èñëîâà ðåäèöà\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëèòâèéñêà \"ôîíåòè÷åí\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Ëàòâèéñêà"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Ìàêåäîíñêà"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Ñðúáñêà (êèðèëèöà)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Õîëàíäñêà"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Ïîëñêà (QWERTY íàðåäáà)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Ïîëñêà (QWERTZ íàðåäáà)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Ïîðòóãàëñêà"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Êàíàäñêà (Êâåáåê)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Ðóìúíñêà (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Ðóìúíñêà (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ðóñêà (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Ñëîâåíñêà"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Ñëîâàøêà (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Ñëîâàøêà (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Ñðúáñêà (êèðèëèöà)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Òàéâàíñêà êëàâèàòóðà"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Òàäæèêèñòàíñêà êëàâèàòóðà"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Òóðñêà (òðàäèöèîíåí \"F\" ìîäåë)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Òóðñêà (ìîäåðåí \"Q\" ìîäåë)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óêðàèíñêà"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US êëàâèàòóðà (ìåæäóíàðîäíà)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âèåòíàìñêà \"÷èñëîâà ðåäèöà\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Þãîñëàâñêà (ëàòèíèöà)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr ""
@@ -6458,11 +6527,11 @@ msgstr "Îáèêíîâåííà PS2 ìèøêà"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington THinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genuis NetMouse"
@@ -6470,115 +6539,125 @@ msgstr "Genuis NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 áóòîí"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Îáèêíîâåííà 2-áóòîííà ìèøêà"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Wheel"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "ñåðèéíà"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Îáèêíîâåííà 3-áóòîííà ìèøêà"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (ñåðèéíà, îò ñòàðèÿ òèï C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "BUS ìèøêà"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 áóòîíà"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 áóòîíà"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "íÿìà"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Áåç ìèøêà"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Çà äà àêòèâèðàòå ìèøêàòà ñè,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓÒÍÅÒÅ ÒÎÏ×ÅÒÎ !"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Çàâúðøè"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Ñëåäâàù ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Èíôîðìàöèÿ"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Ðàçøèðè äúðâîòî"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Èç÷èñòè äúðâîòî"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Ïðåâêëþ÷âàíå ìåæäó íîðìàëíî è ñîðòèðàíå ïî ãðóïè"
@@ -6616,6 +6695,74 @@ msgstr "èçïîëçâàé PPPOE"
msgid "use pptp"
msgstr "èçïîëçâàé PPPTP"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Ñúðâúð"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Èìå íà äîìåéíà"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ñúðâúð Áàçè-äàííè"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP ñúðâúð"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Íàñòðîé÷èê çà ìàëêà çàùèòíà ñòåíà\n"
+"\n"
+"Òîâà íàñòðîéâà ïåðñîíàëíà çàùèòíà ñòåíà çà òàçè Mandrake Linux ìàøèíà.\n"
+"Çà ìîùíî ïîñòâåòåíî íà çàùèòàòà ðåøåíèå, ìîëå, ïîãëåäíåòå ñïåöèàëèçèðàíàòà\n"
+"MandrakeSecurity Firewall äèñòðèáóöèÿ."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Òåñòâàíå ïîðòîâåòå"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6632,7 +6779,7 @@ msgstr ""
"Íå áåøå íàìåðåí ìðåæîâ àäàïòåð â ñèñòåìàòà âè.\n"
"Íå ìîæåòå äà íàñòðîèòå òàêúâ âèä âðúçêà."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Èçáåðåòå ìðåæîâ èíòåðôåéñ"
@@ -6645,7 +6792,7 @@ msgstr "Ìîëÿ, èçáåðåòå êîé ìðåæîâ àäàïòåð äà èçïîëçâàì çà âðúçêà êúì Èíòåðíåò"
msgid "no network card found"
msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Íàñòîéêà íà ìðåæàòà"
@@ -6661,7 +6808,7 @@ msgstr ""
"Host èìåòî òðÿáâà äà áóäå íàïúëíî êâàëèôèöèðàíî èìå,\n"
"êàòî ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Èìå íà õîñò:"
@@ -6962,13 +7109,13 @@ msgstr "Èçáåðåòå ïðîôèë çà íàñòðîéêà"
msgid "Use auto detection"
msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ðàçøèðåíè ôóíêèöèè"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Îòêðèâàíå íà óñòðîéñòâà ..."
@@ -7134,11 +7281,11 @@ msgstr "Àâòîìàòè÷åí IP àäðåñ"
msgid "Start at boot"
msgstr "Ïóñíàò ïðè ñòàðòèðàíå"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7150,43 +7297,55 @@ msgstr ""
"êàòî ``mybox.mylab.myco.com''.\n"
"Ìîæåòå ñúùî äà âúâåäåòå IP àäðåñà íà Âàøèÿ gateway, àêî èìàòå òàêúâ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS ñúðâúð"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway óñòðîéñòâî"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Íàñòðîéêà íà proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Ïðîñëåäÿâàíå íà ID íà ìðåæîâàòà êàðòà (ïîëåçíî ïðè ëàïòîïè)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy-ñúðâúðà òðÿáâà äà å http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy-ñúðâúðà òðÿáâà äà å ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà !"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Âíèìàíèå ! Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà. Ìîæå äà ñå íàëîæè íÿêàêâà "
+"ðú÷íà ïîïðàâêà ñëåä èíñòàëàöèÿòà."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íàñòðîéêà íà Èíòåðíåò"
@@ -7292,15 +7451,15 @@ msgstr "Ïàðîëà íà àêàóíòà"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ìîíòèðàíåòî íå óñïÿ: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Ðàçøèðåíè äÿëîâå íå ñå ïîääúðæàò íà òàçè ïëàòôîðìà"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7310,21 +7469,21 @@ msgstr ""
"Åäèíñòâåíèÿò íà÷èí å äà ïðåìåñòèòå ãëàâíèòå ñè äÿëîâå, çà äà èìàòå ïðàçíî "
"ìÿñòî ñëåä extended-äÿëîâåòå"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Âúçñòàíîâÿâàíåòî îò ôàéëà %s íå óñïÿ: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Ëîø backup-ôàéë"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Ãðåøêà ïðè çàïèñ âúâ ôàéëà %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7371,152 +7530,157 @@ msgstr "LPD - Ëèíååí Ïðèíòåðåí Äåìîí"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ïå÷àòàé, Áåç Îïàøêà"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Ïðèíòåð íà îòäàëå÷åí CUPS ñúðâúð"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Ïðèíòåð íà îòäàëå÷åí LPD ñúðâúð"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Ìðåæîâ ïðèíòåð (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Ïðèíòåð íà NetWare ñúðâúð"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Ïðåêàðàé ðàáîòàòà ïðåç êîìàíäà"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Íåèçâåñòåí ìîäåë"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Íåèçâåñòåí ìîäåë"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
#, fuzzy
msgid "Local Printers"
msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
#, fuzzy
msgid "Remote Printers"
msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ãðåøêà ïðè çàïèñ âúâ ôàéëà %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(íà %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(íà òàçè ìàøèíà)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP íà CUPS ñúðâúðà"
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Ïî ïîäðàçáèðàíå)"
@@ -7544,12 +7708,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Íàñòðîéêà"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Îòäàëå÷åí CUPS ñúðâúð"
@@ -7599,7 +7763,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Íîìåðúò íà ïîðòà òðÿáâà äà å öÿëî ÷èñëî !"
@@ -7607,7 +7771,7 @@ msgstr "Íîìåðúò íà ïîðòà òðÿáâà äà å öÿëî ÷èñëî !"
msgid "CUPS server IP"
msgstr "IP íà CUPS ñúðâúðà"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Ïîðò"
@@ -7615,13 +7779,132 @@ msgstr "Ïîðò"
msgid "Automatic CUPS configuration"
msgstr "Àâòîìàòè÷íà íàñòðîéêà íà CUPS"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Ïðèíòåð"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Ðåñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà"
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Èñêàòå ëè äà íàñòðîèòå òîçè ïðèíòåð (\"%s\")\n"
+"êàòî ïðèíòåð ïî ïîäðàçáèðàíå ?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Èñêàòå ëè äà ñòàðòèðàòå âðúçêàòà ñè ïðè çàðåæäàíå ?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Äîáàâè ïðèíòåð"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7634,7 +7917,7 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7643,7 +7926,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7656,7 +7939,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7665,7 +7963,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7676,26 +7974,26 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Local Printer"
msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7709,50 +8007,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, fuzzy, c-format
msgid "Detected %s"
msgstr "çàñå÷åíà %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Ìðåæîâ ïðèíòåð (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7760,34 +8058,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7795,7 +8093,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7803,38 +8101,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
#, fuzzy
msgid "Manual configuration"
msgstr "Íàñòðîéêà íà öâåòîâå"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Îïöèè íà îòäàëå÷åí lpd-ïðèíòåð"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7844,47 +8142,47 @@ msgstr ""
"äà ïðåäîñòàâèòå èìåíàòà íà õîñòà íà ïðèíòåðíèÿ ñúðâúð è\n"
"èìåòî íà ïðèíòåðà íà òîçè ñúðâúð."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Èìå íà îòäàëå÷åí õîñò"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Ëèïñâà èìå íà èìå íà õîñò !"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Ëèïñâà èìå íà îòäàëå÷åí ïðèíòåð !"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "çàñå÷åíà %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Ñòàðòèðàíå ìðåæàòà ...."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Íàñòðîéêè íà SMB (Windows 9x/NT) ïðèíòåð"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7898,46 +8196,46 @@ msgstr ""
"ïðèíòåðà, äî êîéòî èñêàòå äîñòúï è ïîäõîäÿùî èìåí, ïàðîëà è èíôîðìàöèÿ\n"
"çà ðàáîòíàòà ãðóïà."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Õîñò íà SMB ñúðâúð"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP íà SMB ñúðâúð:"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Îáùî èìå"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Ðàáîòíà ãðóïà"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Òðÿáâà äà áúäàò çàäàäåíè è èìåòî è IP àäðåñà íà ñúðâúðà !"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Ëèïñâà èìå íà SAMBA share !"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7961,7 +8259,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7970,7 +8268,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7978,11 +8276,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Îïöèè çà NetWare ïðèíòåð"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7993,44 +8291,44 @@ msgstr ""
"Çà äà ïå÷àòèòå íà NetWare ïðèíòåð ,òðÿáâà äà çíàåòå èìåî ìó è âúçìîæíî\n"
"àäðåñà íà ñúðâúðà, êàêòî è èìåòî íà îïàøêàòà,ïîòðåáèòåëñêîòî èìå,ïàðîëà."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Ñúðâúð íà ïðèíòåðà"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Èìå íà ïå÷àòíàòà îïàøêàòà"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Ëèïñâà èìå íà NCP ñúðâúð !"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Ëèïñâà èìå íà NCP îïàøêà !"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îïöèè íà Socket ïðèíòåð"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8044,21 +8342,21 @@ msgstr ""
"íà äðóãè ñúðâúðè ìîæå äà âàðèðà. Âèæòå ðúêîâîñòâîòî íà\n"
"õàðäóåðà ñè."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Ëèïñâà èìå íà õîñò íà ïðèíòåða !"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Èìå íà õîñò íà ïðèíòåðà"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Ïå÷àòàùî óñòðîéñòâî URI"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8068,11 +8366,11 @@ msgstr ""
"èçïúëíè èëè CUPS èëè Foomatic ñïåöèôèêàöèèòå. Îòáåëåæåòå, ÷å íå âñè÷êè "
"òèïîâå URI ñå ïîääðúðæàò îò spooler-èòå."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Òðÿáâà äà áúäå âúâåäåí âàëèäåí URI !"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -8082,28 +8380,28 @@ msgstr ""
"Ïîëåòàòà Îïèñàíèå è Ìåñòîïîëîæå íå òðÿáâà äà áúäàò\n"
"ïîïúëâàíè. Èìà êîìåíòàðè çà ïîòðåáèòåëèòå."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Èìå íà ïðèíòåð"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ìåñòîïîëîæåíèå"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "×åòåíå íà áàçàòà äàííè îò ïðèíòåðè ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Ïîäãîòâÿíå íà áàçàòà äàííè îò ïðèíòåðè ..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
#, fuzzy
msgid "Your printer model"
msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8118,26 +8416,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
#, fuzzy
msgid "The model is correct"
msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
#, fuzzy
msgid "Select model manually"
msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Èçáîð ìîäåë íà ïðèíòåðà"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Êàêúâ ìîäåë ïðèíòåð èìàòå ?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8146,17 +8444,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Íàñòðîéêè íà OKI Winprinter"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8166,11 +8464,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Íàñòðîéêà íà Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -8183,20 +8481,46 @@ msgstr ""
"ïðèíòåðíè ìàøèíè. Ìîëÿ, ñâúðæåòå ïðèíòåðà ñè íà ëîêàëåí ïîðò\n"
"èëè ãî íàñòðîéòå íà ìàøèíàòà, êúì êîÿòî å ñâúðçàí."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -8212,22 +8536,22 @@ msgstr ""
"Îòáåëåæåòå, ÷å ïðè ìíîãî âèñîêî êà÷åñòî íà èçõîäà íà\n"
"ïðèíòåðà, òîé ìîæå çíà÷èòåëíî äà ñå çàáàâè."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Íàñòðîéêàòà %s òðÿáâà äà å öÿëî ÷èñëî !"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Íàñòðîéêàòà %s òðÿáâà äà å ÷èñëî !"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Îïöèÿòà %s å èçâúí ãðàíèöèòå !"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8236,11 +8560,11 @@ msgstr ""
"Èñêàòå ëè äà íàñòðîèòå òîçè ïðèíòåð (\"%s\")\n"
"êàòî ïðèíòåð ïî ïîäðàçáèðàíå ?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Òåñòîâè ñòðàíèöè"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -8253,40 +8577,40 @@ msgstr ""
"âðåìå äà ñå èçïå÷àòà è íà ëàçåðíè ïðèíòåðè ñ ìàëêî ïàìåò ìîæå âúîáùå\n"
"äà íå èçëåçå.  ïîâå÷åòî ñëó÷àè å äîñòàòú÷íà ñòàíäàðòíà òåñòîâà ñòðàíèöà."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Áåç òåñòîâè ñòðàíèöè"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Ïå÷àò"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Ñòàíäàðòíà òåñòîâà ñòðàíèöà"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (Ïèñìî)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (À4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Òåñòîâà ñòðàíèöà ñúñ ñíèìêà"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "Îòïå÷àòâàíå íà òåñòîâè ñòðàíèöè"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Îòïå÷àòâàíå íà òåñòîâ(àòà/èòå) ñòðàíèö(à/è) ..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8301,7 +8625,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8309,15 +8633,15 @@ msgstr ""
"Òåñòîâèòå ñòðàíèöè ñà èçïðàòåíè êúì ïðèíòåðíà.\n"
"Ìîæå äà îòíåìå ìàëêî âðåìå ïðåäè ïðèíòåðà äà çàïî÷íå.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Ïðîðàáîòè ëè êàêòî òðÿáâà ?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8330,7 +8654,7 @@ msgstr ""
"<file>\" èëè \"kprinter <file>\". Ãðàôè÷íèòå èíñòðóìåíòè âè ïîçâîëÿâàò äà "
"èçáèðàòå ïðèíòåðà è äà ïîïðàâÿòå ëåñíî íàñòðîéêèòå íà îïöèèòå.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8340,8 +8664,8 @@ msgstr ""
"ïå÷àòíèòå äèàëîçè â ìíîƒî ïðèëîæåíèÿ. Íî ò¢ê íå ïîñòàâÿéòå èìåòî íà ôàéëà, "
"çàùîòî òî ñå ïîäàâà îò ïðèëîæåíèåòî.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8354,7 +8678,7 @@ msgstr ""
"çà îïðåäåëåíà ðàáîòà íà ïðèíòåðà. Ïðîñòî äîáàâåòå öåëàíèòå íàñòðîéêè êúì "
"êîìàíäíèÿ ðåä, íàïð. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8364,13 +8688,13 @@ msgstr ""
"Çà äà âèäèòå ñïèñúê íà äîñòúïíèòå îïöèè çà òåêóùèÿ ïðèíòåð, èëè ïðî÷åòåòå "
"ñïèñúêà ïîêàçàí ïî-äîëó èëè öúêíåòå íà áóòîíà \"Ñïèñúê ñ îïöèè çà ïå÷àò\".\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8379,8 +8703,8 @@ msgstr ""
"Çà äà èçïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö) èçïîëçâàéòå "
"êîìàíäàòà \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8390,7 +8714,7 @@ msgstr ""
"ïå÷àòíèòå äèàëîçè â ìíîãî ïðèëîæåíèÿ. Íî òóê íå ïîñòàâÿéòå èìåòî íà ôàéëà, "
"çàùîòî òî ñå ïîäàâà îò ïðèëîæåíèåòî.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -8400,7 +8724,7 @@ msgstr ""
"\"Ñïèñúê ñ îïöèè çà ïå÷àò\".\n"
"\n"
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8409,7 +8733,7 @@ msgstr ""
"Çà äà îòïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö), èçïîëçâàéòå "
"êîìàíäàòà \"%s <file>\" èëè \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8419,7 +8743,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8432,40 +8756,40 @@ msgstr ""
"íàñòðîéêè çà îïðåäåëåíà ðàáîòà íà ïðèíòåðà. Ïðîñòî äîáàâåòå èñêàíèòå "
"íàñòðîéêè êúì êîìàíäíèÿ ðåä, íàïð. \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Çàòâîðè"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Ñïèñúê ñ ïðèíòåðíè îïöèè"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8479,7 +8803,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8492,17 +8816,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "×åòåíå íà äàííè îò ïðèíòåðà ..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Ïðåíîñ íà íàñòðîéêà íà ïðèíòåð"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8518,7 +8842,7 @@ msgstr ""
"ïðåõâúðëÿò.\n"
"Íå âñè÷êè îïàøêè ìîãàò äà áúäàò ïðåõâúðëåíè ïî ñëåäíèòå ïðè÷èíè:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8527,7 +8851,7 @@ msgstr ""
"CUPS íå ïîääúðæà ïðèíòåðè íà Novell ñúðâúðè èëè ïðèíòåðè\n"
"èçïðàùàùè äàííè âúâ ñâîáîäíî-èçãðàäåíà êîìàíäà.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8536,11 +8860,11 @@ msgstr ""
"PDQ ïîääúðæà ñàìî ëîêàëíè ïðèíòåðè, îòäàëå÷åíè LPD ïðèíòåðè\n"
"è Socket/TCP ïðèíòåðè.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD è LPRng íå ïîääúðæà IPP ïðèíòåðè.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8549,7 +8873,7 @@ msgstr ""
"Êàòî äîïúëíåíèå, îïàøêèòå íå ñúçäàäåíè ñ òàçè ïðîãðàìà\n"
"èëè \"foomatic-configure\" íå ìîãàò äà áúäàò ïðåõâúðëÿíè."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
#, fuzzy
msgid ""
"\n"
@@ -8561,7 +8885,7 @@ msgstr ""
"îò ïðîèçâîäèòåëèòå èì èëè ñ îðèãèíàëíè CUPS äðàéâåðè íå\n"
"ìîãàò äà áúäàò ïðåõâúðëÿíè."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8571,15 +8895,15 @@ msgstr ""
"Îòáåëåæåòå ïðèíòåðèòå, êîèòî èñêàòå äà ïðåõâúðëèòå è öúêíåòå\n"
"\"Ïðåõâúðëè\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Íå ïðåõâúðëÿé ïðèíòåðè"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Ïðåõâúðëè"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8590,11 +8914,11 @@ msgstr ""
"Öúêíåòå \"Ïðåõâúðëè\", çà äà ãî ïðåçàïèøåòå.\n"
"Ìîæåòå ñúùî òàêà äà íàïèøåòå íîâî èìå èëè äà ïðîïóñíòå ïðèíòåðà."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Èìåòî íà ïðèíòåðà òðÿáâà äà ñúäúðæà ñàìî áóêâè, ÷èñëà è ïîä÷åðòàâêà"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8603,16 +8927,16 @@ msgstr ""
"Ïðèíòåðúò \"%s\" âå÷å ñúùåñòâóâà,\n"
"íàèñòèíà ëè èñêàòå äà ïðåçàïèøåòå íàñòðîéêàòà ?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Íîâî èìå íà ïðèíòåð"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Ïðåõâúðëÿíå íà %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8622,29 +8946,29 @@ msgstr ""
"Èñêàòå ëè äà ãî îñòàâèòå ïî ïîäðàçáèðàíå â íîâàòà\n"
"ïðèíòåðíà ñèñòåìà %s ?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Îïðåñíÿâàíå íà äàííèòå îò ïðèíòåðà ..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Íàñòðîéêà íà îòäàëå÷åí ïðèíòåð"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Ñòàðòèðàíå ìðåæàòà ...."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Â ìîìåíòà íàñòðîéâàì ìðåæàòà"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Ôóíêöèîíàëíîñòòà íà ìðåæàòà íå å íàñòðîåíà"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8652,11 +8976,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Ïðîäúëæè áåç íàñòîéêà íà ìðåæàòà"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8666,7 +8990,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8678,24 +9002,24 @@ msgstr ""
"ñè. Òîãàâà îïèòàéòå äà íàñòðîèòå îòäàëå÷åíèÿ ïðèíòåð\n"
"îòíîâî."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Ðåñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "âèñîêî"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "ïàðàíîè÷íî"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Èíñòàëèðàíå íà ïðèíòåðíàòà ñèñòåìà â %s íèâî íà ñèãóðíîñò"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8710,11 +9034,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Ñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà ïðè ñòàðòèðàíå"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8728,79 +9052,75 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Ïðîâåðêà íà èíñòàëèðàíèÿ ñîôòóåð..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Èçòðèâàíå íà LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Èçòðèâàíå íà LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Èçáåðåòå ïðèíòåðåí spooler"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Êîÿ ïðèíòåðíà ñèñòåìà (spooler) èçêàòå äà èçïîëçâàòå ?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Íàñòðîéêà íà ïðèíòåðà \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Îïöèè íà ïðèíòåðà"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Ïîäãîòâÿíå íà PinterDrake ..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Íàñòðîéêà íà ïðèíòåðà \"%s\" ..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Èñêàòå ëè äà íàñòðîèòå ïå÷àòà ?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Ïå÷àòíà ñèñòåìà: "
-#: ../../printerdrake.pm_.c:2875
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Ïðèíòåð"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Ñëåäíèòå ïðèíòåðè ñà íàñòðîåíè.\n"
"Öúêíåòå íà åäèí îò òÿõ, çà äà ãî ðåäàêòèðàòå\n"
"èëè çà äà ïîëó÷èòå èíôîðìàöèÿ çà íåãî, èëè\n"
"âúðõó \"Äîáàâè Ïðèíòåð\", çà äà äîáàâèòå íîâ ïðèíòåð."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8812,29 +9132,29 @@ msgstr ""
"èëè çà äà ïîëó÷èòå èíôîðìàöèÿ çà íåãî, èëè\n"
"âúðõó \"Äîáàâè Ïðèíòåð\", çà äà äîáàâèòå íîâ ïðèíòåð."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Íàñòîéêà íà ìðåæàòà"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Íîðìàëåí ðåæèì"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Èñêàòå ëè äà íàñòðîèòå äðóã ïðèíòåð ?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Ïîïðàâè íàñòðîéêèòå íà ïðèíòåð"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8843,101 +9163,103 @@ msgstr ""
"Ïðèíòåð %s: %s %s\n"
"Êàêâî èñêàòå äà ïîïðàâèòå ïî òîçè ïðèíòåð ?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Äàâàé !"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Òèï íà âðúçêàòà êúì ïðèíòåðà"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Èìå íà ïðèíòåðà, îïèñàíèå, ìåñòîïîëîæåíèå"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Ïðîèçâîäèòåë íà ïðèíòåðà, ìîäåë, äðàéâåð"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Ïðîèçâîäèòåë íà ïðèíòåðà, ìîäåë"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Îïðåäåëè òîçè ïðèíòåð çà ïîëçâàíå ïî ïîäðàçáèðàíå"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Îòïå÷àòâàíå íà òåñòîâè ñòðàíèöè"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Èñêàòå ëè äà íàñòðîèòå äðóã ïðèíòåð ?"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Ïðåìàõâàíå íà ïðèíòåðà"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Èçòðèâàíå íà ñòàð ïðèíòåð \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Ïðèíòåð ïî ïîäðàçáèðàíå"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ïðèíòåðúò \"%s\" âå÷å å îïðåäåëåí çà ïîëçâàíå ïî ïîäðàçáèðàíå."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Íàèñòèíà ëè èñêàòå äà ïðåìàõíåòå ïðèíòåðà \"%s\" ?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Èçòðèâàíå íà ïðèíòåðà \"%s\" ..."
@@ -9349,7 +9671,7 @@ msgstr "Èíòåðíåò"
msgid "File sharing"
msgstr "Ïîäåëÿíå íà ôàéëîâå"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Ñèñòåìà"
@@ -9404,191 +9726,227 @@ msgstr "Ñúñòîÿíèå"
msgid "Stop"
msgstr "Ñåêòîð"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Ïðîòîêîë çà îñòàíàëèÿ ñâÿò"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Èíòåðíåò äîñòúï"
+msgid "Get the most from the Internet"
+msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ìóëòèìåäèÿ - Ãðàôèêà"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ðàçðàáîòêà"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Èãðè"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Êîíòðîëåí öåíòúð"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Ìðåæîâ èíòåðôåéñ"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Õîñò íà SMB ñúðâúð"
+msgid "Development simplified"
+msgstr "Ðàçðàáîòêà"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Èãðè"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Åêñïåðòíà"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
#, fuzzy
-msgid "MandrakeStore"
-msgstr "çàäúëæèòåëåí"
+msgid "Become a MandrakeExpert"
+msgstr "Åêñïåðòíà"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Åêñïåðòíà"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ìîëÿ èçëåçòå îò ñåñèÿòà è èçïîëçâàéòå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ìîëÿ âëåçòå îòíîâî â %s, çà äà àêòèâèðàòå ïðîìåíèòå"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Íå ìîãà äà ðàç÷åòà òàáëèöàòà íà äÿëîâåòå, ïðåêàëåíî å ïîâðåäåíà :(\n"
-"Ùå ñå îïèòàì äà ïðîäúëæà äà ðàç÷èñòâàì ëîøèòå äÿëîâå"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9632,12 +9990,13 @@ msgstr "Äîáàâè ïîòðåáèòåë"
msgid "Add/Del Clients"
msgstr "DHCP êëèåíò"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Ïîìîù"
@@ -9797,8 +10156,8 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Ïîçäðàâëåíèÿ !"
@@ -9825,27 +10184,31 @@ msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
msgid "Remove the last item"
msgstr "Äà ïðåìàõíà ëè loopback ôàéëà ?"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9853,7 +10216,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9861,13 +10224,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "Òåñòîâè ñòðàíèöè"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9876,16 +10246,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Áåç ïàðîëà"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Íå ìîãà äà îòâîðÿ %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -9896,63 +10291,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Backup User files..."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
#, fuzzy
msgid "Backup Other files..."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -9960,803 +10360,926 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Èçáîð íà ïàêåòè"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ïðåìàõíè Windows(TM)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
#, fuzzy
msgid "Users"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Ïðåõâúðëè"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
#, fuzzy
msgid "Please enter your login"
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
#, fuzzy
msgid "Please enter your password"
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
#, fuzzy
msgid "Remember this password"
msgstr "îùå âåäíúæ ïàðîëà"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Ïðåõâúðëè"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Èçáåðåòå ôàéë"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
#, fuzzy
msgid "Use tape to backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
#, fuzzy
msgid "Network"
msgstr "Ìðåæîâ èíòåðôåéñ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Âèä"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
#, fuzzy
msgid "Use daemon"
msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
#, fuzzy
msgid "What"
msgstr "Åäèí ìîìåíò"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
#, fuzzy
msgid "More Options"
msgstr "Îïöèè íà ìîäóëà:"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
#, fuzzy
msgid "Backup system"
msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Óñòðîéñòâî íà ìèøêàòà: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îïöèè"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
#, fuzzy
msgid " Restore Configuration "
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
#, fuzzy
msgid "FTP Connection"
msgstr "LAN âðúçêà"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
#, fuzzy
msgid "Secure Connection"
msgstr "Èçáåðåòå âðúçêà êúì ïðèíòåðà"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Âúçñòàíîâè îò äèñêåòà"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Other Media"
msgstr "Äðóãà"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
#, fuzzy
msgid "Restore system"
msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
#, fuzzy
msgid "Restore Users"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore Other"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Èçòðèâàíå íà îïàøêàòà"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Âúçñòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Âúçñòàíîâè îò äèñêåòà"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Âúçñòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Èìå íà õîñò:"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Ïàðîëà"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Ïîòðåáèòåëñêî èìå"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Èìå íà õîñò:"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Âúçñòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Êëèåíòñêà"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Âúçñòàíîâè îò ôàéë"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
#, fuzzy
msgid "Previous"
msgstr "<- Ïðåäèøåí"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ñúñòîÿíèå"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup_.c:3553
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3574
-msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò èíñòàëèðàíè"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Çàïàçè âúâ ôàéë"
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íàñòðîéêà"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10788,7 +11311,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10797,7 +11320,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10838,45 +11361,45 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10893,7 +11416,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10933,7 +11456,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10944,7 +11467,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10957,7 +11480,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11038,9 +11561,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Êîíçîëíè èíñòðóìåíòè"
@@ -11092,26 +11615,26 @@ msgstr "Ïðèíòåð"
msgid "Configuration Wizards"
msgstr "Ìàãüîñíèê çà íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Èäåíòèôèêàöèÿ"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Èçáîð íà ïàêåòè"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Ìîëÿ èç÷àêàéòå"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11123,21 +11646,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "ïîðò"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
@@ -11587,7 +12110,7 @@ msgstr "Ìÿñòî íà ìîíòèðàíå"
#: ../../standalone/drakfont_.c:909
#, fuzzy
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Èçáåðåòå äÿëîâåòå, êîèòî èñêàòå äà ôîðìàòèðàòå"
#: ../../standalone/drakfont_.c:918
@@ -11669,19 +12192,19 @@ msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
msgid "Post Uninstall"
msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Ñïîäåëÿíå íà âðúçêàòà ñ Èíòåðíåò"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Ñïîäåëÿíåòî íà âðúçêàòà êúì Èíòåðíåò å âå÷å àêòèâèðàíî"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11693,31 +12216,31 @@ msgstr ""
"\n"
"Êàêâî èñêàòå äà íàïðàâèòå ?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "èçêëþ÷è"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "îñòàâè"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ïðåíàñòðîéêà"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Èçêëþ÷âàíå íà ñúðâúðè ..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà â ìîìåíòà å èçêëþ÷åíî."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å èçêëþ÷åíî."
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11729,19 +12252,19 @@ msgstr ""
"\n"
"Êàêâî èñêàòå äà íàïðàâèòå ?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "âêëþ÷è"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Âêëþ÷âàíå íà ñúðâúðè ..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò â ìîìåíòà å âêëþ÷åíî."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11757,21 +12280,21 @@ msgstr ""
"Îòáåëåæåòå: òðÿáâà âè îòäåëåí çà òîâà ìðåæîâ àäàïòåð, çà äà óñòàíîâèòå "
"âúòðåøíàòà ñè ìðåæà (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Èíòåðôåéñ %s (èçïîëçâàù ìîäóë %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Èíòåðôåéñ %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11779,11 +12302,11 @@ msgstr ""
"Â ñèñòåìàòà íå å îòêðèò ethernet ìðåæîâ àäàïòåð. Ìîëÿ, ñòàðòèðàéòå "
"èíñòðóìåíòà çà íàñòðîéêà íà õàðäóåð."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Ìðåæîâ èíòåðôåéñ"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11798,19 +12321,19 @@ msgstr ""
"\n"
"Ñìÿòàì äà óñòàíîâÿ ëîêàëíàòà âè ìðåæà íà òîçè àäàïòåð."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Ìîëÿ èçáåðåòå êîé ìðåæîâ àäàïòåð äà áúäå âêëþ÷åí êúì ëîêàëíàòà âè ìðåæà."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
#, fuzzy
msgid "Network interface already configured"
msgstr "Ôóíêöèîíàëíîñòòà íà ìðåæàòà íå å íàñòðîåíà"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11820,17 +12343,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Àâòîìàòè÷íà íàñòðîéêà íà CUPS"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ïîïðàâè íàñòðîéêèòå íà ïðèíòåð"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11841,7 +12364,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11853,55 +12376,43 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP íà CUPS ñúðâúðà"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Âúçìîæåí êîíôèêò ñ àäðåñèòå â LAN ñ íàñòðîéêàòà íà %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà !"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Âíèìàíèå ! Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà. Ìîæå äà ñå íàëîæè íÿêàêâà "
-"ðú÷íà ïîïðàâêà ñëåä èíñòàëàöèÿòà."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Íàñòðîéêà ..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Íàñòðîéâàùè ñêðèïòîâå, èíñòàëèðàíå íà ñîôòóåð, ñòàðòèðàíå íà ñúðâúðè..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Ïðîáëåìè ñ èíñòàëèðàíåòî íà ïàêåòà %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11911,23 +12422,23 @@ msgstr ""
"Ñåãà ìîæåòå äà ñïîäåëèòå Èíòåðíåò âðúçêàòà ñè ñ äðóãè êîìïþòðè â ëîêàëíàòà "
"âè ìðåæà èçïîëçâàéêè àâòîìàòè÷íà ìðåæîâà íàñòðîéêà (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Óñòàíîâêàòà âå÷å å íàïðàâåíà, íî â ìîìåíòà å èçêëþ÷åíà."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Óñòàíîâêàòà âå÷å å íàïðàâåíà è â ìîìåíòà å âêëþ÷åíà."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Íÿìà íàñòðîéâàíî ñïîäåëÿíå íà Èíòåðíåò âðúçêàòà."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Íàñòðîéêà íà ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11942,6 +12453,158 @@ msgstr ""
"\n"
"Öúêíåòå ``Íàñòðîé'', àêî èñêàòå äà ñòàðòèðàíå óñòàíîâÿâàùèÿ ìàãüîñíèê."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Íå ñâúðçàí"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "ñúäàâàíå íà ñòàðòèðàùà äèñêåòà"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Èçáåðåòå ôàéë"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Îáùî èìå"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Èçõîä"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Íàñòðîéêà íà óñëóãèòå"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "óñòðîéñòâî"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Èçáåðåòå ìîíèòîð"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Èçáîð ìîäåë íà ïðèíòåðà"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Çàñè÷àíå íà óñòðîéñòâà ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12034,11 +12697,11 @@ msgid ""
msgstr ""
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr ""
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr ""
#: ../../standalone/drakxtv_.c:114
@@ -12116,7 +12779,7 @@ msgstr "Íå ìîãà äà ïóñíà îáíîâÿâàíåòî !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "ëîãäðåéê"
@@ -12299,7 +12962,7 @@ msgstr "èíòåðåñåí"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
#: ../../standalone/logdrake_.c:443
@@ -12321,19 +12984,19 @@ msgstr "Íàñòðîéêà íà öâåòîâå"
msgid "Please enter your email address below "
msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Çàïàçè êàòî..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Äà ñèìóëèðàì ëè òðåòè áóòîí ?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "×åòåíå íà äàííè îò ïðèíòåðà ..."
@@ -12346,34 +13009,45 @@ msgstr "Çàñè÷àíå íà óñòðîéñòâà ..."
msgid "Test ports"
msgstr "Òåñòâàíå ïîðòîâåòå"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Èñêàòå ëè äà íàñòðîèòå ïå÷àòà ?"
+
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
#, fuzzy
msgid "Select a scanner"
msgstr "Èçáåðåòå ãðàôè÷íà êàðòà"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Ñòàðòèðàùî óñòðîéñòâî"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12381,7 +13055,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12389,48 +13063,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Íàñòðîéêà íà Çàùèòíà Ñòåíà"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Íàñòðîéêà íà Çàùèòíà Ñòåíà"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Çàùèòíà ñòåíà\n"
-"\n"
-"Âå÷å ñòå íàñòðîèëè çàùèòíà ñòåíà.\n"
-"Öúêíåòå Íàñòðîé, çà äà óñòàíîâèòå ñòàíäàðòíà çàùèòíà ñòåíà"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Çàùèòíà ñòåíà\n"
-"\n"
-"Öúêíåòå Íàñòðîé, çà äà óñòàíîâèòå ñòàíäàðòíà çàùèòíà ñòåíà"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Èçáîð íà åçèê"
@@ -12504,222 +13148,7 @@ msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
msgid "Exit install"
msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Íàñòðîé÷èê çà ìàëêà çàùèòíà ñòåíà\n"
-"\n"
-"Òîâà íàñòðîéâà ïåðñîíàëíà çàùèòíà ñòåíà çà òàçè Mandrake Linux ìàøèíà.\n"
-"Çà ìîùíî ïîñòâåòåíî íà çàùèòàòà ðåøåíèå, ìîëå, ïîãëåäíåòå ñïåöèàëèçèðàíàòà\n"
-"MandrakeSecurity Firewall äèñòðèáóöèÿ."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ñåãà ùå âè çàäàäåì âúïðîñè çà òîâà, êúì êîè óñëóãè áèõòå èñêàëè äà\n"
-"ïîçâîëèòå íà Èíòåðíåò äà ñâúðçâà. Ìîëÿ, ïîìèñëåòå âíèìàòåëíî ïî\n"
-"òåçè âúïðîñè, òúé êàòî ñèãóðíîñòòà íà êîìïþòúðà âè å âàæíà.\n"
-"\n"
-"Ìîëÿ, àêî â ìîìåíòà íå èçïîëçâàòå íÿêîÿ îò óñëóãèòå, çàùèòåòå ÿ.\n"
-"Ìîæåòå äà ïðîìåíèòå íàñòðîéêàòà ïî âñÿêî âðåìå, àêî èñêàòå, êàòî\n"
-"ñòàðòèðàòå îòíîâî òîâà ïðèëîæåíèå !"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Èçïîëçâàòå ëè Web ñúðâúð íà òàçè ìàøèíà, êîéòî èñêàòå öåëèÿò Èíòåðíåò\n"
-"çà âèæäà ? Àêî èçïîëçâàòå, êîéòî òðÿáâà äà áúäå äîñòúïåí îò òàçè ìàøèíà,\n"
-"ìîæåòå ñïîêîéíî äà îòãîâîðèòå ñ Íå òóê.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Èçïîëçâàòå ëè Name ñúðâúð íà òàçè ìàøèíà ? Àêî íå èñêàòå äà ïðåäîñòàâÿòå\n"
-"èíôîðìàöèÿ çà IP-òà è çîíè íà öåëèÿ Èíòåðíåò, ìîëÿ, îòãîâîðåòå Íå.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Èñêàòå ëè äà ðàçðåøèòå âõîäÿùè Secure SHell (SSH) âðúçêè ? Òîâà å\n"
-"çàìåñòèòåë íà telnet, êîéòî ìîæåòå äà èçïîëçâàòå çà âëèçàíå. Àêî â\n"
-"ìîìåíòà èçïîëçâàòå telnet, îïðåäåëåíî òðÿáâà äà ïðåìèíåòå êúì SSH.\n"
-"Telnet íå å êðèïòèðàí -- òàêà ÷å íÿêîè àòàêóâàùè ìîãàò äà îòêðàäíàò\n"
-"ïàðîëàòà âè, àêî ãî èçïîëçâàòå. SSH å êðèïòèðàí è èçêëþ÷âà òàêàâà\n"
-"èçäúíêà."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Èñêàòå ëè äà ïîçâîëèòå âõîäÿùè telnet âðúçêè ?\n"
-"Òîâà å óæàñíî íåñèãóðíî, êàêòî îáÿñíèõìå â ïðåäèøíèÿ åêðàí. Ñèëíî\n"
-"âè ïðåïîðú÷âàìå äà îòãîâîðèòå Íå òóê è äà èçïîëçâàòå SSH âìåñòî\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Èìàòå ëè FTP ñúðâúð òóê, êîéòî òðÿáâà äà å äîñòúïåí çà Èíòåðíåò ?\n"
-"Àêî èìàòå, ñèëíî âè ïðåïîðú÷âàìå äà ãî èçïîëçâàòå çà àíîíèìíè òðàíñôåðè.\n"
-"Âñè÷êè ïàðîëè èçïðàùàíè ïî FTP ìîãàò äà áúäàò îòêðàäíàòè îò àòàêóâàùà\n"
-"ëè÷íîñò, òúé êàòî FTP íå èçïîëçâà êðèïòîãðàôèÿ çà ïðåõâúðëÿíåòî èì.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Èìàòå ëè ïîùåíñêè ñúðâúð òóê ? Àêî èçïðàùàòå ñúîáùåíèÿòà ñè\n"
-"÷ðåç pine, mutt èëè êàêúâòî è äà å äðóã òåêñòîâ ïîùåíñêè êëèåíò,\n"
-"ìîæå áè èìàòå.  ïðîòèâåí ñëó÷àé, òðÿáâà äà çàùèòèòå òîâà.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Èìàòå ëè POP èëè IMAP ñúðâúð òóê ? Òîâà ìîæå äà áúäå\n"
-"èçïîëçâàíî äà ïðèþòÿâàíå íà íå-web-áàçèðàíè ïîùåíñêè àêàóíòè\n"
-"ïðåç òàçè ìàøèíà.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Ñÿêàø èçïîëçâàòå 2.2 ÿäðî. Àêî ìðåæîâîòî IP àâòîìàòè÷íî ñå\n"
-"îïðåäåëÿ îò êîìïþòúð ó âàñ èëè â îôèñà (äèíàìè÷íî ïîñòàâÿíî),\n"
-"òðÿáâà äà ïîçâîëèì òîâà. Òàêúâ ëè å ñëó÷àÿ ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Âðåìåòî íà êîìïþòúðà âè ñèíõðîíèçèðà ëè ñå ñ äðóã êîìïþòúð ?\n"
-"Òîâà ãëàâíî ñå èçïîëçâà â ñðåäíî-ãîëåìè Unix/Linux îðãàíèçàöèè,\n"
-"çà äà ñè ñèíõðîíèçèðà âðåìåòî çà çàïèñâàíå íà ñòàòóñà è òàêèâà ðàáîòè.\n"
-"Àêî íå ñòå ÷àñò îò ïî-ãîëÿì îôèñ è íå ñòå ÷óâàëè çà òàêîâà íåùî,\n"
-"ìîæå áè íå âè òðÿáâà."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Íàñòðîéêàòà çàâúðøåíà. Äà çàïèøåì ëè ïðîìåíèòå íà äèñêà ?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Íå ìîãà äà îòâîðÿ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Íå ìîãà äà îòâîðÿ %s çà çàïèñ: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Íàñòðîéêà íà Çàùèòíà Ñòåíà"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:230
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Ìîëÿ, èç÷àêàéòå, ïîäãîòâÿíå íà èíñòàëàöèÿòà"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12852,6 +13281,10 @@ msgid "Graphical Environment"
msgstr "Ãðàôè÷íà ñðåäà"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Ðàçðàáîòêà"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache è Pro-ftpd"
@@ -12962,95 +13395,217 @@ msgstr "Ìóëòèìåäèÿ - îïè÷àíå íà CD"
msgid "Scientific Workstation"
msgstr "Íàó÷íà ðàáîòíà ñòàíöèÿ"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "Ïúðâèÿ ïúò, êîãàòî îïèòàòå íàñòðîéêàòà íà X, ìîæå áè íÿìà äà ñòå äîâîëíè "
+#~ "îò\n"
+#~ "îò âèäà (åêðàíúò å ïðåêàëåíî ìàëúê, îòìåñòåí íàëÿâî èëè íàäÿñíî...). "
+#~ "Âúïðåêè\n"
+#~ "òîâà, äàæå àêî X òðúãíå êàòî õîðàòà, DrakX ùå âè ïîïèòà äàëè íàñòðîéêàòà "
+#~ "âè\n"
+#~ "äîïàäà. Ñúùî òàêà, ÷å âè ïðåäëîæè ïðîìÿíà, êàòî ïîêàæå ñïèñúê íà âàëèäíè\n"
+#~ "ðåæèìè, êîèòî å óñïÿë äà íàìåðè, ñ ìîëáà äà ïîñî÷èòå åäèí.\n"
+#~ "\n"
+#~ "Êàòî ïîñëåäíà âúçìîæíîñò, àêî âñå îùå íå ìîæåòå äà ïîäêàðàòå X, èçáåðåòå\n"
+#~ "\"Ïðîìÿíà íà ãðàôè÷íàòà êàðòà\", ïîñî÷èòå \"Íåèçáðîåíà êàðòà\", è, "
+#~ "êîãàòî\n"
+#~ "áúäåòå ïîïèòàíè êîé ñúðâúð äà áúäå èçïîëçâàí, èçáåðåòå \"FBDev\". Òîâà å\n"
+#~ "áåçãðåøíà îïöèÿ, êîÿòî ðàáîòè íà âñÿêà ïî-íîâà êàðòà. Òîãàâà èçáåðåòå "
+#~ "\"Îïèòàé ïàê\", çà äà ñòå ñèãóðíè."
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (íå ðàáîòè íà ñòàðè BIOS-è)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Íÿìàòå íèêàêâè äÿëîâå!"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
#~ msgstr ""
-#~ "Òîâà íèâî ñå èçïîëçâà ñ âíèìàíèå. Òîâà êàðà ñèñòåìàòà âè ïî-ëåñíà çà\n"
-#~ "óïîòðåáà, íî å ïî-÷óâñòâèòåëíî: íå òðÿáâà äà áúäå èçïîëçâàíà íà ìàøèíè\n"
-#~ "ñâúðçàíè ñ äðóãè èëè ïî Èíòåðíåò. Íÿìà äîñòúï ñ ïàðîëè."
+#~ "DiskDrake íå óñïÿ äà ðàç÷åòå ïðàâèëíî òàáëèöàòà íà äÿëîâåòå.\n"
+#~ "Ïðîäúëæèòå íà ñîáñòâåí ðèñê !"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
#~ msgstr ""
-#~ "Ñ òîâà íèâî íà ñèãóðíîñò, ïîëçâàíåòî íà ñèñòåìàòà êàòî ñúðâúð ñòàâà "
-#~ "âúçìîæíî.\n"
-#~ "Ñèãóðíîñòòà ñåãà å äîñòàòú÷íî ãîëÿìà äà ñå èçïîëçâà ñèñòåìàòà êàòî\n"
-#~ "ñúðâúð ïðèåìàù âðúçêè îò ìíîãî êëèåíòè. "
+#~ "Íå ìîãà äà ðàç÷åòà òàáëèöàòà íà äÿëîâåòå, ïðåêàëåíî å ïîâðåäåíà :(\n"
+#~ "Ùå ñå îïèòàì äà ïðîäúëæà äà ðàç÷èñòâàì ëîøèòå äÿëîâå"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Îïöèè"
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Íàñòðîéêà íà Çàùèòíà Ñòåíà"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Ñèãóðíîñò"
+#~ msgid "Firewalling configuration"
+#~ msgstr "Íàñòðîéêà íà Çàùèòíà Ñòåíà"
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Çàùèòíà ñòåíà\n"
+#~ "\n"
+#~ "Âå÷å ñòå íàñòðîèëè çàùèòíà ñòåíà.\n"
+#~ "Öúêíåòå Íàñòðîé, çà äà óñòàíîâèòå ñòàíäàðòíà çàùèòíà ñòåíà"
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Çàùèòíà ñòåíà\n"
+#~ "\n"
+#~ "Öúêíåòå Íàñòðîé, çà äà óñòàíîâèòå ñòàíäàðòíà çàùèòíà ñòåíà"
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Ñåãà ùå âè çàäàäåì âúïðîñè çà òîâà, êúì êîè óñëóãè áèõòå èñêàëè äà\n"
+#~ "ïîçâîëèòå íà Èíòåðíåò äà ñâúðçâà. Ìîëÿ, ïîìèñëåòå âíèìàòåëíî ïî\n"
+#~ "òåçè âúïðîñè, òúé êàòî ñèãóðíîñòòà íà êîìïþòúðà âè å âàæíà.\n"
+#~ "\n"
+#~ "Ìîëÿ, àêî â ìîìåíòà íå èçïîëçâàòå íÿêîÿ îò óñëóãèòå, çàùèòåòå ÿ.\n"
+#~ "Ìîæåòå äà ïðîìåíèòå íàñòðîéêàòà ïî âñÿêî âðåìå, àêî èñêàòå, êàòî\n"
+#~ "ñòàðòèðàòå îòíîâî òîâà ïðèëîæåíèå !"
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "URL òðÿáâà äà çàïî÷âà ñ 'ftp:'"
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èçïîëçâàòå ëè Web ñúðâúð íà òàçè ìàøèíà, êîéòî èñêàòå öåëèÿò Èíòåðíåò\n"
+#~ "çà âèæäà ? Àêî èçïîëçâàòå, êîéòî òðÿáâà äà áúäå äîñòúïåí îò òàçè ìàøèíà,\n"
+#~ "ìîæåòå ñïîêîéíî äà îòãîâîðèòå ñ Íå òóê.\n"
+#~ "\n"
-#, fuzzy
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èçïîëçâàòå ëè Name ñúðâúð íà òàçè ìàøèíà ? Àêî íå èñêàòå äà ïðåäîñòàâÿòå\n"
+#~ "èíôîðìàöèÿ çà IP-òà è çîíè íà öåëèÿ Èíòåðíåò, ìîëÿ, îòãîâîðåòå Íå.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Ïðåìàõíè Windows(TM)"
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Èñêàòå ëè äà ðàçðåøèòå âõîäÿùè Secure SHell (SSH) âðúçêè ? Òîâà å\n"
+#~ "çàìåñòèòåë íà telnet, êîéòî ìîæåòå äà èçïîëçâàòå çà âëèçàíå. Àêî â\n"
+#~ "ìîìåíòà èçïîëçâàòå telnet, îïðåäåëåíî òðÿáâà äà ïðåìèíåòå êúì SSH.\n"
+#~ "Telnet íå å êðèïòèðàí -- òàêà ÷å íÿêîè àòàêóâàùè ìîãàò äà îòêðàäíàò\n"
+#~ "ïàðîëàòà âè, àêî ãî èçïîëçâàòå. SSH å êðèïòèðàí è èçêëþ÷âà òàêàâà\n"
+#~ "èçäúíêà."
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Òàáëèöà"
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Èñêàòå ëè äà ïîçâîëèòå âõîäÿùè telnet âðúçêè ?\n"
+#~ "Òîâà å óæàñíî íåñèãóðíî, êàêòî îáÿñíèõìå â ïðåäèøíèÿ åêðàí. Ñèëíî\n"
+#~ "âè ïðåïîðú÷âàìå äà îòãîâîðèòå Íå òóê è äà èçïîëçâàòå SSH âìåñòî\n"
+#~ "telnet.\n"
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP ñúðâúð"
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Èìàòå ëè FTP ñúðâúð òóê, êîéòî òðÿáâà äà å äîñòúïåí çà Èíòåðíåò ?\n"
+#~ "Àêî èìàòå, ñèëíî âè ïðåïîðú÷âàìå äà ãî èçïîëçâàòå çà àíîíèìíè òðàíñôåðè.\n"
+#~ "Âñè÷êè ïàðîëè èçïðàùàíè ïî FTP ìîãàò äà áúäàò îòêðàäíàòè îò àòàêóâàùà\n"
+#~ "ëè÷íîñò, òúé êàòî FTP íå èçïîëçâà êðèïòîãðàôèÿ çà ïðåõâúðëÿíåòî èì.\n"
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èìàòå ëè ïîùåíñêè ñúðâúð òóê ? Àêî èçïðàùàòå ñúîáùåíèÿòà ñè\n"
+#~ "÷ðåç pine, mutt èëè êàêúâòî è äà å äðóã òåêñòîâ ïîùåíñêè êëèåíò,\n"
+#~ "ìîæå áè èìàòå.  ïðîòèâåí ñëó÷àé, òðÿáâà äà çàùèòèòå òîâà.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Èìàòå ëè POP èëè IMAP ñúðâúð òóê ? Òîâà ìîæå äà áúäå\n"
+#~ "èçïîëçâàíî äà ïðèþòÿâàíå íà íå-web-áàçèðàíè ïîùåíñêè àêàóíòè\n"
+#~ "ïðåç òàçè ìàøèíà.\n"
+#~ "\n"
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Ñÿêàø èçïîëçâàòå 2.2 ÿäðî. Àêî ìðåæîâîòî IP àâòîìàòè÷íî ñå\n"
+#~ "îïðåäåëÿ îò êîìïþòúð ó âàñ èëè â îôèñà (äèíàìè÷íî ïîñòàâÿíî),\n"
+#~ "òðÿáâà äà ïîçâîëèì òîâà. Òàêúâ ëè å ñëó÷àÿ ?\n"
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Âðåìåòî íà êîìïþòúðà âè ñèíõðîíèçèðà ëè ñå ñ äðóã êîìïþòúð ?\n"
+#~ "Òîâà ãëàâíî ñå èçïîëçâà â ñðåäíî-ãîëåìè Unix/Linux îðãàíèçàöèè,\n"
+#~ "çà äà ñè ñèíõðîíèçèðà âðåìåòî çà çàïèñâàíå íà ñòàòóñà è òàêèâà ðàáîòè.\n"
+#~ "Àêî íå ñòå ÷àñò îò ïî-ãîëÿì îôèñ è íå ñòå ÷óâàëè çà òàêîâà íåùî,\n"
+#~ "ìîæå áè íå âè òðÿáâà."
-#, fuzzy
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "×åòåíå íà áàçàòà äàííè îò ïðèíòåðè ..."
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Íàñòðîéêàòà çàâúðøåíà. Äà çàïèøåì ëè ïðîìåíèòå íà äèñêà ?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Íå ìîãà äà îòâîðÿ %s çà çàïèñ: %s\n"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "URL òðÿáâà äà çàïî÷âà ñ 'ftp:'"
#~ msgid "Control Center"
#~ msgstr "Êîíòðîëåí öåíòúð"
@@ -13134,11 +13689,6 @@ msgstr "Íàó÷íà ðàáîòíà ñòàíöèÿ"
#~ msgid "Select a graphics card"
#~ msgstr "Èçáåðåòå ãðàôè÷íà êàðòà"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Âíèìàíèå: òåñòâàíåòî íà òàçè ãðàôè÷íà êàðòà ìîæå äà \"çàìðàçè\" êîìïþòúðà "
-#~ "âè"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standard VGA, 640x480 íà 60 Hz"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 9afc9ef0b..ebcf7806e 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-08-29 09:57+0200\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -180,13 +180,13 @@ msgstr "Parzhadur"
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3918 ../../standalone/drakbackup_.c:4013
-#: ../../standalone/drakbackup_.c:4032
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Mat eo"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:95 ../../printerdrake.pm_.c:3135
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Kuitaat"
@@ -212,7 +212,7 @@ msgstr ""
msgid "Generic"
msgstr "Rummel"
-#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Dizober"
@@ -293,12 +293,12 @@ msgstr "Kartenn c'hrafek : %s"
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2113
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3872
-#: ../../standalone/drakbackup_.c:3905 ../../standalone/drakbackup_.c:3931
-#: ../../standalone/drakbackup_.c:3958 ../../standalone/drakbackup_.c:3985
-#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4072
-#: ../../standalone/drakbackup_.c:4102 ../../standalone/drakbackup_.c:4128
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
@@ -488,15 +488,15 @@ msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1095 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Tremenger"
#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Tremenger (adarre)"
@@ -532,12 +532,12 @@ msgstr "Didalvout eo ``Strishaat dibarzhoù al linenn urzhiañ'' hep tremenger"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
@@ -591,7 +591,7 @@ msgstr "Ouzhpennañ"
#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3135 ../../standalone/drakbackup_.c:2772
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Graet"
@@ -921,7 +921,7 @@ msgstr "Aotreiñ an holl dud"
msgid "No sharing"
msgstr "N'ev ket lodañ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1180 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
@@ -933,7 +933,7 @@ msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1185 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
@@ -1069,7 +1069,7 @@ msgstr ""
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1190
+#: ../../any.pm_.c:1189
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1166,8 +1166,8 @@ msgstr "N'ev ket skoazell.\n"
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
@@ -1177,7 +1177,7 @@ msgstr "/_Restr"
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1375,8 +1375,8 @@ msgstr ""
#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4898 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
@@ -2328,7 +2328,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Anv arveriad"
@@ -2465,226 +2465,235 @@ msgstr ""
msgid "Driver:"
msgstr "Servijer"
-#: ../../harddrake/sound.pm_.c:172
+#: ../../harddrake/sound.pm_.c:173
#, fuzzy
msgid "No known driver"
msgstr "Sturier X"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:176
+#: ../../harddrake/sound.pm_.c:177
#, fuzzy
msgid "Unkown driver"
msgstr "Sturier X"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:178
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
"\n"
"Please send the output of the \"lspcidrake -v\" command to\n"
-"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Logodenn"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memor kartenn (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Nullañ"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Logodenn"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1517
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
#, fuzzy
msgid "Description"
msgstr "Spisait dibarzhoù"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Dilesadur"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Diuzit ar restr"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Trobarzhell an dreuzell"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 nozelenn"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "O voullañ pajenn(où) skrid..."
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Kuitaat"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "Skoazell"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "Marc'hañ"
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Embrouiñ"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Dinoiñ ar bladenn galet"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Gwelet titouroù periantel"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
msgid "Information"
msgstr "Diskouez titouroù"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
msgid "Configure module"
msgstr "Kefluniañ al logodenn"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "Poent marc'hañ doubl %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d eilenn"
-#: ../../harddrake/ui.pm_.c:189
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:205
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
@@ -2751,22 +2760,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2845,7 +2854,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2871,10 +2880,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2909,11 +2918,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -2963,7 +2972,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -2994,24 +3003,12 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3020,7 +3017,7 @@ msgid ""
"configured."
msgstr ""
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3040,13 +3037,13 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to insert a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3079,7 +3076,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3112,10 +3111,12 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3148,7 +3149,7 @@ msgid ""
"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3176,7 +3177,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
#, fuzzy
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
@@ -3187,12 +3188,12 @@ msgid ""
"Please be patient."
msgstr "Gortozit mar plij"
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3202,7 +3203,7 @@ msgid ""
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3211,19 +3212,19 @@ msgid ""
"\"Accept\" button."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3240,26 +3241,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3287,7 +3288,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3296,7 +3297,7 @@ msgid ""
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3329,35 +3330,35 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
#, fuzzy
msgid "Please be patient. This operation can take several minutes."
msgstr "Gortozit mar plij."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3366,30 +3367,35 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3403,7 +3409,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3416,10 +3422,17 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3428,7 +3441,7 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3458,15 +3471,15 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3505,8 +3518,12 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:710
+#, fuzzy
+msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options which will be available at boot time will be displayed.\n"
"\n"
@@ -3514,17 +3531,7 @@ msgid ""
"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
"the existing options. Select an entry and click \"Modify\" to modify or\n"
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:713
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -3591,18 +3598,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -3719,7 +3726,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -3732,14 +3741,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3791,27 +3800,27 @@ msgstr ""
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
-#: ../../install_any.pm_.c:859
+#: ../../install_any.pm_.c:862
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:863
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:875
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:898 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../install_any.pm_.c:1020
+#: ../../install_any.pm_.c:1023
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4055,7 +4064,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:771
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -4165,7 +4174,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4203
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Staliañ"
@@ -4426,7 +4435,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1022
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Stokellaoueg"
@@ -4794,147 +4803,147 @@ msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:949
+#: ../../install_steps_interactive.pm_.c:950
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:950
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:991
-#: ../../install_steps_interactive.pm_.c:999
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:993
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1018 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriñ"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1024 ../../printerdrake.pm_.c:2926
-#: ../../printerdrake.pm_.c:3015
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1029
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1033
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1075
-#: ../../install_steps_interactive.pm_.c:1098
-#: ../../install_steps_interactive.pm_.c:1119
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Titouroù"
-#: ../../install_steps_interactive.pm_.c:1076
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Restroù lec'hel"
-#: ../../install_steps_interactive.pm_.c:1085
-#: ../../install_steps_interactive.pm_.c:1086 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Termeniñ tremenger root"
-#: ../../install_steps_interactive.pm_.c:1087
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../install_steps_interactive.pm_.c:1098 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4950,21 +4959,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Anv ar domani"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1162
+#: ../../install_steps_interactive.pm_.c:1163
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4994,19 +5003,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Lenner pladennig kentañ"
-#: ../../install_steps_interactive.pm_.c:1179
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1180 ../../printerdrake.pm_.c:2459
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5034,7 +5043,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5043,29 +5052,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1203
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1208
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "O krouiñ ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "O prientiñ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1228
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5073,11 +5082,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1234
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5085,16 +5094,16 @@ msgstr ""
"Fazi en ur staliañ aboot,\n"
"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Staliañ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1251
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5105,17 +5114,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1292
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1296
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1307
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5125,7 +5134,7 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremañ ?"
-#: ../../install_steps_interactive.pm_.c:1318
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5157,16 +5166,16 @@ msgstr ""
"Titouroù war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
"Staliañ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1331
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1338
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5175,16 +5184,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1343
+#: ../../install_steps_interactive.pm_.c:1344
#, fuzzy
msgid "Replay"
msgstr "Adkargañ"
-#: ../../install_steps_interactive.pm_.c:1346
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoù unan hag unan"
@@ -5194,7 +5203,8 @@ msgstr "Diuz pakadoù unan hag unan"
msgid "Mandrake Linux Installation %s"
msgstr "Staliadur Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -5222,13 +5232,13 @@ msgid "Basic"
msgstr "Diazez"
#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
-#: ../../printerdrake.pm_.c:2113
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Diaraog"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4058 ../../standalone/drakbackup_.c:4085
-#: ../../standalone/drakbackup_.c:4115 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "A heul"
@@ -5845,7 +5855,7 @@ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2115
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "A heul ->"
@@ -5901,6 +5911,68 @@ msgstr "implijit pppoe"
msgid "use pptp"
msgstr "implijit pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servijer"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Anv ar domani"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Stlennvonioù"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servijer LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "kartenn rouedad kavet ebet"
+
+#: ../../network/drakfirewall.pm_.c:129
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Amprouiñ ar porzhioù"
+
#: ../../network/ethernet.pm_.c:37
#, fuzzy
msgid ""
@@ -6228,7 +6300,7 @@ msgstr "Dibabit ar ment nevez"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3131
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
@@ -6461,68 +6533,6 @@ msgid ""
"need some manual fix after installation."
msgstr ""
-#: ../../network/tinyfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "Servijer"
-
-#: ../../network/tinyfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Anv ar domani"
-
-#: ../../network/tinyfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "Stlennvonioù"
-
-#: ../../network/tinyfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "Servijer LDAP"
-
-#: ../../network/tinyfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "kartenn rouedad kavet ebet"
-
-#: ../../network/tinyfirewall.pm_.c:129
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:147
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:148
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:154
-#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:162
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: ../../network/tinyfirewall.pm_.c:164
-#, fuzzy
-msgid "Other ports"
-msgstr "Amprouiñ ar porzhioù"
-
#: ../../network/tools.pm_.c:41
#, fuzzy
msgid "Internet configuration"
@@ -6778,7 +6788,7 @@ msgid "Unknown Model"
msgstr ""
#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
-#: ../../printerdrake.pm_.c:2249 ../../printerdrake.pm_.c:3394
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr ""
@@ -6865,10 +6875,10 @@ msgstr ""
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3052
-#: ../../printerdrake.pm_.c:3063 ../../printerdrake.pm_.c:3283
-#: ../../printerdrake.pm_.c:3335 ../../printerdrake.pm_.c:3361
-#: ../../printerdrake.pm_.c:3536 ../../printerdrake.pm_.c:3538
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6891,12 +6901,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3115
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3116
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6948,18 +6958,18 @@ msgstr "Kefluniadur goude staliañ"
#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
-#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2192
-#: ../../printerdrake.pm_.c:2345 ../../printerdrake.pm_.c:2404
-#: ../../printerdrake.pm_.c:2477 ../../printerdrake.pm_.c:2498
-#: ../../printerdrake.pm_.c:2688 ../../printerdrake.pm_.c:2729
-#: ../../printerdrake.pm_.c:2734 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2773 ../../printerdrake.pm_.c:2810
-#: ../../printerdrake.pm_.c:2863 ../../printerdrake.pm_.c:2883
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:2931
-#: ../../printerdrake.pm_.c:2977 ../../printerdrake.pm_.c:2995
-#: ../../printerdrake.pm_.c:3076 ../../printerdrake.pm_.c:3149
-#: ../../printerdrake.pm_.c:3451 ../../printerdrake.pm_.c:3506
-#: ../../printerdrake.pm_.c:3559 ../../standalone/printerdrake_.c:57
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
@@ -7064,7 +7074,7 @@ msgid ""
msgstr ""
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
-#: ../../printerdrake.pm_.c:3098 ../../printerdrake.pm_.c:3222
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
@@ -7643,16 +7653,42 @@ msgstr ""
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printerdrake.pm_.c:2029
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -7662,34 +7698,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:2038
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2042
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:2047
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:2086
+#: ../../printerdrake.pm_.c:2097
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-#: ../../printerdrake.pm_.c:2109
+#: ../../printerdrake.pm_.c:2120
#, fuzzy
msgid "Test pages"
msgstr "Amprouiñ ar porzhioù"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7697,45 +7733,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:2114
+#: ../../printerdrake.pm_.c:2125
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:2115
+#: ../../printerdrake.pm_.c:2126
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2172
+#: ../../printerdrake.pm_.c:2183
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:2175
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:2178
+#: ../../printerdrake.pm_.c:2189
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:2180
+#: ../../printerdrake.pm_.c:2191
#, fuzzy
msgid "Photo test page"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:2184
+#: ../../printerdrake.pm_.c:2195
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:2193 ../../printerdrake.pm_.c:2346
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:2218
+#: ../../printerdrake.pm_.c:2229
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7751,7 +7787,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:2222
+#: ../../printerdrake.pm_.c:2233
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7761,16 +7797,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:2229
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2251 ../../printerdrake.pm_.c:3396
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7779,15 +7815,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2279
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2282 ../../printerdrake.pm_.c:2299
-#: ../../printerdrake.pm_.c:2309
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -7796,7 +7832,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2285 ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7804,41 +7840,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2289
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2294 ../../printerdrake.pm_.c:2304
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2306
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2301 ../../printerdrake.pm_.c:2311
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2314
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7848,7 +7884,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2322
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -7857,42 +7893,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2332
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2333
+#: ../../printerdrake.pm_.c:2344
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2335
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2336
+#: ../../printerdrake.pm_.c:2347
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:2339 ../../printerdrake.pm_.c:2342
-#: ../../printerdrake.pm_.c:2343 ../../printerdrake.pm_.c:2344
-#: ../../printerdrake.pm_.c:3380 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4154
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Logodenn USB"
-#: ../../printerdrake.pm_.c:2342
+#: ../../printerdrake.pm_.c:2353
#, fuzzy
msgid "Print option list"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:2362
+#: ../../printerdrake.pm_.c:2373
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -7906,7 +7942,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2383
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -7919,18 +7955,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2864
-#: ../../printerdrake.pm_.c:3150
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2425 ../../printerdrake.pm_.c:2453
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7940,51 +7976,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2429
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2431
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2433
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2435
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2436
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2437
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2440
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2441 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7992,61 +8028,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2475
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2478
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2489
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:2499
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2507 ../../printerdrake.pm_.c:2579
-#: ../../printerdrake.pm_.c:2591
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2519
#, fuzzy
msgid "Starting network..."
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:2543 ../../printerdrake.pm_.c:2547
-#: ../../printerdrake.pm_.c:2549
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
#, fuzzy
msgid "Configure the network now"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2555
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:2545
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8054,12 +8090,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2559
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Kefluniañ ar rouedad"
-#: ../../printerdrake.pm_.c:2581
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8069,34 +8105,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2582
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:2592
+#: ../../printerdrake.pm_.c:2603
#, fuzzy
msgid "Restarting printing system..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2630
+#: ../../printerdrake.pm_.c:2641
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2631
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2632
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8111,11 +8147,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2664
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2665
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8129,65 +8165,65 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2689 ../../printerdrake.pm_.c:2730
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2811
-#: ../../printerdrake.pm_.c:2932
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2774
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2847
+#: ../../printerdrake.pm_.c:2858
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:2859
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:2909
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:2968 ../../printerdrake.pm_.c:3009
-#: ../../printerdrake.pm_.c:3397 ../../printerdrake.pm_.c:3470
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:2978
+#: ../../printerdrake.pm_.c:2989
#, fuzzy
msgid "Preparing Printerdrake..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2996 ../../printerdrake.pm_.c:3560
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
#, fuzzy
msgid "Configuring applications..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:3016
+#: ../../printerdrake.pm_.c:3027
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniañ ur voullerez ?"
-#: ../../printerdrake.pm_.c:3028
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:3080
+#: ../../printerdrake.pm_.c:3099
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8198,7 +8234,7 @@ msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:3081
+#: ../../printerdrake.pm_.c:3100
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8208,140 +8244,140 @@ msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:3107
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:3125
+#: ../../printerdrake.pm_.c:3145
#, fuzzy
msgid "Change the printing system"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:3130 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:3290 ../../printerdrake.pm_.c:3340
-#: ../../printerdrake.pm_.c:3553
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3375
+#: ../../printerdrake.pm_.c:3395
#, fuzzy
msgid "Modify printer configuration"
msgstr "Kefluniañ ar modem"
-#: ../../printerdrake.pm_.c:3377
+#: ../../printerdrake.pm_.c:3397
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3386 ../../printerdrake.pm_.c:3441
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:3387 ../../printerdrake.pm_.c:3445
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:3389 ../../printerdrake.pm_.c:3463
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3390 ../../printerdrake.pm_.c:3464
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3399 ../../printerdrake.pm_.c:3474
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3401 ../../printerdrake.pm_.c:3479
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3402 ../../printerdrake.pm_.c:3488
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3403 ../../printerdrake.pm_.c:3497
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
#, fuzzy
msgid "Print test pages"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:3404 ../../printerdrake.pm_.c:3499
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3501
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
#, fuzzy
msgid "Remove printer"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:3452
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:3477
+#: ../../printerdrake.pm_.c:3497
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:3478
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3482 ../../printerdrake.pm_.c:3485
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3483
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3486
+#: ../../printerdrake.pm_.c:3506
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3491 ../../printerdrake.pm_.c:3494
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printerdrake.pm_.c:3492
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3495
+#: ../../printerdrake.pm_.c:3515
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printerdrake.pm_.c:3503
+#: ../../printerdrake.pm_.c:3523
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3507
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
@@ -8804,166 +8840,212 @@ msgstr "Meuziad Lañsañ"
msgid "Stop"
msgstr "Rann"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/01-gnu.pl_.c:9
+#: ../../share/advertising/02-community.pl_.c:9
#, fuzzy
-msgid "Join the Free Software world"
+msgid "Get involved in the Free Software world"
msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/02-internet.pl_.c:9
+#: ../../share/advertising/03-internet.pl_.c:9
#, fuzzy
-msgid "Internet and Messaging"
-msgstr "dedennus"
+msgid "Get the most from the Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Liesvedia"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Diorren"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "C'hoarioù"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
#, fuzzy
msgid "User interfaces"
msgstr "Etrefas arveriad/X"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-#: ../../share/advertising/07-server.pl_.c:9
+#: ../../share/advertising/08-development.pl_.c:9
#, fuzzy
-msgid "Server Software"
-msgstr "Anv ar servijer SMB"
+msgid "Development simplified"
+msgstr "Diorren"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "C'hoarioù"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
#: ../../standalone.pm_.c:41
@@ -9022,12 +9104,12 @@ msgstr "Ouzhpennañ un arveriad"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3876
-#: ../../standalone/drakbackup_.c:3909 ../../standalone/drakbackup_.c:3935
-#: ../../standalone/drakbackup_.c:3962 ../../standalone/drakbackup_.c:3989
-#: ../../standalone/drakbackup_.c:4028 ../../standalone/drakbackup_.c:4049
-#: ../../standalone/drakbackup_.c:4076 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4132 ../../standalone/drakbackup_.c:4157
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Skoazell"
@@ -9261,8 +9343,8 @@ msgstr "Amprouiñ ar porzhioù"
#: ../../standalone/drakbackup_.c:788
msgid ""
"Sorry, perl-Expect is not installed/enabled. To use\n"
-"this feature, install perl-Expect and comment lines 702-704,\n"
-" as well as 718,719. Then uncomment line 717."
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
msgstr ""
#: ../../standalone/drakbackup_.c:817
@@ -9283,6 +9365,31 @@ msgstr ""
msgid "ERROR: Cannot spawn %s."
msgstr ""
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Tremenger ebet"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
@@ -9322,6 +9429,11 @@ msgstr ""
msgid "Permission problem accessing CD."
msgstr ""
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr ""
@@ -9396,17 +9508,12 @@ msgid "Can't create catalog!"
msgstr ""
#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
-#: ../../standalone/drakbackup_.c:1556 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoù"
-#: ../../standalone/drakbackup_.c:1542
-#, c-format
-msgid "%s"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1561
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr ""
@@ -9472,6 +9579,10 @@ msgstr "Anv arveriad"
msgid "Use network connection to backup"
msgstr "Restr gwareziñ siek"
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
@@ -9713,7 +9824,7 @@ msgstr "Pa"
msgid "More Options"
msgstr "Dibarzhoù ar mollad :"
-#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4476
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
@@ -10038,240 +10149,245 @@ msgid ""
"Restore Path"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3477
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3490
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3490
#, fuzzy
msgid "Restore From CD"
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3502
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3502
#, fuzzy
msgid "Restore From Tape"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3524
#, fuzzy
msgid "Restore Via Network"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3524
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3525
#, fuzzy
msgid "Host Name"
msgstr "Anv an ostiz"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3526
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3533
#, fuzzy
msgid "Password required"
msgstr "Tremenger"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3539
#, fuzzy
msgid "Username required"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3542
#, fuzzy
msgid "Hostname required"
msgstr "Anv an ostiz : "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3547
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3560
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3563
#, fuzzy
msgid "Restore Failed..."
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:3777
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3786
+#: ../../standalone/drakbackup_.c:3810
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:3832
+#: ../../standalone/drakbackup_.c:3856
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3838
+#: ../../standalone/drakbackup_.c:3862
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:3865
#, fuzzy
msgid "Restore From Catalog"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../standalone/drakbackup_.c:3881 ../../standalone/drakbackup_.c:3914
-#: ../../standalone/drakbackup_.c:3940 ../../standalone/drakbackup_.c:3967
-#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4054
-#: ../../standalone/drakbackup_.c:4081 ../../standalone/drakbackup_.c:4111
-#: ../../standalone/drakbackup_.c:4137
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Adaozañ adalek ar restr"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:3885 ../../standalone/drakbackup_.c:3971
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Enrollañ"
-#: ../../standalone/drakbackup_.c:3944
+#: ../../standalone/drakbackup_.c:3998
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:3998 ../../standalone/drakbackup_.c:4578
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
#, fuzzy
msgid "Restore"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:4177
+#: ../../standalone/drakbackup_.c:4231
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4201
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../standalone/drakbackup_.c:4224
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4247
+#: ../../standalone/drakbackup_.c:4301
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:4268
+#: ../../standalone/drakbackup_.c:4322
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:4290
+#: ../../standalone/drakbackup_.c:4344
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:4312
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4333
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4414
+#: ../../standalone/drakbackup_.c:4468
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:4416
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:4418
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:4420 ../../standalone/drakbackup_.c:4453
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4444
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4448
+#: ../../standalone/drakbackup_.c:4502
#, fuzzy
msgid "Sending files..."
msgstr "Enrollañ er restr"
-#: ../../standalone/drakbackup_.c:4534
+#: ../../standalone/drakbackup_.c:4588
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:4539
+#: ../../standalone/drakbackup_.c:4593
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:4560
+#: ../../standalone/drakbackup_.c:4614
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:4565
+#: ../../standalone/drakbackup_.c:4619
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:4570
+#: ../../standalone/drakbackup_.c:4624
#, fuzzy
msgid "Backup Now"
msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../standalone/drakbackup_.c:4604
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4653
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -10303,7 +10419,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4683
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10312,7 +10428,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4691
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -10353,7 +10469,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4730
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
@@ -10381,18 +10497,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4756 ../../standalone/drakbackup_.c:4833
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4758 ../../standalone/drakbackup_.c:4835
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4760 ../../standalone/drakbackup_.c:4837
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10409,7 +10525,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4774
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -10449,7 +10565,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -10460,7 +10576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4821
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10473,7 +10589,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4851
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -10554,9 +10670,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
msgstr ""
@@ -10608,26 +10724,26 @@ msgstr "Moullerez"
msgid "Configuration Wizards"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "X11/Arloadoù"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Pakad"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Gortozit mar plij"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -10639,21 +10755,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Paour"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
@@ -12141,7 +12257,7 @@ msgstr "Staliañ ar reizhiad"
msgid "Exit install"
msgstr "Dilezel ar staliadur"
-#: ../../ugtk.pm_.c:605
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12280,6 +12396,10 @@ msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Diorren"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
@@ -12394,6 +12514,15 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "Titouroù"
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ne da ket en-dro gant BIOSoù kozh)"
@@ -12414,120 +12543,6 @@ msgstr "Titouroù"
#~ "N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
#~ "Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
-#, fuzzy
-#~ msgid "Firewalling Configuration"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Firewalling configuration"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Can't open %s for writing: %s\n"
-#~ msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-
-#, fuzzy
-#~ msgid "Firewall Configuration Wizard"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Please Wait... Verifying installed packages"
-#~ msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
-#~ "aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un "
-#~ "ardivink\n"
-#~ "kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre "
-#~ "dremenger."
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
-#~ "servijer.\n"
-#~ "Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
-#~ "servijer\n"
-#~ "o tigemer kevreadennoù a-berzh arvaloù niverus."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Parzhadur"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "rodellek"
-
-#, fuzzy
-#~ msgid "Please choose your CD space"
-#~ msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-
-#, fuzzy
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#, fuzzy
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-
-#, fuzzy
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "ftp://... a zlefe bezañ ar proksi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "Tamil"
-#~ msgstr "Taolenn"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Servijer NTP"
-
-#, fuzzy
-#~ msgid "Set up printer manually"
-#~ msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#, fuzzy
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "O staliañ ar pakad %s"
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "O staliañ ar pakad %s"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "O staliañ pakadoù..."
-
-#, fuzzy
-#~ msgid "Control Center"
-#~ msgstr "Anv ar gevreadenn"
-
#~ msgid "Choose the tool you want to use"
#~ msgstr "Dibabit ar benveg a vennit staliañ"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 0816c3643..b859c04e6 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -3,8 +3,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-08-21 17:14GMT\n"
"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB ili više"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Izaberite X server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,27 +69,27 @@ msgstr ""
"Vaš sistem podrşava konfiguraciju više glava.\n"
"Šta şelite učiniti?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Izaberite veličinu memorije vaše grafičke karte"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfiguracija"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Koju konfiguraciju XFree ÅŸelite imati?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfiguriši sve glave odvojeno"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguriši samo karticu \"%s\" (%s)"
@@ -100,13 +100,13 @@ msgstr "Konfiguriši samo karticu \"%s\" (%s)"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"Vaša kartica moşe imati podršku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. Vašu karticu podrşava XFree %s koji moşe imati bolju podršku za 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica moşe imati podršku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"PAÅœNJA OVO JE EKSPERIMENTALNA PODRÅ KA I MOÅœE ZALEDITI VAÅ  RAČUNAR.\n"
"Vašu karticu podrşava XFree %s koji moşe imati bolju podršku za 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,53 +145,54 @@ msgstr ""
"Vaša kartica moşe imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
"PAÅœNJA OVO JE EKSPERIMENTALNA PODRÅ KA I MOÅœE ZALEDITI VAÅ  RAČUNAR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Ručno izaberi"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
#, fuzzy
msgid "Graphic Card"
msgstr "Grafička karta"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Ok"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Izlaz"
@@ -208,28 +209,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Opšti"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Poništi"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -250,11 +251,11 @@ msgstr ""
"raspon izvan mogućnosti vaÅ¡eg monitora: time moÅŸete oÅ¡tetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvjeÅŸavanja"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvjeÅŸavanja"
@@ -291,36 +292,41 @@ msgstr "Izaberite rezoluciju i dubinu boja"
msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Odustani"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Åœelite li testirati konfiguraciju?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Upozorenje: testiranje ove grafičke karte moşe zalediti računar"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -456,26 +462,22 @@ msgstr "Bootanje iz DOS/Windowsa (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne radi na starim BIOSima)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktno"
@@ -492,16 +494,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Å ifra"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Å ifra (ponovo)"
@@ -535,14 +538,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Molimo pokušajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Å ifre se ne poklapaju"
@@ -587,16 +590,16 @@ msgstr ""
"Navedene su razne stavke.\n"
"MoÅŸete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Gotovo"
@@ -608,7 +611,7 @@ msgstr "Izmjeni"
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke ÅŸelite dodati?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -702,13 +705,13 @@ msgstr "Imate li neki drugi?"
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
@@ -808,38 +811,48 @@ msgstr "dozvoli \"su\""
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "pristup rpm alatima"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "pristup rpm alatima"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Ova šifra je previše jednostavna"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadrşati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -848,32 +861,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -881,54 +894,54 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Åœelite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "MoÅŸete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga ÅŸelite instalirati?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "MoÅŸete eksportovati koristeći NFS ili Sambu. Koji ÅŸelite"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -937,11 +950,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -949,31 +962,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"MoÅŸete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Dobrodošli u Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Loš"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -983,7 +996,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa Å¡ifrom."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -991,7 +1004,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mreşni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -999,7 +1012,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"korišten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1007,7 +1020,7 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1023,7 +1036,7 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
"Internetu, moÅŸda je bolje da izaberete niÅŸi nivo."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1031,31 +1044,31 @@ msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite nivo sigurnosti"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1084,57 +1097,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moÅŸete instalirati bootloader na %s particiju\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "pomoć još nije implementirana.\n"
@@ -1142,8 +1155,8 @@ msgstr "pomoć još nije implementirana.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
@@ -1153,7 +1166,7 @@ msgstr "/_Datoteka"
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1195,94 +1208,101 @@ msgstr "Sistem instalacije"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Napravi novu particiju"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Greška"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Izaberite klasu instalacije"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1291,23 +1311,22 @@ msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguriši"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Spasi izbor paketa"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1316,44 +1335,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Sistem mod"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Ne, ne ÅŸelim da se autologiram"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, ÅŸelim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1450,49 +1469,53 @@ msgstr "Austrija"
msgid "United States"
msgstr "SAD"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Nepoznat model"
-
#: ../../diskdrake/dav.pm_.c:23
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Demontiraj"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montiraj"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1501,8 +1524,9 @@ msgstr "Opcije: %s"
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaših podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Pročitajte paşljivo!"
@@ -1541,10 +1565,17 @@ msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalji"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr ""
+"Nije pronađen nijedan lokalni štampač!\n"
+"\n"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1569,13 +1600,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Ostalo"
@@ -1583,12 +1614,12 @@ msgstr "Ostalo"
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
@@ -1598,7 +1629,7 @@ msgstr "Tip"
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Obriši"
@@ -1606,7 +1637,7 @@ msgstr "Obriši"
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1614,72 +1645,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Poništi"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Izlaz bez spašavanja"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Åœelite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Obriši sve"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Još"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Ne mogu dodati više particija"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1687,31 +1718,31 @@ msgstr ""
"Da biste imali još particija, molimo pobrišite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1719,11 +1750,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1731,112 +1762,104 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Pokušavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Premještanje"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montiraj"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Demontiraj"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem şelite?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje ÅŸelite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje ÅŸelite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1845,136 +1868,136 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Gdje ÅŸelite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne moşete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je ÅŸelite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je ÅŸelite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Premještam"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Premještam particiju..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne moÅŸe koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Åœelite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paket %s treba biti instaliran. Da li ga ÅŸelite instalirati?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1986,7 +2009,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1998,7 +2021,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2008,47 +2031,47 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2057,83 +2080,83 @@ msgstr ""
"Direktorij %s već sadrÅŸi neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Premještam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2142,7 +2165,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2150,27 +2173,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2182,7 +2205,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2194,58 +2217,62 @@ msgstr ""
"particija je za\n"
"dvojni boot vašeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Å ifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Å ifra"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Šifra (još jednom)"
@@ -2282,7 +2309,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Username"
msgstr "Korisničko ime"
@@ -2296,23 +2323,23 @@ msgstr "NIS domen"
msgid "Search servers"
msgstr "TraÅŸi servere"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška u demontiranju %s: %s"
@@ -2329,33 +2356,50 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ne mogu pročitati vašu tabelu particija, previše je oštećena za mene :(\n"
+"Mogu pokušati da pobrišem loše particije (SVI PODACI će biti izgubljeni!).\n"
+"Drugo rješenje je da onemogućim DrakX da mijenja tabelu particija.\n"
+"(greška je %s)\n"
+"\n"
+"SlaÅŸete li se sa gubitkom svih particija?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne moÅŸete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne moÅŸete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne moşete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2363,231 +2407,278 @@ msgid ""
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne moşete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Nemam Å¡ta da radim"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Greška u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Podešavanje CUPSa"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
-"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
-"greške"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Nemate nijednu particiju!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Drajver"
+
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "X drajver"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Nepoznat model"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Miš"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "hard disk model"
msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Odustani"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
#, fuzzy
msgid "Module"
msgstr "Miš"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Opis"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autentikacija"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Izaberite datoteku"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Gateway uređaj"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 dugmeta"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativna testna strana (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
#, fuzzy
msgid "/_Quit"
msgstr "Izlaz"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoć"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
#, fuzzy
msgid "/_Help..."
msgstr "/_Pomoć"
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
#, fuzzy
msgid "/_About..."
msgstr "/Pomoć/_O programu..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Ispitivanje"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Prepoznavanje hard diska"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Pogledaj hardware info"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Podešavanje miša"
+msgid "Information"
+msgstr "PrikaÅŸi informacije"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "PrikaÅŸi informacije"
+msgid "Configure module"
+msgstr "Podešavanje miša"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detektovan na portu %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Molimo sačekajte"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam štampač \"%s\" ..."
@@ -2620,16 +2711,16 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Memorija kartice (DMA)"
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Promjeni tip"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2638,11 +2729,11 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "postavka opterećenja"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2654,22 +2745,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2808,7 +2899,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2884,10 +2975,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2956,11 +3047,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3038,7 +3129,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3081,7 +3172,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
@@ -3102,31 +3195,7 @@ msgstr ""
"means that the configuration was wrong and the test will automatically end\n"
"after 10 seconds, restoring the screen."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3140,7 +3209,8 @@ msgstr ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3160,10 +3230,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3189,7 +3259,7 @@ msgstr ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3222,7 +3292,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3255,7 +3327,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Na ovom mjestu trebate izabrati gdje ÅŸelite instalirati Linux Mandrake\n"
"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -3333,7 +3407,7 @@ msgstr ""
"sigurni\n"
"Å¡ta radite."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3395,7 +3469,7 @@ msgstr ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3449,7 +3523,7 @@ msgstr ""
"Kliknite na Napredno da izaberete particije koje ÅŸelite provjeriti radi\n"
"loših blokova."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3464,12 +3538,12 @@ msgstr ""
"\n"
"Molim da imate strpljenja."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3490,7 +3564,7 @@ msgstr ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package or \"Cancel\" to abort."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3504,14 +3578,14 @@ msgstr ""
"instalaciju.\n"
"Da biste nastavili sa instalacijom, kliknite na dugme Prihvati."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3524,7 +3598,7 @@ msgstr ""
"\n"
"If you do not know what to choose, keep the default option."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3541,26 +3615,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3588,7 +3662,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3671,7 +3745,7 @@ msgstr ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3733,35 +3807,35 @@ msgstr ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
"Molimo da imate strpljenja. Ova operacija moÅŸe potrajati nekoliko minuta."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3770,11 +3844,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX sada mora znati da li ÅŸelite obaviti podrazumjevanu instalaciju\n"
"(\"Preporučeno\") ili ÅŸelite da imate veću kontrolu (\"Ekspert\"). Takođe\n"
@@ -3812,19 +3886,22 @@ msgstr ""
"instalaciju. Odgovor na neka pitanja moÅŸe biti vrlo teÅŸak ako nemate dobro\n"
"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate Å¡ta radite."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you will not even see this step. However, you\n"
@@ -3838,8 +3915,10 @@ msgstr ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3864,7 +3943,7 @@ msgstr ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales click the \"OK\" button to continue."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3877,7 +3956,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"By default, DrakX assumes you have a two-button mouse and will set it up\n"
"for third-button emulation. DrakX will automatically know whether it is a\n"
@@ -3891,7 +3977,7 @@ msgstr ""
"are good. If the mouse is not working correctly press the space bar or\n"
"[Return] to \"Cancel\" and choose again."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3899,7 +3985,7 @@ msgstr ""
"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -3929,9 +4015,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -3971,7 +4057,7 @@ msgstr ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4010,16 +4096,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO and grub are boot loaders for GNU/Linux. This stage, normally, is\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4069,13 +4146,16 @@ msgstr ""
"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4163,18 +4243,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4397,7 +4477,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4438,7 +4520,7 @@ msgstr ""
"displayed here. You can click on the button to change the parameters\n"
"associated to it."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4450,7 +4532,7 @@ msgstr ""
"biti\n"
"izgubljeni i neće se moći vratiti!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4481,7 +4563,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4506,20 +4588,29 @@ msgstr ""
"\n"
"Da li zaista ÅŸelite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4527,11 +4618,20 @@ msgstr ""
"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
+"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
+"greške"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4566,59 +4666,59 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju ÅŸelite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Izaberite veličine"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Veličina root particije u MB:"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Veličina swap particije u MB:"
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji şelite promjeniti veličinu?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sistema"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4627,7 +4727,7 @@ msgstr ""
"FAT resizer ne moşe izmjeniti vašu particiju, \n"
"došlo je do sljedeće greške: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4636,7 +4736,7 @@ msgstr ""
"Vaša Windows particija je previše fragmentirana, molimo prvo pokrenite "
"``defrag'' "
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4657,21 +4757,21 @@ msgstr ""
"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
"Kada ste sigurni, kliknite na Ok."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Koju veličinu şelite da sačuvate za windows na"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "particiji %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT promjena veličine nije uspjela: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4679,33 +4779,33 @@ msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Pobriši čitav disk"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Ukloni Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate više od jednog hard diska, na koji şelite instalirati linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4714,28 +4814,28 @@ msgstr ""
"Sada moÅŸete particionirati %s.\n"
"Kada završite, ne zaboravite spasiti sa `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Pokrećem mreÅŸu"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Zaustavljam mreÅŸu"
@@ -4747,12 +4847,12 @@ msgstr ""
"Došlo je do greške, ali ne znam kako da je riješim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4764,12 +4864,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4799,69 +4899,69 @@ msgstr "Klasa instalacije"
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne moÅŸete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Ne moşete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne moşe biti isključen"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Ne moÅŸete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4869,74 +4969,74 @@ msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga şelite isključiti?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne moÅŸete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Automatski prikaÅŸi izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "OsvjeÅŸavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje ÅŸelite instalirati"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4952,17 +5052,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Došlo je do greške kod instaliranja paketa:"
@@ -5281,7 +5381,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatura"
@@ -5329,11 +5429,11 @@ msgstr "Unaprijedi samo pakete"
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miša"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaš miš."
@@ -5365,45 +5465,20 @@ msgstr "Podešavam IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "PretraÅŸujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ne mogu pročitati vašu tabelu particija, previše je oštećena za mene :(\n"
-"Mogu pokušati da pobrišem loše particije (SVI PODACI će biti izgubljeni!).\n"
-"Drugo rješenje je da onemogućim DrakX da mijenja tabelu particija.\n"
-"(greška je %s)\n"
-"\n"
-"SlaÅŸete li se sa gubitkom svih particija?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
-"Nastavljate na vlastiti rizik!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5411,70 +5486,70 @@ msgstr ""
"nastaviti, ali da biste bootali vaš sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Šta je root particija (/) vašeg sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje ÅŸelite formatirati"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Provjeri loše blokove?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovršim instalaciju, molimo dodajte još"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "TraÅŸim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "TraÅŸim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ne moÅŸete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5483,7 +5558,7 @@ msgstr ""
"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5491,35 +5566,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiše auto_install"
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrÅŸi izbor paketa"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5528,19 +5603,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju ÅŸelite"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5550,16 +5625,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5568,21 +5643,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Post-instalacijsko podešavanje"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5656,7 +5731,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5676,160 +5751,160 @@ msgstr ""
"\n"
"Da li ÅŸelite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podešen na GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root Å¡ifru"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Bez Å¡ifre"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5845,21 +5920,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domena"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5891,19 +5966,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5929,7 +6004,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -5943,29 +6018,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, pošto XFS traşi veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Åœao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju ÅŸelite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5977,11 +6052,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Da li ÅŸelite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5989,15 +6064,15 @@ msgstr ""
"Greška u instaliranju aboota, \n"
"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6015,17 +6090,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6035,7 +6110,7 @@ msgstr ""
"\n"
"Da li zaista ÅŸelite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6068,16 +6143,16 @@ msgstr ""
"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6091,15 +6166,15 @@ msgstr ""
"\n"
"MoÅŸda ćete ÅŸeljeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -6108,7 +6183,8 @@ msgstr "Spasi izbor paketa"
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux instalacija %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6126,22 +6202,22 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Prethodni"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Sljedeći"
@@ -6214,375 +6290,375 @@ msgstr ""
msgid "Re-submit"
msgstr "Ponovo pošalji"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Å panska"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norveška"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Å vedska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "AzerbejdÅŸanska (latinica)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "uključi"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Å vicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveška)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Å vedska)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamilska (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamilska (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadşička tastatura"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6641,11 +6717,11 @@ msgstr "Opšti PS2 Miš sa kotačem"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6653,115 +6729,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 dugme"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Opšti miš sa 2 dugmeta"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Kotač"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "serijski"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Opšti miš sa 3 dugmeta"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serijski, stari C7 tip)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 dugmeta"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 dugmeta"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "nijedan"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Bez miša"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Molimo testirajte miš"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miša,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Proširi stablo"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Smanji stablo"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Prekidač između ravnog i grupnog sortiranja"
@@ -6799,6 +6885,74 @@ msgstr "koristi pppoe"
msgid "use pptp"
msgstr "koristi pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Ime domena"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Server baze podataka"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Server"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nije pronađena mreÅŸna kartica"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall podešavač\n"
+"\n"
+"On podešava lični firewall za ovaj Mandrake Linux računar.\n"
+"Za moćnu soluciju posebnog firewalla, molimo pogledajte\n"
+"specijaliziranu MandrakeSecurity Firewall distribuciju."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Testiraj portove"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6815,7 +6969,7 @@ msgstr ""
"Nije pronađen ethernet mreÅŸni adapter na vaÅ¡em sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Izaberite mreÅŸni interface"
@@ -6829,7 +6983,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mreÅŸna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Podešavam mreşu"
@@ -6845,7 +6999,7 @@ msgstr ""
"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao Å¡to je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Host name"
@@ -7149,13 +7303,13 @@ msgstr "Izaberite profil za podešavanje"
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertni mod"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
@@ -7324,11 +7478,11 @@ msgstr "Automatska IP"
msgid "Start at boot"
msgstr "Pokrenut na bootu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7340,43 +7494,55 @@ msgstr ""
"kao Å¡to je ``mojcomp.mojlab.mojafirma.com''.\n"
"MoÅŸete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mreÅŸne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Otkrivena konfiguracija firewalla!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Upozorenje! Pronađena je postojeća konfiguracija firewalla. MoÅŸda će biti "
+"potrebno neko ručno podešavanje nakon instalacije."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet konfiguracija"
@@ -7482,15 +7648,15 @@ msgstr "Å ifra naloga"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podrÅŸane na ovoj platformi"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7500,21 +7666,21 @@ msgstr ""
"Jedino rješenje je da pomjerite vaše primarne particija kako bi rupa bila "
"pored extended particija"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Loša backup datoteka"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Greška u pisanju datoteke: %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7560,150 +7726,155 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Lokalni štampač"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Udaljeni štampač"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Štampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Štampač na udaljenom lpd serveru"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Mreşni štampač (TCP/Socket)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Štampač na NetWare serveru"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja štampača"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Nepoznat model"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Lokalni štampači"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Udaljeni štampači"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB štampač \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", višenamjenski uređaj na USBu"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", višenamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", višenamjenski uređaj"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", Å¡tampa u %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, fuzzy, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Sirovo Å¡tampanje (Bez drajvera)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Default)"
@@ -7729,11 +7900,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Podešavanje CUPSa"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
@@ -7775,7 +7946,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
@@ -7783,7 +7954,7 @@ msgstr "Broj porta treba biti cijeli broj!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -7791,12 +7962,130 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Restartujem sistem za Å¡tampu ..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Sljedeći paketi će biti uklonjeni"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Sljedeći paketi će biti uklonjeni"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopiraj fontove na sistem"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Molimo izaberite na koji port je priključen vaš štampač."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Da li şelite da podesite ovaj štampač (\"%s\")\n"
+"kao podrazumjevani štampač?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Da li ÅŸelite pokrenuti konekciju prilikom boota?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Dodaj novi štampač"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7819,7 +8108,7 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije štampača."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7828,7 +8117,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7841,7 +8130,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7850,7 +8154,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7861,25 +8165,25 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Automatski prepoznaj štampače"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Lokalni štampač"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7903,50 +8207,50 @@ msgstr ""
"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Štampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB štampač \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Mreşni štampač (TCP/Socket)"
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7958,23 +8262,23 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid "No printer found!"
msgstr ""
"Nije pronađen nijedan lokalni štampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Lokalni štampač"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7982,7 +8286,7 @@ msgstr ""
"Sljedeći Å¡tampač je prepoznat automatski: ako to nije onaj koji ÅŸelite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7991,7 +8295,7 @@ msgstr ""
"koji ÅŸelite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8002,7 +8306,7 @@ msgstr ""
"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako şelite "
"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8014,7 +8318,7 @@ msgstr ""
"vaš štampač nije ispravno prepoznat ili ako şelite sami podesiti štampač, "
"uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8022,11 +8326,11 @@ msgstr ""
"Molimo izaberite port na koji je vaš štampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaš štampač."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8035,19 +8339,19 @@ msgstr ""
"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Ručno podešavanje"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd štampača"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8055,47 +8359,47 @@ msgstr ""
"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
"server i ime štampača na tom serveru."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Ime udaljenog štampača"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Ime udaljenog štampača nedostaje!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "Pokrećem mreÅŸu..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Štampam na štampač \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) štampača"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8107,46 +8411,46 @@ msgstr ""
"kao i share naziv štampača kojem şelite pristupiti i korisničko ime, šifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8170,7 +8474,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8179,7 +8483,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8187,11 +8491,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opcije NetWare štampača"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8203,43 +8507,43 @@ msgstr ""
"naziv reda za štampu na štampaču kojem şelite pristupiti i eventualno "
"korisničko ime i šifru."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Naziv reda za Å¡tampu"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije štampača"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8251,21 +8555,21 @@ msgstr ""
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on moşe varirati. Pogledajte priručnik vašeg hardware-a."
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Hostname štampača nedostaje!"
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Hostname štampača"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI uređaja štampača"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8275,11 +8579,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite paÅŸnju da nisu svi tipovi URIja "
"podrÅŸani od svih spoolera."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8287,27 +8591,27 @@ msgstr ""
"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Naziv štampača"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Čitam bazu podataka o štampačima ..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o štampačima..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Model vašeg štampača"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8333,24 +8637,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Izbor modela štampača"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Koji model štampača imate?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8364,7 +8668,7 @@ msgstr ""
"prepoznavanje modela vašeg štampača. Potraşite ispravan model na listi ako "
"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8372,11 +8676,11 @@ msgstr ""
"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"štampač) ili sličan."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Podešavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8392,11 +8696,11 @@ msgstr ""
"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
"ignorisati vaše podešenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Podešavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8408,17 +8712,17 @@ msgstr ""
"Molimo spojite vaš štampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Da biste mogli štampati sa vašim Lexmark inkjetom na ovoj konfiguraciji, "
"potrebni su vam inkjet drajveri za štampu koje obezbjeđuje Lexmark (http://"
@@ -8430,7 +8734,34 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8445,22 +8776,22 @@ msgstr ""
"ispravno podešeni. Obratite paşnju da za voma veliku kvalitetu / rezoluciju "
"Å¡tampa moÅŸe postati znatno sporija."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8469,11 +8800,11 @@ msgstr ""
"Da li şelite da podesite ovaj štampač (\"%s\")\n"
"kao podrazumjevani štampač?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8485,39 +8816,39 @@ msgstr ""
"laserskim Å¡tampačima sa malo memorije moÅŸda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Å tampaj"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Nemoj Å¡tampati testnu stranicu"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Å tampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8532,7 +8863,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8540,15 +8871,15 @@ msgstr ""
"Testna stranica je poslana štampaču.\n"
"MoÅŸe potrajati određeno vrijeme dok Å¡tampač krene.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Sirovi štampač"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8561,7 +8892,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8571,8 +8902,8 @@ msgstr ""
"dijalozima za Å¡tampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8585,7 +8916,7 @@ msgstr ""
"štampe. Jednostavno dodajte şeljena podešenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8596,7 +8927,7 @@ msgstr ""
"koja je data ispod ili kliknite na dugme \"Lista opcija za Å¡tampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8604,7 +8935,7 @@ msgstr ""
"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8613,8 +8944,8 @@ msgstr ""
"Za Å¡tampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8624,7 +8955,7 @@ msgstr ""
"dijalozima za Å¡tampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8632,7 +8963,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
"\"Lista opcija za Å¡tampu\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8641,7 +8972,7 @@ msgstr ""
"Za Å¡tampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8657,7 +8988,7 @@ msgstr ""
"zaustavlja sve zadatke Å¡tampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8670,40 +9001,40 @@ msgstr ""
"zadatak štampe. Jednostavno dodajte şeljena podešenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Å tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Å tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Å tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Štampam na štampač \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Lista opcija za Å¡tampu"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -8726,7 +9057,7 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8739,17 +9070,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Čitam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Premještanje konfiguracije štamapča"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8764,7 +9095,7 @@ msgstr ""
"zadaci štampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8772,7 +9103,7 @@ msgstr ""
"CUPS ne podrşava štampače na Novell serverima ili štampačekoji šalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8780,11 +9111,11 @@ msgstr ""
"PDQ podrşava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
"štampače.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podrşavaju IPP štampače.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8792,7 +9123,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premješteni."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8802,7 +9133,7 @@ msgstr ""
"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8812,15 +9143,15 @@ msgstr ""
"Označite štampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati štampače"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8831,11 +9162,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepišete.\n"
"MoÅŸete također unijeti novo ime ili preskočiti ovaj Å¡tampač."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8844,16 +9175,16 @@ msgstr ""
"Štampač \"%s\" već postoji,\n"
"da li sigurno ÅŸelite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Novo ime štampača"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8862,29 +9193,29 @@ msgstr ""
"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Osvjeşavam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Podešavanje udaljenog štampača"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Pokrećem mreÅŸu..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Sada podesite mreÅŸu"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Mreşna funkcionalnost nije podešena"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8896,11 +9227,11 @@ msgstr ""
"mreÅŸe, nećete moći koristiti Å¡tampač koji sada podeÅ¡avate. Kako ÅŸelite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Nastavi bez podešavanja mreşe"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8915,7 +9246,7 @@ msgstr ""
"\"Mreşa i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8925,24 +9256,24 @@ msgstr ""
"vašu konfiguraciju i vaš hardware. Onda ponovo pokušajte podesiti udaljeni "
"štampač."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Restartujem sistem za Å¡tampu ..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za Å¡tampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8966,11 +9297,11 @@ msgstr ""
"\n"
"Da li zaista şelite podesiti štampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za štampu tokom boota"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8990,75 +9321,72 @@ msgstr ""
"\n"
"Da li şelite da ponovo uključite automatsko pokretanje sistema za štampu?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Izaberite spooler štampača"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem Å¡tampanja (spooler) ÅŸelite koristiti?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Podešavam štampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opcije štampača"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Podešavam aplikacije..."
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Da li ÅŸelite podesiti Å¡tampanje?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistem Å¡tampe: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Sljedeći štampači su podešeni. Dvokliknite na štampač da promjenite njegove "
"postavke; da ga učinite podrazumjevanim štampačem; da vidite informacije o "
"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
-"Star Office/OpenOffice.org-a."
+"Star Office/OpenOffice.org/GIMP-a."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9068,29 +9396,29 @@ msgstr ""
"postavki; ako ga şelite učiniti podrazumjevanim štampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Osvjeşi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Promjenite sistem Å¡tampe"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Ŝelite li podesiti još jedan štampač?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju štampača"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9099,100 +9427,102 @@ msgstr ""
"Štampač %s\n"
"Šta şelite da izmjenite na ovom štampaču?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tip konekcije štampača"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Naziv štampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač štampača, model, drajver"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Proizvođač štampača, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Podesi štampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Ukloni ovaj štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Å tampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj štampač"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Ukloni štampač"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari štampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Podrazumjevani štampač"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Dodajem štampač u Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodajem štampač u Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr "Uklanjam štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr "Štampač \"%s\" je uspješno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr "Nisam uspio ukloniti štampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li şelite da uklonite štampač \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Uklanjam štampač \"%s\" ..."
@@ -9600,7 +9930,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistem"
@@ -9653,15 +9983,17 @@ msgstr "Start"
msgid "Stop"
msgstr "Stop"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Hvala vam Å¡to ste odabrali Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Hvala vam Å¡to ste odabrali Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
+#, fuzzy
msgid "Welcome to the Open Source world"
msgstr "Dobro došli u svijet otvorenog izvornog koda"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
+#, fuzzy
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9671,203 +10003,239 @@ msgstr ""
"operativni sistem je rezultat zajedničkog rada dijela Linux zajednice širom "
"svijeta"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "PridruÅŸite se svijetu Slobodnog softvera"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
+#, fuzzy
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Upoznajte Open Source zajednicu i postanite njen član. Učite, podučavajte i "
"pomozite drugima tako što ćete pristupiti mnogim forumima za diskusiju koje "
"ćete naći na našim \"Community\" stranicama"
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet i razmjena poruka"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Spoji se na Internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
"Mandrake Linux 8.2 pruÅŸa najbolji softver za pristup svemu Å¡to Internet "
"pruÅŸa: PretraÅŸujte web i pregledajte animacije pomoću Mozilla-e i "
"Konquerora, razmjenjujte email i organizirajte vaše lične podatke pomoću "
"Evolution i KMail-a, i mnogo drugog"
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedija i grafika"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 vam omogućuje da potjerate vaš multimedijalni računar do "
"krajnjih granica! Koristite najnoviji softver za slušanje muzike i audio "
"datoteka, mijenjajte i organizujte vaše slike i fotografije, gledajte TV i "
"video-snimke i mnogo drugog"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Programiranje"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Igre"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
-"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
+"Mandrake Linux 8.2 pruÅŸa najbolje Open Source igre - arkadne, akcione, "
+"karte, sportovi, strategije, ..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Mandrake Linux 8.2 Kontrolni centar je jedinstvena lokacija za puno "
"prilagođavanje i podešavanje vašeg Mandrake sistema"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Korisnički okoliš"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Programiranje"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mandrake Linux 8.2 nudi vam na izbor 11 različitih grafičkih desktop okolina "
-"i window managera uključujući GNOME 1.4, KDE 2.2.2, Window Maker 0.8 i druge"
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
+"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Serverski softver"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Pretvorite vaš računar u moćan server sa svega nekoliko klikova mišem: Web "
"server, email, firewall, file i print server, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Igre"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-"Mandrake Linux 8.2 pruÅŸa najbolje Open Source igre - arkadne, akcione, "
-"karte, sportovi, strategije, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Ŝelite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoft vam nudi "
-"besplatno učenje Linuxa kao i način za testiranje vašeg napretka na "
-"MandrakeCampus-u -- našem online centru za obuku"
+"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
+"'potrepštine', dostupni su u našoj online radnji"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Kvalitetna podrška od strane Linux zajednice i MandrakeSofta nalazi se odmah "
-"iza ugla. A ako ste već Linux veteran, postanite \"Expert\" i dijelite vaše "
-"znanje na našem web sajtu za podršku"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Za sve vaše IT projekte, naši konsultanti su spremni da analiziraju vaše "
-"potrebe i ponude prilagođeno rješenje. Iskoristite veliko iskustvo "
-"MandrakeSofta kao proizvođača Linux rješenja kako biste ponudili pravu IT "
-"alternativu za vaš biznis"
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
-"'potrepštine', dostupni su u našoj online radnji"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Za više informacija o MandrakeSoftovim profesionalnim uslugama i "
-"komercijalnoj ponudi, molimo posjetite sljedeću web stranicu:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
-"Pokušaću izbrisati loše particije"
-
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
@@ -9911,12 +10279,13 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pomoć"
@@ -10091,8 +10460,8 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Čestitamo!"
@@ -10116,20 +10485,24 @@ msgstr "Dodaj stavku"
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10139,7 +10512,7 @@ msgstr ""
" DrakBackup Izvještaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10151,7 +10524,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10163,13 +10536,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
#, fuzzy
msgid "Total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10178,16 +10558,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Bez Å¡ifre"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ne mogu otvoriti %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10198,60 +10603,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10259,16 +10669,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, fuzzy, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"lista datoteka poslana putem FTPa : %s\n"
+"lista datoteka poslana putem FTPa: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
#, fuzzy
msgid ""
"\n"
@@ -10279,39 +10689,39 @@ msgstr ""
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Greška tokom slanja pošte. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10319,26 +10729,26 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10346,61 +10756,65 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje şelite uključiti u vaš backup."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10409,68 +10823,68 @@ msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Molimo unesite vaš login"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Molimo unesite vašu šifru"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Zapamti ovu Å¡ifru"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Molimo izaberite vaš CD prostor"
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Molim uključite ako şelite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10478,36 +10892,36 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
#, fuzzy
msgid "No CD device defined!"
msgstr "Izaberite datoteku"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Molim uključite ako şelite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Molim uključite ako şelite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Molim uključite ako şelite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10515,57 +10929,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "MreÅŸa"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tip"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10573,7 +10987,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10581,7 +10995,7 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10589,71 +11003,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Å ta"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Više opcija"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Podešavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje ÅŸelite backupovati"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "preko mreÅŸe"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Molim izaberite Å¡ta ÅŸelite backupovati"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10661,7 +11075,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10669,7 +11083,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10677,7 +11091,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10685,64 +11099,64 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- spasi na hard disku u direktoriju : %s\n"
+"- spasi na hard disku u direktoriju: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Uređaj miša: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- spasi na FTPu na računaru : %s\n"
+"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- spasi na FTPu na računaru : %s\n"
+"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10751,7 +11165,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10759,62 +11173,62 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-MreÅŸu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-MreÅŸu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-MreÅŸu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-MreÅŸu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10822,7 +11236,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10830,156 +11244,274 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspješno spašeni na %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvjeÅŸiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "FTP konekcija"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Sigurna konekcija"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smješteni backupi"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Ukloni izabrano"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Vrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Backup datoteke su oštećene"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Vrati sa hard diska"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Vrati tabelu particija"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Vrati korisnike"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Host name"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Å ifra"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Korisničko ime"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Hostname: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Vrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Vrati tabelu particija"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Vrati korisnike"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Molimo pokrenite Izgradi backup prije vraćanja...\n"
-" ili provjerite da li je put za spašavanje ispravan."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Greška tokom sendmaila\n"
" vaš mail izvještaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10988,19 +11520,19 @@ msgstr ""
"Greška tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vašu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11008,59 +11540,59 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Å aljem datoteke..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Napredno podešavanje"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
#, fuzzy
msgid ""
"options description:\n"
@@ -11121,7 +11653,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11135,7 +11667,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11213,28 +11745,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11265,18 +11798,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11306,7 +11839,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11382,7 +11915,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11400,7 +11933,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11422,7 +11955,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11538,9 +12071,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Alati za konzolu"
@@ -11593,26 +12126,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Čarobnjak za podeÅ¡avanje mreÅŸe"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autentikacija"
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
#, fuzzy
msgid "Package: "
msgstr "Izbor paketa"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Molimo sačekajte"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11624,21 +12157,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Post Uninstall"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
@@ -12086,7 +12619,7 @@ msgid "Font List"
msgstr "Lista fontova"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Izaberite aplikacije koje će podrÅŸavati fontove :"
#: ../../standalone/drakfont_.c:918
@@ -12157,19 +12690,19 @@ msgstr "Pobriši fontove sa mog sistema"
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12181,31 +12714,31 @@ msgstr ""
"\n"
"Å ta ÅŸelite uraditi?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "otkaÅŸi"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "rekonfiguriši"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12217,19 +12750,19 @@ msgstr ""
"\n"
"Å ta ÅŸelite uraditi?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12245,21 +12778,21 @@ msgstr ""
"Napomena: potreban vam je poseban MreÅŸni adapter da biste podesili Lokalnu "
"mreÅŸu (LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nema mreşnog adaptera na vašem sistemu!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12267,11 +12800,11 @@ msgstr ""
"Na vaÅ¡em sistemu nije pronađen nijedan ethernet mreÅŸni adapter. Molimo "
"pokrenite alat za podešavanje hardware-a."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "MreÅŸni interface"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12286,18 +12819,18 @@ msgstr ""
"\n"
"Sada ću podesiti vaÅ¡u Lokalnu mreÅŸu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mreÅŸni adapter će biti spojen na vaÅ¡u Lokalnu mreÅŸu."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "MreÅŸni interfejs je već podeÅ¡en"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12312,15 +12845,15 @@ msgstr ""
"\n"
"To moşete obaviti ručno, ali morate znati šta radite."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podešavanje"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "PrikaÅŸi postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12337,7 +12870,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12356,54 +12889,42 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaš interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Lokalna mreÅŸa C klase"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreşa se ne završava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Otkrivena konfiguracija firewalla!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Upozorenje! Pronađena je postojeća konfiguracija firewalla. MoÅŸda će biti "
-"potrebno neko ručno podešavanje nakon instalacije."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Podešavam..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12413,23 +12934,23 @@ msgstr ""
"Sada moşete dijeliti Internet konekciju sa ostalim računarima na vašoj "
"lokalnoj mreÅŸi, koristeći automatsku mreÅŸnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Podešavanje je već završeno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Podešavanje je već završeno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podešeno."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Podešavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12444,6 +12965,158 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nije konektovan"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "Kreiranje boot diskete"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolucija"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Izaberi datoteku"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Share naziv"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Post-instalacijsko podešavanje"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Izlaz"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Sistem instalacije"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Podešavanje servisa"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "Uređaj"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Izaberite monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Izbor modela štampača"
+
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Morate izabrati ili unijeti štampač / uređaj!"
+
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Prepoznajem uređaje ..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12536,11 +13209,11 @@ msgstr ""
"unesite vaš tv standard i drşavu"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "TV standard :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Oblast :"
#: ../../standalone/drakxtv_.c:114
@@ -12617,7 +13290,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12795,8 +13468,9 @@ msgid "service setting"
msgstr "postavke servisa"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"Moşete primiti obavještenje ako neki od izabranih servisa prestane raditi"
@@ -12818,19 +13492,19 @@ msgstr "postavka upozorenja"
msgid "Please enter your email address below "
msgstr "Molimo unesite vašu šifru"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
#, fuzzy
msgid "Reading printer data ..."
msgstr "Čitam podatke o štampaču..."
@@ -12843,33 +13517,44 @@ msgstr "Prepoznajem uređaje ..."
msgid "Test ports"
msgstr "Testiraj portove"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s je pronađen na %s, podesi ga ?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Izaberite skener"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ovaj %s skener nije podrÅŸan"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
#, fuzzy
msgid "choose device"
msgstr "Boot uređaj"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12880,7 +13565,7 @@ msgstr ""
"MoÅŸete pokrenuti printerdrake iz Mandrake Kontrolnog centra u odjeljku "
"Hardware."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12888,48 +13573,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Podešavanje firewalla"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Podešavanje firewalla"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Već ste podesili firewall.\n"
-"Kliknite na Podesi kako bi se izmjenio ili uklonio firewall"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Kliknite na Podesi za podešavanje standardnog firewalla"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Izaberite svoj jezik"
@@ -13002,224 +13657,7 @@ msgstr "Instaliraj sistemske update"
msgid "Exit install"
msgstr "Napusti instalaciju"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall podešavač\n"
-"\n"
-"On podešava lični firewall za ovaj Mandrake Linux računar.\n"
-"Za moćnu soluciju posebnog firewalla, molimo pogledajte\n"
-"specijaliziranu MandrakeSecurity Firewall distribuciju."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sada ćemo vam postaviti pitanja o servisima kojima ÅŸelite dozvoliti\n"
-"pristup sa Interneta. Molimo razmislite paÅŸljivo o ovim pitanjima,\n"
-"jer je sigurnost vašeg računara bitna.\n"
-"\n"
-"Molimo vas, ako trenutno ne koristite neki od ovih servisa, isključite\n"
-"ga firewallom. MoÅŸete izmjeniti ove postavke kad god ÅŸelite ponovnim\n"
-"pokretanjem ove aplikacije!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut web server na ovom računaru za koji şelite da ga\n"
-"cijeli Internet vidi? Ako imate pokrenut webserver kojem ćete pristupati\n"
-"samo sa ovog računara, moşete slobodno ovdje odgovoriti NE.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut name server (DNS) na ovom računaru? Ako niste\n"
-"podesili DNS radi davanja informacija o IP i zoni cijelom Internetu, \n"
-"molimo vas odgovorite ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Da li ÅŸelite da dozvolite ulazne Secure Shell (ssh) konekcije? Ovo\n"
-"je zamjena za telnet koju moÅŸete koristiti za prijavu. Ako sada koristite\n"
-"telnet, definitivno trebate preći na ssh. Telnet nije kriptovan, tako\n"
-"da neki napadači mogu ukrasti vašu šifru ako ga koristite. ssh je\n"
-"kriptovan i ne dozvoljava ovo prisluškivanje."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Da li ÅŸelite dozvoliti ulazne telnet konekcije?\n"
-"Ovo je uşasno nesigurno, kao što je objašnjeno na prethodnom\n"
-"ekranu. Strogo preporučujemo da odgovorite Ne ovdje i koristite\n"
-"ssh umjesto telneta.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Da li imate pokrenut FTP server za koji şelite da je pristupačan sa\n"
-"Interneta? Ako da, onda strogo preporučujemo da ga koristite samo\n"
-"za anonimne transfere. Bilo koju Å¡ifru koja je poslana putem FTPa\n"
-"mogu ukrasti napadači, pošto FTP također ne koristi kriptovanje.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut mail server ovdje? Ako Å¡aljete poruke\n"
-"kroz pine, mutt ili neki drugi tekst-bazirani mail klijent, onda\n"
-"vjerovatno imate. U suprotnom, trebali biste isključiti ovo \n"
-"firewallom.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut POP ili IMAP server ovdje? Ovo bi\n"
-"bilo korišteno za smještaj ne-web-baziranih mail naloga\n"
-"za ljude na ovom računaru.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Čini se da koristite 2.2 kernel. Ako je vaÅ¡a mreÅŸna IP\n"
-"automatski podešena putem računara u vašoj kući ili\n"
-"uredu (dinamički dodjeljena), moramo ovo dozvoliti. Da\n"
-"li je ovo slučaj?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Da li vaš računar sinhronizuje vrijeme sa drugim računarom?\n"
-"Najčešće, ovo se koristi u srednje velikim Unix/Linux organizacijama\n"
-"za sinhronizaciju vremena za pravljenje dnevnika i slično. Ako\n"
-"niste dio većeg ureda i niste čuli za ovo, onda vjerovatno\n"
-"ovo nije slučaj."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Podešavanje završeno. Moşemo li zapisati ove izmjene na disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ne mogu otvoriti %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Ne, ne treba mi DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Da, treba mi DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Ne, ne treba mi NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Da, treba mi NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Nemoj snimiti"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Snimi i izađi"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Čarobnjak za podešavanje firewalla"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Ne (isključi pristup sa interneta)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Da (dozovoli pristup sa interneta)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Molim sačekajte... Provjeravam instalirane pakete"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Greška prilikom instaliranja paketa : %s i Bastille.\n"
-" Pokušajte ih instalirati ručno."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
@@ -13351,6 +13789,10 @@ msgid "Graphical Environment"
msgstr "Grafičko okruşenje"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Programiranje"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13462,46 +13904,321 @@ msgstr "Multimedija - PrÅŸenje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet i razmjena poruka"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimedija i grafika"
-#, fuzzy
#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "Ovaj nivo treba koristiti paşljivo. On čini vaš sistem lakšim za "
-#~ "upotrebu,\n"
-#~ "ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen "
-#~ "na\n"
-#~ "druge ili na Internet. Nema pristupa Å¡ifrom."
+#~ "Mandrake Linux 8.2 nudi vam na izbor 11 različitih grafičkih desktop "
+#~ "okolina i window managera uključujući GNOME 1.4, KDE 2.2.2, Window Maker "
+#~ "0.8 i druge"
+
+#~ msgid "Server Software"
+#~ msgstr "Serverski softver"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
-#, fuzzy
#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
-#~ "server.\n"
-#~ "Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
-#~ "prima\n"
-#~ "konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent "
-#~ "na Internetu, moÅŸda je bolje da izaberete niÅŸi nivo."
+#~ "Ŝelite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoft vam "
+#~ "nudi besplatno učenje Linuxa kao i način za testiranje vašeg napretka na "
+#~ "MandrakeCampus-u -- našem online centru za obuku"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcije"
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Kvalitetna podrška od strane Linux zajednice i MandrakeSofta nalazi se "
+#~ "odmah iza ugla. A ako ste već Linux veteran, postanite \"Expert\" i "
+#~ "dijelite vaše znanje na našem web sajtu za podršku"
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Sigurnost"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Za sve vaše IT projekte, naši konsultanti su spremni da analiziraju vaše "
+#~ "potrebe i ponude prilagođeno rješenje. Iskoristite veliko iskustvo "
+#~ "MandrakeSofta kao proizvođača Linux rješenja kako biste ponudili pravu IT "
+#~ "alternativu za vaš biznis"
+
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Za više informacija o MandrakeSoftovim profesionalnim uslugama i "
+#~ "komercijalnoj ponudi, molimo posjetite sljedeću web stranicu:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (ne radi na starim BIOSima)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "Nemate nijednu particiju!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
+#~ "Nastavljate na vlastiti rizik!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
+#~ "Pokušaću izbrisati loše particije"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Molimo pokrenite Izgradi backup prije vraćanja...\n"
+#~ " ili provjerite da li je put za spašavanje ispravan."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Podešavanje firewalla"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Podešavanje firewalla"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Već ste podesili firewall.\n"
+#~ "Kliknite na Podesi kako bi se izmjenio ili uklonio firewall"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Firewall\n"
+#~ "\n"
+#~ "Kliknite na Podesi za podešavanje standardnog firewalla"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Sada ćemo vam postaviti pitanja o servisima kojima ÅŸelite dozvoliti\n"
+#~ "pristup sa Interneta. Molimo razmislite paÅŸljivo o ovim pitanjima,\n"
+#~ "jer je sigurnost vašeg računara bitna.\n"
+#~ "\n"
+#~ "Molimo vas, ako trenutno ne koristite neki od ovih servisa, isključite\n"
+#~ "ga firewallom. MoÅŸete izmjeniti ove postavke kad god ÅŸelite ponovnim\n"
+#~ "pokretanjem ove aplikacije!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut web server na ovom računaru za koji şelite da ga\n"
+#~ "cijeli Internet vidi? Ako imate pokrenut webserver kojem ćete pristupati\n"
+#~ "samo sa ovog računara, moşete slobodno ovdje odgovoriti NE.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut name server (DNS) na ovom računaru? Ako niste\n"
+#~ "podesili DNS radi davanja informacija o IP i zoni cijelom Internetu, \n"
+#~ "molimo vas odgovorite ne.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Da li ÅŸelite da dozvolite ulazne Secure Shell (ssh) konekcije? Ovo\n"
+#~ "je zamjena za telnet koju moÅŸete koristiti za prijavu. Ako sada "
+#~ "koristite\n"
+#~ "telnet, definitivno trebate preći na ssh. Telnet nije kriptovan, tako\n"
+#~ "da neki napadači mogu ukrasti vašu šifru ako ga koristite. ssh je\n"
+#~ "kriptovan i ne dozvoljava ovo prisluškivanje."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Da li ÅŸelite dozvoliti ulazne telnet konekcije?\n"
+#~ "Ovo je uşasno nesigurno, kao što je objašnjeno na prethodnom\n"
+#~ "ekranu. Strogo preporučujemo da odgovorite Ne ovdje i koristite\n"
+#~ "ssh umjesto telneta.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut FTP server za koji şelite da je pristupačan sa\n"
+#~ "Interneta? Ako da, onda strogo preporučujemo da ga koristite samo\n"
+#~ "za anonimne transfere. Bilo koju Å¡ifru koja je poslana putem FTPa\n"
+#~ "mogu ukrasti napadači, pošto FTP također ne koristi kriptovanje.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut mail server ovdje? Ako Å¡aljete poruke\n"
+#~ "kroz pine, mutt ili neki drugi tekst-bazirani mail klijent, onda\n"
+#~ "vjerovatno imate. U suprotnom, trebali biste isključiti ovo \n"
+#~ "firewallom.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Da li imate pokrenut POP ili IMAP server ovdje? Ovo bi\n"
+#~ "bilo korišteno za smještaj ne-web-baziranih mail naloga\n"
+#~ "za ljude na ovom računaru.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Čini se da koristite 2.2 kernel. Ako je vaÅ¡a mreÅŸna IP\n"
+#~ "automatski podešena putem računara u vašoj kući ili\n"
+#~ "uredu (dinamički dodjeljena), moramo ovo dozvoliti. Da\n"
+#~ "li je ovo slučaj?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "Da li vaš računar sinhronizuje vrijeme sa drugim računarom?\n"
+#~ "Najčešće, ovo se koristi u srednje velikim Unix/Linux organizacijama\n"
+#~ "za sinhronizaciju vremena za pravljenje dnevnika i slično. Ako\n"
+#~ "niste dio većeg ureda i niste čuli za ovo, onda vjerovatno\n"
+#~ "ovo nije slučaj."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Podešavanje završeno. Moşemo li zapisati ove izmjene na disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Ne, ne treba mi DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Da, treba mi DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Ne, ne treba mi NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Da, treba mi NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "Nemoj snimiti"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Snimi i izađi"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Čarobnjak za podešavanje firewalla"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Ne (isključi pristup sa interneta)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Da (dozovoli pristup sa interneta)"
+
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Molim sačekajte... Provjeravam instalirane pakete"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Greška prilikom instaliranja paketa: %s i Bastille.\n"
+#~ " Pokušajte ih instalirati ručno."
#~ msgid "Data list to include on CDROM."
#~ msgstr "Lista podataka koji će biti smješteni na CDROM."
@@ -13531,14 +14248,6 @@ msgstr "Znanstvena radna stanica"
#~ "Molim izaberite ako şelite uključiti\n"
#~ " instalacijski boot na CDu."
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "NTP server"
-
#~ msgid ""
#~ "\n"
#~ "Welcome to the Printer Setup Wizard\n"
@@ -13607,36 +14316,15 @@ msgstr "Znanstvena radna stanica"
#~ "Da instalirate mreşne štampače, kliknite na \"Odustani\", prebacite na "
#~ "\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi štampač\"."
-#, fuzzy
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
-#~ msgstr ""
-#~ "Da li je vaš štampač višenamjenski uređaj od HPa (OfficeJet, PSC, "
-#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-
#~ msgid "Installing HPOJ package..."
#~ msgstr "Instaliram HPOJ paket..."
#~ msgid "Checking device and configuring HPOJ..."
#~ msgstr "Provjeravam uređaj i podešavam HPOJ ..."
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Instaliram SANE paket..."
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Instaliram pakete..."
-
#~ msgid "Scanning on your HP multi-function device"
#~ msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-
#~ msgid "Making printer port available for CUPS..."
#~ msgstr "Omogućujem CUPSu port štampača ..."
@@ -13770,12 +14458,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Choose a X driver"
#~ msgstr "Izaberite X drajver"
-#~ msgid "X driver"
-#~ msgstr "X drajver"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Upozorenje: testiranje ove grafičke karte moşe zalediti računar"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "Standardna VGA, 640x480 na 60 Hz"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 470e4f1a1..59dd891b2 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -5,8 +5,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatalà <traddrake@softcatala.org>\n"
"Language-Team: Catalan <traddrake@softcatala.org>\n"
@@ -53,19 +53,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "64 MB o més"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Escolliu un servidor X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Configuració Multi-head"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -73,27 +73,27 @@ msgstr ""
"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
"Què voleu fer?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Seleccioneu la mida de la memòria de la vostra targeta gràfica"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Configuració de l'XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Configura tots els capçals independentment"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura només la targeta \"%s\"%s"
@@ -104,13 +104,13 @@ msgstr "Configura només la targeta \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,18 +120,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,52 +154,53 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instal·lació del controlador de pantalla"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Personalitzada"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Targeta gràfica"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Resolució"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "D'acord"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Surt"
@@ -216,28 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "General"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
#, fuzzy
msgid "Vendor"
msgstr "Desfés"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -260,11 +261,11 @@ msgstr ""
"el podríeu fer malbé.\n"
"En cas de dubte, sigueu conservador amb aquest paràmetre."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
@@ -301,36 +302,42 @@ msgstr "Escolliu la resolució i la profunditat de color"
msgid "Graphics card: %s"
msgstr "Targeta gràfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Cancel·la"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Comprova la configuració"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Voleu comprovar la configuració?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
+#: ../../Xconfig/test.pm_.c:31
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -467,26 +474,22 @@ msgstr "Arrencada des de DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Instal·lació del carregador d'arrencada"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (no funciona en BIOS antics)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacte"
@@ -503,16 +506,17 @@ msgstr "Mode de vídeo"
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
@@ -548,14 +552,14 @@ msgstr ""
"L'opció ``Limita les opcions de la línia d'ordres'' no té cap ús sense una "
"contrasenya"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
@@ -605,16 +609,16 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Fet"
@@ -627,7 +631,7 @@ msgstr "Modifica"
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -713,7 +717,7 @@ msgstr "Aquesta etiqueta ja està en ús"
#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
-msgstr "S'han trobat interfícies %2$s %1$s"
+msgstr "S'han trobat interfícies %s %s"
#: ../../any.pm_.c:657
msgid "Do you have another one?"
@@ -724,13 +728,13 @@ msgstr "En teniu una altra?"
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sí"
@@ -831,39 +835,49 @@ msgstr "permet \"su\""
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "accés a les eines rpm"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "accés a les eines rpm"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
#, fuzzy
msgid "The user name is too long"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -872,33 +886,33 @@ msgstr ""
"Introduïu un usuari\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Entrada automàtica"
#
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -907,20 +921,20 @@ msgstr ""
"nom d'usuari.\n"
"Voleu activar aquesta característica?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
#
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -930,38 +944,38 @@ msgstr ""
"els llenguatges que volgueu instal·lar. Estaran disponibles\n"
"quan reinicieu el sistema després de que la instal·lació s'hagi completat."
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tots"
#
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Permet tots els usuaris"
#
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "No es comparteix"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -975,11 +989,11 @@ msgstr ""
"\n"
"\"Defecte\" permetre granularitat per usuari.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -987,32 +1001,32 @@ msgstr ""
"La compartició per usuari utilitza el grup \"ComparticióFitxers\".\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estàndard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Alt"
#
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Més Alt"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1023,7 +1037,7 @@ msgstr ""
"d'utilitzar, però també molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1032,7 +1046,7 @@ msgstr ""
"segueix sense ser recomanable."
#
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1041,7 +1055,7 @@ msgstr ""
"s'utilitzarà per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1050,7 +1064,7 @@ msgstr ""
"automàtiques"
#
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1080,7 @@ msgstr ""
"un client d'internet, seria millor escollir un nivell menor"
#
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,33 +1088,33 @@ msgstr ""
"Això és similar al nivell anterior, però el sistema està completament tancat "
"i les característiques de seguretat estan al màxim."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Escolliu el nivell de seguretat"
#
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "El nivell de seguretat"
#
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Utilitzeu libsafe per als servidors"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una llibreria que el defensa contra els 'buffer overflow' i el atacs de "
"'format string'."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
#, fuzzy
msgid "Security Administrator (login or email)"
msgstr "Seguretat d'usuari (login o email)"
@@ -1143,13 +1157,13 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1157,44 +1171,44 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar-les"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prèvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarà automàticament dintre de %d segons."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el carregador d'arrencada a la partició %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "encara no s'ha implementat cap ajuda.\n"
@@ -1202,8 +1216,8 @@ msgstr "encara no s'ha implementat cap ajuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
@@ -1213,7 +1227,7 @@ msgstr "/_Fitxer"
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1255,94 +1269,101 @@ msgstr "Instal·la el sistema"
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Crea una nova partició"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Error"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiant %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
#, fuzzy
msgid "Theme installation failed!"
msgstr "Tipus d'instal·lació"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1351,23 +1372,22 @@ msgstr ""
"Actualment utilitzeu %s com a carregador d'arrencada\n"
"Feu click en Configura per a executar l'auxiliar de configuració."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Splash selection"
msgstr "Desa la selecció de paquets"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1376,44 +1396,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Mode de sistema"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "No, no vull l'entrada automàtica"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, vull l'entrada automàtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "D'acord"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "no es pot obrir /etc/inittab per a lectura: %s"
@@ -1517,47 +1537,52 @@ msgstr "Àustria"
msgid "United States"
msgstr "Estats Units"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Model desconegut"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Nou"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmunta"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Munta"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punt de muntatge"
#
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau entreu la velocitat d'escriptura del cd"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Servidor: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
@@ -1566,8 +1591,9 @@ msgstr "Opcions: %s"
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una còpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1605,10 +1631,16 @@ msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detalls"
+#
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "No s'ha trobat cap impressora!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1634,13 +1666,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Intercanvi"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Altres"
@@ -1648,12 +1680,12 @@ msgstr "Altres"
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
@@ -1663,7 +1695,7 @@ msgstr "Tipus"
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Suprimeix"
@@ -1671,7 +1703,7 @@ msgstr "Suprimeix"
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1679,76 +1711,76 @@ msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
#
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Trieu una partició"
#
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Escolliu una altra partició"
#
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Sortir"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Desfés"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
#
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu grabar els modificacions a /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Assigna automàticament"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Més"
#
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Informació del disc dur"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primàries"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "No puc afegir cap més partició"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1757,34 +1789,34 @@ msgstr ""
"ampliada"
#
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Escriu la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Restaura la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Recarrega la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Desmuntant el medi del suport extraïble"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1792,11 +1824,11 @@ msgstr ""
"La còpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Advertència"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1804,80 +1836,72 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "S'està intentant rescatar la taula de particions"
#
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Informació detallada"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Munta"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Desmunta"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Preferència: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1885,33 +1909,33 @@ msgid ""
msgstr ""
#
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Esborrar el fitxer de loopback?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Canviant de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1919,139 +1943,139 @@ msgstr ""
"No es pot anul·lar el punt de muntatge, perquè aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "S'està canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una còpia de seguretat de totes les dades d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
#
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Nova Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaçar?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "A quin sector ho voleu moure?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "S'està desplaçant"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "S'està desplaçant la partició..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
#
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Proporcioneu un nom de fitxer"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja està utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
#
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Opcions de montatge:"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Diversos"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2063,7 +2087,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarà, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2076,7 +2100,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partició /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2087,47 +2111,47 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurà al disc!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "S'està formatant"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'està formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "S'està formatant la partició %s"
#
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Fitxers ocults"
#
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Moveu els fitxers a la nova partició"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2137,83 +2161,83 @@ msgstr ""
"(%s)"
#
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Movent fitxers a la nova partició"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copiant %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Esborrant %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partició %s ara és %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2222,7 +2246,7 @@ msgstr ""
"Fitxer(s) de loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2230,27 +2254,27 @@ msgstr ""
"Partició arrencada per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2262,7 +2286,7 @@ msgstr ""
"una partició de Controladors;\n"
"és millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2274,46 +2298,50 @@ msgstr ""
"especial és per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Informació: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
#
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Clau d'encriptació del sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Escolliu la clau d'encriptació del sistema de fitxers"
# c-format
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
@@ -2321,15 +2349,15 @@ msgstr ""
"caràcters)"
#
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Les claus d'encriptació no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Clau d'encriptació"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Clau d'encriptació (altra cop)"
@@ -2368,7 +2396,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Nom d'usuari"
@@ -2381,23 +2409,23 @@ msgstr "Domini"
msgid "Search servers"
msgstr "Cerca servidors"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "La partició a muntar %s en el directori %s ha fallat"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produït un error en desmuntar %s: %s"
@@ -2414,34 +2442,52 @@ msgstr "amb /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"No puc llegir la vostra taula de particions, està massa malmesa per a mi :(\n"
+"Intentaré seguir, buidant les particions incorrectes (es perdran TOTES LES "
+"DADES!).\n"
+"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
+"(l'error és %s)\n"
+"\n"
+"Esteu d'acord en perdre totes les particions?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lògic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
#
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2449,228 +2495,278 @@ msgstr ""
"Necessiteu un sistema de fitxers real (ext2/ext3, reiserfs, xfs o jfs) per a "
"aquest punt de muntatge\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"No podeu utilitzar un sistema d'arxius encriptat per al punt de muntatge %s"
#
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automàtica"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Res a fer"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produït un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Configuració de CUPS"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Programa de control"
+
+#
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "No known driver"
+msgstr "Dispositiu X"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
-"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
-"problema"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "No teniu cap partició!"
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Model desconegut"
+
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Model"
msgstr "Mòdul"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr ""
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
#, fuzzy
msgid "Channel"
msgstr "Cancel·la"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Mòdul"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Descripció"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
#, fuzzy
msgid "Bus identification"
msgstr "Autenticació"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
#, fuzzy
msgid "Old device file"
msgstr "Seleccioneu el fitxer"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
#, fuzzy
msgid "New devfs device"
msgstr "Dispositiu de la passarel·la"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Number of buttons"
msgstr "2 botons"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:60
+#
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Pàgina alternativa de prova (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Surt"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Ajuda..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "_Quant a..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
#, fuzzy
msgid "Author:"
msgstr "Exploració automàtica"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecció del disc dur"
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Detected hardware"
msgstr "Mira la informació del maquinari"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
#, fuzzy
-msgid "Configure module"
-msgstr "Configura el ratolí"
+msgid "Information"
+msgstr "Mostra la informació"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:108
#, fuzzy
-msgid "Informations"
-msgstr "Mostra la informació"
+msgid "Configure module"
+msgstr "Configura el ratolí"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
#, fuzzy
msgid "Detection in progress"
msgstr "detectat al port %s"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Si us plau, espereu"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
#, fuzzy
msgid "secondary"
msgstr "%d segons"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "S'està esborrant la impressora \"%s\"..."
@@ -2703,17 +2799,17 @@ msgstr ""
#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Card model :"
+msgid "Card model:"
msgstr "Targeta de memòria (DMA)"
#
#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Canvia el tipus"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:215
@@ -2723,11 +2819,11 @@ msgstr ""
#
#: ../../harddrake/v4l.pm_.c:217
#, fuzzy
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "carrega paràmetres"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr ""
#: ../../harddrake/v4l.pm_.c:218
@@ -2739,22 +2835,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2920,7 +3016,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -3013,10 +3109,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -3100,11 +3196,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3186,7 +3282,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3235,7 +3331,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (per X Window System) és el cor de la interfície gràfica del GNU/Linux\n"
"i és on tots els entorns gràfics (KDE, GNOME, AfterStep,\n"
@@ -3259,37 +3357,7 @@ msgstr ""
"que la configuració és errònia i que el test finalitzarà automàticament en\n"
"10 segons, restaurant la pantalla."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"la primera vegada que heu provat la configuració de X, podeu no estar gaire "
-"satisfet\n"
-"amb la presentació (pantalla massa petita, correguda amb a l'esquerra o "
-"dreta, ...). Per tant,\n"
-"tot i que X inicïi correctament, DrakX li preguntarà si la configuració li "
-"agrada.\n"
-"Li proposarà de canviar-la bó i proporcionant-li una llista de modes vàlids\n"
-"que ha trobat, perquè en seleccioni un.\n"
-"\n"
-"Com a última opció, si encara no pot fer funcionar les X , escolliu "
-"\"Canviar\n"
-"targeta gràfica\", seleccioneu \"Unlisted card\", i quan se us pregunti "
-"quin\n"
-"servidor, escolliu \"FBDev\". Aquesta és una opció de seguretat que funciona "
-"en qualsevol\n"
-"targeta gràfica moderna. Aleshores escolliu \"Test again\" per estar segur."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3305,7 +3373,8 @@ msgstr ""
"un servidor, o si no poguessiu completar la configuració de la\n"
"pantalla."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3325,10 +3394,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"El CD-ROM del Mandrake Linux té un mode de rescat. Hi podeu accedir\n"
"arrencant des del CD-ROM, prement la tecla >>F1<< quan 'boota' i teclejant "
@@ -3361,7 +3430,7 @@ msgstr ""
"No fa falta que el formategeu perquè el DrakX reescriurà\n"
"tot el disc."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3394,7 +3463,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3427,7 +3498,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
"instal·lar\n"
@@ -3498,7 +3571,7 @@ msgstr ""
"tret\n"
"que sapigueu exactament què esteu fent."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3569,7 +3642,7 @@ msgstr ""
"escriviu\n"
"\"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3623,7 +3696,7 @@ msgstr ""
"comprovades \n"
"cercant per a blocs erronis en el disc."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3638,12 +3711,12 @@ msgstr ""
"\n"
"Si us plau, tingueu paciència."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3670,7 +3743,7 @@ msgstr ""
"apareix: comproveu la selecció, i premeu \"Instal·lar\" per a baixar-los i\n"
"instal·lar els paquets seleccionats, o \"Cancel·la\" per a abortar."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3687,14 +3760,14 @@ msgstr ""
"immediatament. Per a continuar amb la instal·lació, feu clic en el\n"
"butó \"Accept\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3710,7 +3783,7 @@ msgstr ""
"\n"
"Si no sabeu quin escollir, deixeu la opció per defecte."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3727,26 +3800,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3774,7 +3847,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3870,7 +3943,7 @@ msgstr ""
"50 MB, us serà d'utilitat per emmagatzemar un nucli de recanvi i una imatge\n"
"del disc RAM per a situacions d'emergència durant l'arrencada."
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3939,35 +4012,35 @@ msgstr ""
"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
"primer disc o partició s'anomena \"C:\")."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr ""
"Si us plau, tingueu paciència. Aquesta operació pot trigar diversos minuts."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3976,11 +4049,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"DrakX necessita saber si voleu un instal·lació per defecte (\"Recomanada\")\n"
"o si voleu tenir més control sobre la instal·lació (\"Expert\"). També "
@@ -4028,19 +4101,22 @@ msgstr ""
"tant,\n"
"no escolliu aquest tipus d'instal·lació tret que sapigueu què esteu fent."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Normalment, DrakX selecciona el teclat correctament automàticament (depenent "
"del\n"
@@ -4056,8 +4132,10 @@ msgstr ""
"Feu clic en el butó \"Més\" perquè se us presenti la llista completa de\n"
"teclats suportats."
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -4090,7 +4168,7 @@ msgstr ""
"múltiples idiomes que volgueu , feu clic sobre el butó \"D'acord\" per a "
"continuar."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -4103,7 +4181,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"DrakX generalment detecta el número de butons que té el vostre ratolí. Si "
"no,\n"
@@ -4123,7 +4208,7 @@ msgstr ""
"[Return]\n"
"per a \"Cancel·lar\" i escollir altre cap."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -4131,7 +4216,7 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" en\n"
"Windows s'anomena \"ttyS0\" en GNU/Linux."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
@@ -4161,9 +4246,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4215,7 +4300,7 @@ msgstr ""
"d'escollir\n"
"\"Fitxers Locals\" per a autentificació."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -4254,16 +4339,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"LILO i grub són carregador d'arrencada de GNU/Linux. Aquesta etapa, "
"normalment,\n"
@@ -4329,13 +4405,16 @@ msgstr ""
"següent pas de\n"
"la instal·lació."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4439,18 +4518,18 @@ msgstr ""
#: ../../help.pm_.c:759
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4685,7 +4764,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4734,7 +4815,7 @@ msgstr ""
"mostrada aquí. Podeu fer clic sonre el butó per a canviar els paràmetres\n"
"associats amb la targeta."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4744,7 +4825,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran\n"
"recuperar!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4781,7 +4862,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "També heu de formatar %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4807,20 +4888,29 @@ msgstr ""
"\n"
"Voleu realment instal·lar aquests servidors?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no està formatat en FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4828,11 +4918,20 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instal·lació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produït un error en llegir el fitxer %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
+"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
+"problema"
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4867,59 +4966,59 @@ msgstr ""
"Voleu continuar igualment?"
#
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Utilitza la partició existent"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "No existeix cap partició per utilitzar"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Escolliu les mides"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Mida de la partició arrel en MB: "
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Mida de la partició d'intercanvi en MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Utilitza l'espai lliure de la partició de Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "A quina partició voleu canviar la mida?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "S'està redimensionant la partició de Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4928,7 +5027,7 @@ msgstr ""
"El redimensionador de la FAT no pot gestionar la vostra partició, \n"
"s'ha produït l'error següent: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
@@ -4938,7 +5037,7 @@ msgstr ""
"``defrag'' primer"
#
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4960,21 +5059,21 @@ msgstr ""
"vostres dades.\n"
"Quan estigueu segur, premeu D'acord."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Quina mida voleu deixar per a la partició de Windows?"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "partició %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat la redimensió de la FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4982,33 +5081,33 @@ msgstr ""
"No hi ha particions FAT a què canviar la mida o per utilitzar-les com a "
"loopback (o no queda prou espai)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Esborra el disc complet"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Elimina el Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teniu més d'un disc dur; en quin voleu instal·lar el Linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Utilitza l'fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -5017,29 +5116,29 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partició de Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la instal·lació"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "S'està activant la xarxa"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "S'està desactivant la xarxa"
@@ -5051,12 +5150,12 @@ msgstr ""
"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -5068,12 +5167,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instal·lat mitjançant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -5105,71 +5204,71 @@ msgstr "Tipus d'instal·lació"
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instal·lació següents:"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Versió: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Importància: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet és obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu deseleccionar aquest paquet; ja està instal·lat"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -5177,77 +5276,77 @@ msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Mostra automàticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Instal·la"
#
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "Carrega/Desa al disquet"
#
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Actualitzant la selecció de paquets"
#
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Instal·lació Mínima"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instal·lar"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "S'està instal·lant"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "S'està estimant"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Si us plau, espereu, s'està preparant la instal·lació..."
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "S'està instal·lant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5263,17 +5362,17 @@ msgstr ""
"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "S'ha produït un error en ordenar els paquets:"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "S'ha produït un error en instal·lar els paquets:"
@@ -5583,7 +5682,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclat"
@@ -5635,11 +5734,11 @@ msgstr "Actualitza Només els Paquets"
msgid "Please choose the type of your mouse."
msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port del ratolí"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sèrie a què està connectat el vostre ratolí."
@@ -5672,46 +5771,20 @@ msgstr "S'està configurant l'IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "No hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"No puc llegir la vostra taula de particions, està massa malmesa per a mi :(\n"
-"Intentaré seguir, buidant les particions incorrectes (es perdran TOTES LES "
-"DADES!).\n"
-"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
-"(l'error és %s)\n"
-"\n"
-"Esteu d'acord en perdre totes les particions?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
-"Si continueu, és sota la vostra responsabilitat!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
@@ -5720,73 +5793,73 @@ msgstr ""
"bootstrap amb el DiskDrake"
#
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "No s'ha trobat cap partició arrel per a realitzar una actualització"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Partició arrel"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'està creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"No hi ha prou space d'intercanvi per a completar la instal·lació; si us "
"plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:489
+#: ../../install_steps_interactive.pm_.c:472
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:493
+#: ../../install_steps_interactive.pm_.c:476
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "No podeu deseleccionar aquest paquet; ja està instal·lat"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5795,7 +5868,7 @@ msgstr ""
"Al vostre sistema no li queda prou espai per a la instal·lació o "
"actualització (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5804,39 +5877,39 @@ msgstr ""
"El format és el mateix que en els disquets generats d'auto instal·lació."
#
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Carrega des del disquet"
#
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Carregant des del disquet"
#
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Selecció de paquets"
#
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Inseriu un disquet amb la selecció de paquets"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "La mida seleccionada és superior a la disponible"
#
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Tipus d'instal·lació"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5845,19 +5918,19 @@ msgstr ""
"Escolliu la instal·lació mínima que voleu:"
#
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Amb X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Amb documentació bàsica (recomenada!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instal·lació realment mínima (especialment no urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5867,16 +5940,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancel·la.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "S'està preparant la instal·lació"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5885,21 +5958,21 @@ msgstr ""
"S'està instal·lant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Configuració després de la instal·lació"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu el disquet d'Actualització de Mòduls a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5966,7 +6039,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5988,172 +6061,172 @@ msgstr ""
"Voleu instal·lar aquestes actualitzacions ?"
#
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'està contactant amb el servidor Mandrake Linux per obtenir la llista de "
"rèpliques disponibles..."
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'està contactant amb la rèplica per a obtenir la llista dels paquets "
"disponibles..."
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
#
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador està regulat per GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de la hora (usant NTP)"
#
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Cap impressora"
#
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "Teniu una targeta de so ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Executeu \"sndconfig\" després de la instal·lació per a configurar la "
"targeta de so"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
"instal·lació"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Zona horària"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Windows Domain"
msgstr "Aconsegueix les Fons de Windows"
#
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Impressores local"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa curta (ha de tenir com a mínim %d caràcters)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
#
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
#
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Servidor LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Autenticació NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6170,21 +6243,21 @@ msgid ""
msgstr ""
#
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1142
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nom de domini"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6214,19 +6287,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6254,7 +6327,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6268,30 +6341,30 @@ msgstr ""
"creant un disquet d'arrencada per un de 1.44 Mb molt probablement fallarà,\n"
"perquè XFS necessita una unitat molt gran)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "S'està creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "S'està preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6303,11 +6376,11 @@ msgstr ""
"La instal·lació continuarà, però haureu\n"
"d'utilitzar el BootX per a arrencar el vostre ordinador"
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6317,17 +6390,17 @@ msgstr ""
"primera partició?"
#
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Instal·lant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instal·lació del carregador d'arrencada. S'ha produït l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6346,17 +6419,17 @@ msgstr ""
" Després, escriviu: shut-down\n"
"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "S'està creant el diquet d'instal·lació automàtica"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6366,7 +6439,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6399,15 +6472,15 @@ msgstr ""
"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1347
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instal·lació automàtica"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6422,15 +6495,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la instal·lació.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Automàtica"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -6439,7 +6512,8 @@ msgstr "Desa la selecció de paquets"
msgid "Mandrake Linux Installation %s"
msgstr "Instal·lació del Mandrake Linux %s"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6458,23 +6532,23 @@ msgstr "El consolehelper no hi és"
msgid "Choose a file"
msgstr "Trieu un fitxer"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Avançat"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Següent"
@@ -6548,387 +6622,387 @@ msgstr ""
msgid "Re-submit"
msgstr "Re-envieu"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Finès"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Francès"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Polonès"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclat EU"
#
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albanès"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armeni (màquina d'escriure)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armeni (fonètic)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanès (llatí)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:177
#, fuzzy
msgid "Bengali"
msgstr "habilita"
#
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Búlgar (fonètic)"
#
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Búlgar (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Bosnian"
msgstr "Estonià"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Bielorús"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Suís (disposició alemanya)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Suís (disposició francesa)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danès"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
#
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Suec)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonià"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgià (disposició \"russa\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgià (disposició \"llatina\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hongarès"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelià"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelià (fonètic)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranià"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Islandès"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Italià"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Japonès de 106 tecles"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Teclat coreà"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Espanyol sud-americà"
#
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:218
#, fuzzy
msgid "Laotian"
msgstr "Letó"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lituà AZERTY (antic)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lituà AZERTY (nou)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituà \"fila de números\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituà \"fonètic\" QWERTY"
#
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Letó"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
msgstr ""
#
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:227
#, fuzzy
msgid "Mongolian (cyrillic)"
msgstr "Serbi (ciríl·lic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Holandès"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Polonès (disposició qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Polonès (disposició qwertz)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portuguès"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
#
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romanès (qwertz)"
#
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romanès (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Eslovè"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
#
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbi (ciríl·lic)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclat tai"
#
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclat tadjik"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraïnès"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numèrica\" QWERTY"
#
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iugoslau (llatí)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Tecla d'alternativa dreta"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Les dues tecles de majúscules simultàniament"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Tecles de Control i de majúscules simultàniament"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Tecla de fixació de majúscules"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Tecles de Control i alternativa simultàniament"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Tecles alternativa i de majúscules simultàniament"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "\"Menú\" tecles"
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Tecla de \"Windows\" Esquerra"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Tecla de \"Windows\" Dreta"
@@ -6988,11 +7062,11 @@ msgstr "Rató de bola PS2 genèric"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -7000,115 +7074,125 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botó"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "De bola"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "sèrie"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Generic 3 Button Mouse"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (sèrie, tipus C7 antic)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 botons"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botons"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "cap"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Finès"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Següent ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Això és correcte?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Informació"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Expandeix l'arbre"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Redueix l'arbre"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
@@ -7146,6 +7230,77 @@ msgstr "utilitza pppoe"
msgid "use pptp"
msgstr "utilitza pptp"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servidor"
+
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Nom de domini"
+
+#
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Servidor de base de dades"
+
+#
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servidor LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "no s'ha trobat cap targeta de xarxa"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Configurador del tinyfirewall\n"
+"\n"
+"Amb això es configura un tallafocs personal per a aquest ordinador Linux "
+"Mandrake.\n"
+"Per a una potent solució de tallafocs dedicada, consulteu si us plau la "
+"distribució especialitzada MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+#, fuzzy
+msgid "Other ports"
+msgstr "Ports de comprovació"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -7162,7 +7317,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexió."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Escolliu la interfície de xarxa"
@@ -7177,7 +7332,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "S'està configurant la xarxa"
@@ -7194,7 +7349,7 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Nom de l'ordinador central"
@@ -7508,13 +7663,13 @@ msgstr "Escolliu el perfil per configurar"
msgid "Use auto detection"
msgstr "Utilitza la detecció automàtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mode expert"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
@@ -7687,11 +7842,11 @@ msgstr "IP automàtic"
msgid "Start at boot"
msgstr "Inicia en l'arrencada"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7703,43 +7858,55 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreça IP de la passarel·la, si en teniu una"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passarel·la(Gateway) (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dispositiu de la passarel·la"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Vigila id de la targera de xarxa(d'utilitat per a laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "S'ha detectat la configuració del sistema de tallafocs!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
+"Potser us caldrà fer algun ajustament manual després de la instal·lació."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuració d'Internet"
@@ -7848,15 +8015,15 @@ msgstr "Contrasenya del compte"
msgid "United Kingdom"
msgstr "Regne Unit"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7866,21 +8033,21 @@ msgstr ""
"L'única solució és moure les particions primàries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauració des del fitxer %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Fitxer de còpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produït un error en escriure al fitxer %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7926,157 +8093,161 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Impressora remota"
#
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Impressora en servidor remot CUPS"
#
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Impressora en servidor lpd remot"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Impressora de xarxa (TCP/Socket)"
#
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impressora de SMB/Windows 95/98/NT Server"
#
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Impressora en Servidor NetWare"
#
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Entreu un Dispositiu URI d'impressora"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Conduir el treball cap a una ordre"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Model desconegut"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Model desconegut"
#
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Impressores locals"
#
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Impressores remotes"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " en port paral·lel \\/*%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impressora USB \\/*%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositiu multi-function en port paral·lel \\/*%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dispositiu multi-function en USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositiu multi-function en HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ", dispositiu multi-function"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", imprimint a %s"
-#: ../../printer.pm_.c:544
+#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " en servidor LPD \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:550
+#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " en Servidor Windows \"%s\", recurs compartit \"%s\""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " en Servidor Novell \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", utilitzant l'ordre %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Impressora en cru ('Raw') (Cap controlador)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(en %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(en aquest ordinador)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "en servidor CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr " (Predeterminat)"
@@ -8104,12 +8275,12 @@ msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
#
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Configuració de CUPS"
#
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Especifiqueu Servidor CUPS"
@@ -8155,7 +8326,7 @@ msgid "The IP address should look like 192.168.1.20"
msgstr "L'adreça IP ha d'estar amb el format 192.168.1.20"
#
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "El número de port ha de ser enter!"
@@ -8163,7 +8334,7 @@ msgstr "El número de port ha de ser enter!"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Port"
@@ -8172,13 +8343,135 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuració Automàtica de CUPS"
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#
+#: ../../printerdrake.pm_.c:178
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Reiniciant el sistema d'impressió..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ara s'eliminaran els paquets següents"
+
+#: ../../printerdrake.pm_.c:199
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ara s'eliminaran els paquets següents"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:210
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Copiar les fonts en el vostre sistema"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
#
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:221
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Voleu definir la impressora (\"%s\")\n"
+"com a impressora per defecte?"
+
+#: ../../printerdrake.pm_.c:238
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Voleu iniciar la connexió en arrencar?"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Afegiu una impressora"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8200,7 +8493,7 @@ msgstr ""
"proporciona accés als controladors disponibles de les impressores, les seves "
"opcions, i tipus de connexió d'impressió."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8209,7 +8502,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -8222,7 +8515,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8231,7 +8539,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -8243,26 +8551,26 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:213
+#: ../../printerdrake.pm_.c:315
#, fuzzy
msgid "Auto-detect printers connected to this machine"
msgstr "Auto-detecta impressores"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
#
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -8287,52 +8595,52 @@ msgstr ""
"Mandrake."
#
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Printer auto-detection"
msgstr "Fes la detecció automàtica"
-#: ../../printerdrake.pm_.c:305
+#: ../../printerdrake.pm_.c:408
#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
#
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:410
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impressora de SMB/Windows 95/98/NT Server"
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impressora en el port paral·lel \\/*%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impressora USB \\/*%s"
-#: ../../printerdrake.pm_.c:321
+#: ../../printerdrake.pm_.c:424
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Impressora de xarxa (TCP/Socket)"
#
-#: ../../printerdrake.pm_.c:323
+#: ../../printerdrake.pm_.c:426
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Impressora de SMB/Windows 95/98/NT Server"
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8345,21 +8653,21 @@ msgstr ""
"2a USB impressora: /dev/usb/lp1, ...)."
#
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Heu d'entrar un dispositiu o fitxer!"
#
-#: ../../printerdrake.pm_.c:475
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
msgstr "No s'ha trobat cap impressora!"
-#: ../../printerdrake.pm_.c:485
+#: ../../printerdrake.pm_.c:588
#, fuzzy
msgid "Available printers"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8367,7 +8675,7 @@ msgstr ""
"La següent impressora ha estat detectada, si no és la que voleu configurar, "
"escriviu nom de dispositiu/nom de fitxer en la línia d'entrada"
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8376,7 +8684,7 @@ msgstr ""
"impressora que voleu definir o escriviu nom de dispositiu/nom de fitxer en "
"la línia d'entrada"
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8388,7 +8696,7 @@ msgstr ""
"correctament detectada o si preferiu de personalitzar la seva configuració, "
"habiliteu \"Configuració manual\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8401,7 +8709,7 @@ msgstr ""
"si preferiu de personalitzar la seva configuració, habiliteu \"Configuració "
"manual\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8410,12 +8718,12 @@ msgstr ""
"dispositiu/nom de fitxer en la línia d'entrada"
#
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8425,21 +8733,21 @@ msgstr ""
"lp1, ...)."
#
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
#
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Configuració manual"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
#
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8449,52 +8757,52 @@ msgstr ""
"servidor."
#
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
#
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Nom de la impressora remota"
#
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Falta el nom de l'ordinador central remot!"
#
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Falta el nom de la impressora remota!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
#, fuzzy, c-format
msgid "Detected model: %s %s"
msgstr "s'ha detectat %s"
#
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
#, fuzzy
msgid "Scanning network..."
msgstr "S'està arrencant la xarxa..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr "en Servidor Windows \"%s\", recurs compartit \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "S'està imprimint en la impressora \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
#
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8507,47 +8815,47 @@ msgstr ""
"de compartició de la impressora a què voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Nom de compartició"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grup de treball"
#
-#: ../../printerdrake.pm_.c:746
+#: ../../printerdrake.pm_.c:853
#, fuzzy
msgid "Auto-detected"
msgstr "Auto-detecta impressores"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "S'ha de sumministrar o el nom del servidor o la ip del servidor!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Falta El nom de compartició de Samba!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr "AVÍS DE SEGURETAT!"
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8593,7 +8901,7 @@ msgstr ""
"aquest ordinador amb el tipus de connexió \"%s\" en Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8606,7 +8914,7 @@ msgstr ""
"ordinador amb el tipus de connexió \"%s\" en Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8619,12 +8927,12 @@ msgstr ""
"Realment voleu continuar configurant aquesta impressora tal com s'està fent "
"ara?"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
#
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8638,45 +8946,45 @@ msgstr ""
"la impressora a què voleu accedir i el nom d'usuari i contrasenya si són\n"
"necessaris."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressió"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Falta el nom del Servidor NCP!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Falta el nom de la cua NCP!"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, fuzzy, c-format
msgid ", host \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
msgstr ", servidor TCP/IP \"%s\", port %s"
#
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Opcions de la impressora per a TCP/Socket"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
#
-#: ../../printerdrake.pm_.c:978
+#: ../../printerdrake.pm_.c:1085
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -8690,22 +8998,22 @@ msgstr ""
"altres pot variar. Mireu el manual del vostre maquinari."
#
-#: ../../printerdrake.pm_.c:983
+#: ../../printerdrake.pm_.c:1090
#, fuzzy
msgid "Printer host name or IP missing!"
msgstr "Falta el nom de l'ordinador central de la impressora!"
#
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1112
#, fuzzy
msgid "Printer host name or IP"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8715,11 +9023,11 @@ msgstr ""
"de complir l'especificació CUPS o Foomatic. Cal remarcar que not tots els "
"tipus de URI es suporten en tots els spoolers(cues d'impressió)."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Heu d'entrar un URI vàlid!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8727,30 +9035,30 @@ msgstr ""
"Cada impressora necessita un nom (per exemple \"printer\"). Els camps de "
"Descripció i Ubicació no són necessaris. Són comentaris per als usuaris."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Ubicació"
#
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "S'està llegint la base de dades d'impressores..."
#
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Preparant la base de dades de impressores..."
#
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "El vostre model d'impressora"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8777,27 +9085,27 @@ msgstr ""
"%s"
#
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "El model és correcte"
#
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Selecciona model manualment"
#
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Selecció del model d'impressora"
#
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Quin tipus de model d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8811,7 +9119,7 @@ msgstr ""
"impressora correctament. Busqueu el model correcte en la llista quan el "
"cursor estigui en un model erroni o en \"Impressora en cru(Raw)\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8820,11 +9128,11 @@ msgstr ""
"manual de la impresora) o un de similar."
#
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Configuració de l 'winprinter' OKI"
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8842,11 +9150,11 @@ msgstr ""
"pel controlador de la impressora."
#
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Configuració de la Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8858,17 +9166,17 @@ msgstr ""
"d'impressió. Per favor, connecteu la vostra impressora en un port local o "
"configureu-la en l'ordinador on està connectada."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"Per a poder imprimir amb la Lexmark inkjet i aquesta configuració, "
"necessiteu els controladors de la impressora inkjet proporcionats per "
@@ -8881,7 +9189,34 @@ msgstr ""
"\"lexmarkmaintain\" i ajusteu l'aliniació de la capçalera amb aquest "
"programa."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8898,22 +9233,22 @@ msgstr ""
"Cal remarcar que amb una molt alta qualitat d'impresssió/resolució la "
"impressió pot ser molt lenta."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "La opció %s ha de ser un número enter!"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "La opció %s ha de ser un número!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "La opció %s està fora de rang!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8923,11 +9258,11 @@ msgstr ""
"com a impressora per defecte?"
#
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Pàgines de prova"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8940,44 +9275,44 @@ msgstr ""
"Normalment n'hi ha prou en imprimir la pàgina de prova estàndar."
#
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Cap pàgina de prova"
#
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Imprimeix"
#
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Pàgina estàndar de prova"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Pàgina alternativa de prova (Carta)"
#
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Pàgina alternativa de prova (A4)"
#
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Pàgina de prova de fotografia"
#
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "No imprimir cap pàgina de prova"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pàgina(es) de prova... "
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8993,7 +9328,7 @@ msgstr ""
"\n"
#
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -9001,16 +9336,16 @@ msgstr ""
"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
"Pot passar un cert temps abans no comenci la impressió.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "Ha funcionat correctament?"
#
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Impressora en cru(Raw)"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -9024,7 +9359,7 @@ msgstr ""
"permet d'escollir la impressora i de modificar els paràmetres opcions "
"fàcilment.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -9034,8 +9369,8 @@ msgstr ""
"diàlegs d'impressió de moltes aplicacions, però ara no subministreu el "
"fitxer perquè el fitxer per a imprimir ja el proporciona l'aplicació.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -9048,7 +9383,7 @@ msgstr ""
"treball d'impressió particular. Simplement afegiu els paràmetres desitjats "
"en la línia de comandes, e. g. \"%s <fitxer>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -9060,7 +9395,7 @@ msgstr ""
"\".%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -9069,7 +9404,7 @@ msgstr ""
"impressora actual:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -9078,8 +9413,8 @@ msgstr ""
"Per a imprimir un fitxer des de la línia de comandes (finestra de terminal) "
"useu la comanda \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -9089,7 +9424,7 @@ msgstr ""
"diàlegs d'impressió de moltes aplicacions. Però ara no subministreu el "
"fitxer perquè el fitxer per a imprimir ja el proporciona l'aplicació.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -9097,7 +9432,7 @@ msgstr ""
"Per a veure una llista d'opcions disponibles per a la impressora actual feu "
"clic sobre el butó \"Llista d'opcions d'impressió\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -9106,7 +9441,7 @@ msgstr ""
"Per a imprimir un fitxer des de la línia de comandes (finestra de terminal) "
"utilitzeu l'ordre \"%s <fitxer>\" o \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -9122,7 +9457,7 @@ msgstr ""
"el treballs d'impressió inmediatament quan ho cliqueu. Això és útil, per "
"exemple, quan se us ha enganxat el paper en la impressora.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -9135,41 +9470,41 @@ msgstr ""
"un treball d'impressió particular. Simplement afegiu els paràmetres que "
"voleu en la línia de comandes, p.e. \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:2153
+#: ../../printerdrake.pm_.c:2343
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2346
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "S'està imprimint en la impressora \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Tanca"
#
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Llista d'opcions d'impressió"
-#: ../../printerdrake.pm_.c:2182
+#: ../../printerdrake.pm_.c:2373
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -9192,7 +9527,7 @@ msgstr ""
"\n"
"No utilitzeu \"scannerdrake\" amb aquest dispositiu!"
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -9206,18 +9541,18 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "S'està llegint dades de la impressora..."
#
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Configuració de transferència de la impressió"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -9233,7 +9568,7 @@ msgstr ""
"No totes les cues d'impressió poden ser transferides degut a les següents "
"raons:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -9241,7 +9576,7 @@ msgstr ""
"CUPS no permet l'ús d'impressores en servidors Novell ni que les impressores "
"enviïn les dades cap a una ordre lliure de forma.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -9249,11 +9584,11 @@ msgstr ""
"PDQ només suporta impressores locals, impressores LPD remotes, i impressores "
"de Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng no suporten impressores IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -9261,7 +9596,7 @@ msgstr ""
"A més a més, les cues que han estat creades amb altres programes que no són "
"aquest i \"foomatic-configure\" no poden ser transferides."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -9272,7 +9607,7 @@ msgstr ""
"seus fabricants o amb controladors nadius per a CUPS no poden ser "
"transferides."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -9282,15 +9617,15 @@ msgstr ""
"Marqueu les impressores que voleu transferir i feu clic en \n"
"\"Transferir\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "No transferir cap impressora"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -9301,13 +9636,13 @@ msgstr ""
"Feu clic en \"Transferir\" per a sobreescriure'l.\n"
"També podeu escriure un nou nom o saltar-se aquesta impressora."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora només pot constar de lletres, números i el caràcter "
"de subratllat"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -9317,16 +9652,16 @@ msgstr ""
"realment voleu sobreescriure la seva configuració?"
#
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Nou nom d'impressora"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Transferint %s..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -9336,33 +9671,33 @@ msgstr ""
"ser també la impressora per defecte en el nou sistema d'impressió %s?"
#
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "S'està refrescant les dades de les impressores..."
#
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Configuració d'una impressora remota"
#
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "S'està arrencant la xarxa..."
#
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Configureu la xarxa ara"
#
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "La funcionalitat de xarxa no ha estat configurada"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -9375,11 +9710,11 @@ msgstr ""
"impressora que esteu ara configurant. Què voleu fer?"
#
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Continuar sense configurar la xarxa"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -9395,7 +9730,7 @@ msgstr ""
"impressora, també usant el Centre de Control Mandrake, secció \"Maquinari\"/"
"\"Impressores\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9406,26 +9741,26 @@ msgstr ""
"remota una altra vegada."
#
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Reiniciant el sistema d'impressió..."
#
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "Alt"
#
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instal·lant un sistema d'impressió amb el nivell de seguretat %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9451,11 +9786,11 @@ msgstr ""
"Realment voleu configurar l'impressió en aquest ordinador?"
#
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Iniciant el sistema d'impressió en arrencar l'ordinador"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9478,83 +9813,80 @@ msgstr ""
"Voleu que l'arrencada automàtica del sistema d'impressió és torni a "
"habilitar una altra vegada?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Comprovant el programari instal·at"
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Treient LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Treient LPD..."
#
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Seleccioneu la cua d'impressió"
#
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quin sistema d'impressió(cua) voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2691
+#: ../../printerdrake.pm_.c:2895
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurant la impressora \"%s\"..."
#
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "S'està instal·lant Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Opcions de la impressora"
#
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "S'està preparant PrinterDrake..."
#
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "S'està configurant aplicacions..."
#
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Voleu configurar la impressió?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "Sistema d'impressió: "
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
#
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Les impressores següents estan configurades. Feu doble-clic en una "
"impressora per a modificar els paràmetres; per a fer-la per defecte; per a "
"veure'n la informació; o per a fer que una impressora en un servidor remot "
-"CUPS sigui disponible per a Star Office/OpenOffice.org."
+"CUPS sigui disponible per a Star Office/OpenOffice.org/GIMP."
#
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9564,33 +9896,33 @@ msgstr ""
"impressora per a modificar els paràmetres; per a fer-la per defecte; per a "
"veure la informació de la impressora."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refresqueu la llista d'impressores (per a veure totes les impressores CUPS "
"remotes disponibles)"
#
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Modificar el sistema d'impressió"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Mode normal"
#
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Voleu configurar una altra impressora?"
#
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Modificar la configuració de la impressora"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9599,112 +9931,115 @@ msgstr ""
"Impressora %s\n"
"Voleu modificar la impressora?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Fes-ho!"
#
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Tipus de connexió de la impressora"
#
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Nom de la impressora, descripció, ubicació"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Fabricant de la impressora, model, controlador"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Fabricant de la impressora, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Fes aquesta impressora la impr. per defecte"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Treu aquesta impressora de Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Treu aquesta impressora de Star Office/OpenOffice.org/GIMP"
#
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Imprimeix la(es) pàgina(es) de prova"
#
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Aprengueu a utilitzar aquesta impressora"
#
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Esborra impressora"
-#: ../../printerdrake.pm_.c:3245
+#: ../../printerdrake.pm_.c:3472
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "S'està esborrant la impressora antiga \"%s\"..."
#
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Impressora per defecte"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "La impressora \"%s\" és la impressora per defecte ara."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Afegint impressora a Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Afegint impressora a Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"La impressora \"%s\" ha estat afegida correctament a Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"S'ha fallat en afegir la impressora \"%s\" a Star Office/OpenOffice.org."
+"S'ha fallat en afegir la impressora \"%s\" a Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "S'està esborrant la impressora de Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "S'està esborrant la impressora de Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
"La impressora \"%s\" ha estat esborrada correctament de Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"S'ha fallat en esborrar la impressora \"%s\" de Star Office/OpenOffice.org."
+"S'ha fallat en esborrar la impressora \"%s\" de Star Office/OpenOffice.org/"
+"GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voleu relment esborrar la impressora \"%s\"?"
-#: ../../printerdrake.pm_.c:3297
+#: ../../printerdrake.pm_.c:3527
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "S'està esborrant la impressora \"%s\"..."
@@ -10139,7 +10474,7 @@ msgid "File sharing"
msgstr "Compartició de fitxers"
#
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "Sistema"
@@ -10197,15 +10532,15 @@ msgstr "Iniciar"
msgid "Stop"
msgstr "Aturar"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Gràcies per triar Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Gràcies per triar Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Benvinguts al món del Codi Font Obert"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -10215,216 +10550,240 @@ msgstr ""
"vostre nou sistema operatiu és el resultat del treball en col·laboració de "
"tota la Comunitat Linux de tot el Món"
-#
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr "Uneix-te al Codi Font Obert arreu del món"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Investigueu en la comunitat de l'Open Source i feu-vos'en membre. Apreneu, "
"ensenyeu, i ajudeu als altres tot i participant en els múltiples forums de "
"discussió que trobareu en les pàgines de la \"Comunitat\"."
-#
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet i Missatgeria"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Connecta't a internet"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 8.2 proporciona el millor programari per a accedir tot el que "
+"Mandrake Linux 9.0 proporciona el millor programari per a accedir tot el que "
"Internet us pot oferir: navegueu la web i veieu animacions amb Mozilla i "
"Konqueror, envieu missatges i organitzeu-vos la informació personal amb "
"Evolution i Kmail, i molt més"
-#
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimèdia i Gràfics"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 8.2 us permet utilitzar el vostre ordinador multimèdia fins "
"al límit! Useu l'últim programari per a tocar música i fitxers de so, editar "
"i organitzar les vostres imatges i fotos, mirar la TV i videos, i molt més"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolupament"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jocs"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 és l'última plataforma de desenvolupament més "
-"actualitzada. Descubreix el poder del compilador GNU gcc hagi com el dels "
-"millors entorns de desenvolupament en Codi Font Obert"
+"Mandrake Linux 9.0 proporciona els millors jocs en Open Source - arcade, "
+"acció, cartes, esports, estratègia, ..."
-#
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Centre de Control Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"El Centre de Control Mandrake Linux 8.2 és el lloc de parada per a "
"customitzar i configurar completament del vostre sistema Mandrake"
#
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Interfícies d'usuari"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
msgstr ""
-"Mandrake Linux 8.2 proporciona 11 diferents entorns d'escritori gràfics i "
-"gestors de finestres per a triar incloent GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, i la resta"
-#
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Programari del servidor"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Desenvolupament"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 és l'última plataforma de desenvolupament més "
+"actualitzada. Descubreix el poder del compilador GNU gcc hagi com el dels "
+"millors entorns de desenvolupament en Codi Font Obert"
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Transformeu el vostre ordinador en un poderós servidor amb només uns quants "
"clics del ratolí: Servidor web, email, tallafoc, encaminador, servidor de "
"fitxers i d'impressió, ..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jocs"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
msgstr ""
-"Mandrake Linux 8.2 proporciona els millors jocs en Open Source - arcade, "
-"acció, cartes, esports, estratègia, ..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Voleu aprendre Linux simplement, ràpidament, i gratuïtament? MandrakeSoft "
-"proporciona entrenament de Linux gratuït, així com una manera de comprovar "
-"els vostres progressos, a MandrakeCampus -- el nostre centre d'ensenyament a "
-"Internet"
+"Trobareu tota la gama de solucions Linux, així com ofertes especials en "
+"productes en la nostra botiga online"
-#
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Un suport de qualitat de la Comunitat Linux, i de MandrakeSoft, és a un clic "
-"del ratolí. I vós sou un veterà del Linux, convertiu-vos en \"Expert\" i "
-"compartiu els vostres coneixements en la nostra web de suport"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Per a tots els vostres projectes en TI, els nostres consultors estan "
-"preparats per a analitzar els vostres requeriments i oferir una solució "
-"personalitzada. Beneficieu-vos de la gran experiència de MandrakeSoft com a "
-"productor de Linux per a proporcionar una certera alternativa en TI per a la "
-"vostra empresa"
#
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Trobareu tota la gama de solucions Linux, així com ofertes especials en "
-"productes en la nostra botiga online"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
+
+#
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"Per més informació sobre els Serveis Professionals de MandrakeSoft i ofertes "
-"comercials, aneu a la següent pàgina web:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
#
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "S'està instal·lant els paquets..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"No puc llegir la vostra taula de particions, està massa malmesa per a mi :(\n"
-"Intentaré seguir buidant les particions incorrectes"
-
#
#: ../../standalone/drakTermServ_.c:188
#, fuzzy
@@ -10472,12 +10831,13 @@ msgid "Add/Del Clients"
msgstr "Client DHCP"
#
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Ajuda"
@@ -10658,8 +11018,8 @@ msgstr ""
"Els paràmetres de la auto-instal·lació estan disponibles en les seccions de "
"la esquerra"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Felicitats!"
@@ -10686,20 +11046,24 @@ msgstr "Afegeix un element"
msgid "Remove the last item"
msgstr "Esborra l'últim element"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
+#: ../../standalone/drakbackup_.c:726
#, fuzzy
msgid "FATAL"
msgstr "FAT"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10709,7 +11073,7 @@ msgstr ""
" Informe DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10721,7 +11085,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10733,12 +11097,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
msgstr "Progrés total"
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10747,16 +11118,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Sense contrasenya"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "No es pot obrir %s: %s\n"
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10767,64 +11163,69 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Còpia de seguretat de fitxers del sistema..."
#
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Els fitxers de la còpia de seguretat del disc dur..."
#
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Còpia de seguretat de fitxers d'usuari..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Progrès de la còpia de seguretat en disc dur..."
#
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Els fitxers de còpia de seguretat d'altres fitxers..."
#
-#: ../../standalone/drakbackup_.c:1266
+#: ../../standalone/drakbackup_.c:1321
#, fuzzy
msgid "No changes to backup!"
msgstr "Utilitzar la cinta per a fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10832,16 +11233,16 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
+#: ../../standalone/drakbackup_.c:1344
#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
-"llista de fitxers enviada per FTP : %s\n"
+"llista de fitxers enviada per FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10851,14 +11252,14 @@ msgstr ""
" problema en la connexió FTP: No ha estat possible enviar els fitxers de la "
"còpia de seguretat per FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10866,25 +11267,25 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1324
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
msgstr " S'ha produït un error en enviar el correu electrònic. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecció de fitxers"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccioneu els fitxers i directoris i feu clic en 'Afegir'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10892,26 +11293,26 @@ msgstr ""
"\n"
"Per favor, comproveu totes les opcions que necessiteu.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Aquestes opcions poden fer còpia de seguretat i restaurar els fitxers en el "
"directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Fer còpia de seguretat dels fitxers del Sistema. ( directori /etc ) "
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilitzar còpia incremental (no reemplaça còpies antigues)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incloure fitxers crítics (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10920,67 +11321,71 @@ msgstr ""
" del directori /etc."
#
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Si us plau, escolliu tots els usuaris que voleu incloure en la còpia de "
"seguretat."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "No incloure la memòria cau del navegador"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilitza còpies incrementals (no reemplaça antigues còpies)"
#
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Elimina el seleccionat"
#
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
#
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Usuaris"
-#: ../../standalone/drakbackup_.c:1700
+#: ../../standalone/drakbackup_.c:1775
#, fuzzy
msgid "Use network connection to backup"
msgstr "Utilitza connexió FTP per fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1783
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Transferir"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Si us plau, proporcioneu el nom de l'ordinador o la IP."
-#: ../../standalone/drakbackup_.c:1718
+#: ../../standalone/drakbackup_.c:1793
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10990,29 +11395,29 @@ msgstr ""
" posar la còpia de seguretat d'aquest ordinador central."
#
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Si us plau, entreu la entrada"
#
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Si us plau, entreu la contrasenya"
#
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Recordar aquesta contrasenya"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Utilitzar CD/DVDROM per fer la còpia"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11020,44 +11425,44 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1849
+#: ../../standalone/drakbackup_.c:1923
#, fuzzy
msgid "Please choose your CD/DVD media size"
msgstr "Si us plau, escolliu l'espai del CD"
#
-#: ../../standalone/drakbackup_.c:1855
+#: ../../standalone/drakbackup_.c:1929
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1867
+#: ../../standalone/drakbackup_.c:1941
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1868
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1874
+#: ../../standalone/drakbackup_.c:1948
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1880
+#: ../../standalone/drakbackup_.c:1954
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11065,37 +11470,37 @@ msgstr ""
"Si us plau, entreu el nom del dispositiu del CD Writer\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Utilitzar la cinta per a fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr ""
"Si us plau, subministreu el nom del dispositiu a utilitzar per fer la còpia"
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2057
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2063
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2069
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11104,61 +11509,61 @@ msgstr ""
" permesa per a Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2066
+#: ../../standalone/drakbackup_.c:2140
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Utilitzar la cuota de disc per als fitxers de còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Xarxa"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disc Dur / NFS"
-#: ../../standalone/drakbackup_.c:2161
+#: ../../standalone/drakbackup_.c:2236
#, fuzzy
msgid "Tape"
msgstr "Tipus"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "diària"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "setmanal"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "mensual"
#
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Utilitza dimoni"
#
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11167,7 +11572,7 @@ msgstr ""
"de temps entre cada còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -11175,7 +11580,7 @@ msgstr ""
"Si us plau, trieu el\n"
"medi per a la còpia."
-#: ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2289
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11184,80 +11589,80 @@ msgid ""
msgstr ""
"Si us plau assegureu-vos que el dimoni cron està inclòs en els serveis."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Envieu informe per correu electrònic després de cada còpia a :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Que"
#
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "On"
#
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Quant"
#
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Més opcions"
#
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Configuració de Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu on voleu fer la còpia de seguretat"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "en el Disc Dur"
#
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "per la Xarxa"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu de què voleu fer la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "Còpia del seguretat del sistema"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Còpia de seguretat dels usuaris"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Seleccioneu l'usuari manualment"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -11265,7 +11670,7 @@ msgstr ""
"\n"
"Fonts de la còpia: \n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -11273,7 +11678,7 @@ msgstr ""
"\n"
"- Fitxers del Sistema:\n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -11281,7 +11686,7 @@ msgstr ""
"\n"
"- Fitxers d'Usuari:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -11289,64 +11694,64 @@ msgstr ""
"\n"
"- Altres Fitxers:\n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-"- Desar-ho en el Disc Dur en el camí : %s\n"
+"- Desar-ho en el Disc Dur en el camí: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
+#: ../../standalone/drakbackup_.c:2602
#, fuzzy, c-format
-msgid " on device : %s"
+msgid " on device: %s"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Desar-ho en FTP en l'ordinador central : %s\n"
+"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
+#: ../../standalone/drakbackup_.c:2608
#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Desar-ho en FTP en l'ordinador central : %s\n"
+"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11356,7 +11761,7 @@ msgstr ""
"\t\t en el camí: %s \n"
#
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -11364,60 +11769,60 @@ msgstr ""
"\n"
"- Opcions:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tNo incloure Fitxers del Sistema\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLes còpies de seguretat utilitzen tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tLes còpies de seguretat utilitzen tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Dimoni (%s) inclòs :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t.Disc dur.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Xarxa per FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Xarxa per SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
msgstr "\t-Xarxa per webdav.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Cap configuració, si us plau cliqueu en Auxiliar o Avançat.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -11425,7 +11830,7 @@ msgstr ""
"Llista de dades per a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11434,174 +11839,298 @@ msgstr ""
"\n"
#
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Si us plau, deseleccioneu o esborreu-ho la pròxima vegada."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Els fitxers de la còpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:2758
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Totes les dades seleccionades han estat "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Restaurades Correctament en %s "
#
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Configuració de Restauració "
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "D'acord per a restaurar els altres fitxers."
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Llista d'usuaris per a restaurar (només és important la data més recent per "
"usuari)"
#
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Abans còpia de seguretat de fitxers del sistema:"
#
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu la data a restaurar"
#
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Utilitzar el Disc Dur per a fer la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Connexió FTP"
#
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Connexió Segura"
#
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Si us plau, entreu el directori on les còpies es guarden"
#
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu un altre medi des del qual restaurar"
#
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Altres Medis"
#
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Restaura el Sistema"
#
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3168
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "seleccioneu camí al qual restaurar ( en comptes de / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Fer nova còpia de seguretat abans de restaurar (només per les còpies "
"incrementals.)"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Esborrar directoris d'usuaris abans de restaurar."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3394
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Elimina el seleccionat"
+
+#: ../../standalone/drakbackup_.c:3411
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaura Altres"
+
+#: ../../standalone/drakbackup_.c:3477
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Els fitxers de la còpia de seguretat estan corromputs"
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3490
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaura des del disc dur."
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3502
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Restaura la taula de particions"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3524
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaura els Usuaris"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+#, fuzzy
+msgid "Host Name"
+msgstr "Nom de l'ordinador central"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+#, fuzzy
+msgid "Password required"
+msgstr "Contrasenya"
+
+#: ../../standalone/drakbackup_.c:3539
+#, fuzzy
+msgid "Username required"
+msgstr "Nom d'usuari"
+
+#: ../../standalone/drakbackup_.c:3542
+#, fuzzy
+msgid "Hostname required"
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaura Altres"
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Restaurar totes les còpies"
#
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Restauració Personalitzada"
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:3865
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Restaura la taula de particions"
+
#
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaura els Usuaris"
+
+#
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Anterior"
#
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Desa"
#
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Construeix la còpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Restaura"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Si us plau Construiu la còpia de seguretat abans de restaurar-la...\n"
-" o verifiqueu que el camí per a desar és correcte."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
+#, fuzzy
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Error durant sendmail\n"
" el vostre missatge d'informe no ha estat enviat\n"
" Si us plau configureu el sendmail"
-#: ../../standalone/drakbackup_.c:3598
+#: ../../standalone/drakbackup_.c:4255
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../standalone/drakbackup_.c:3621
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11609,19 +12138,19 @@ msgstr ""
"Error durant l'enviament del fitxer via FTP.\n"
" Si us plau corregiu la configuració de FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Si us plau, seleccioneu les dades per a restaurar..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Si us plau seleccioneu el medi per a la còpia..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Si us plau seleccioneu les dades per fer la còpia..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11629,68 +12158,68 @@ msgstr ""
"No s'ha trobat el fitxer de configuració \n"
"si us plau feu clic en Auxiliar o Avançat."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "Sota Desenvolupament ... si us plau espereu."
#
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Còpia de seguretat dels fitxers del sistema"
#
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Còpia de seguretat de fitxers d'usuari"
#
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Còpia de seguretat d'altres fitxers"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Progrés Total"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "fitxers que s'estan enviant per FTP"
#
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Enviant els fitxers..."
#
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Fes la Còpia de Seguretat des del fitxer de configuració"
#
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Veure la Configuració de la Còpia de Seguretat"
#
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Auxiliar de Configuració"
#
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Configuració Avançada"
#
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Fes Còpia de Seguretat"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11751,7 +12280,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11765,7 +12294,7 @@ msgstr ""
" definir myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11843,28 +12372,29 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
+#, fuzzy
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11895,18 +12425,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft per DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11936,7 +12466,7 @@ msgstr ""
" amb el programa; si no és així, escriuviu a la Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -12012,7 +12542,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -12031,7 +12561,7 @@ msgstr ""
"dur abans d'enviar-la al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12053,7 +12583,7 @@ msgstr ""
"dades. És important de tenir cura i no modificar a mà els \n"
"fitxers de còpia de seguretat.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -12169,9 +12699,9 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
#, fuzzy
msgid "Standalone Tools"
msgstr "Eines de consola"
@@ -12220,26 +12750,26 @@ msgstr "Printerdrake"
msgid "Configuration Wizards"
msgstr "Auxiliars de configuració"
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Application:"
msgstr "Autenticació"
#
-#: ../../standalone/drakbug_.c:97
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
msgstr "Paquet: "
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
+#: ../../standalone/drakbug_.c:100
#, fuzzy
msgid "Release: "
msgstr "Si us plau, espereu"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -12252,22 +12782,22 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:136
#, fuzzy
msgid "Report"
msgstr "Port"
#
-#: ../../standalone/drakbug_.c:165
+#: ../../standalone/drakbug_.c:166
#, fuzzy
msgid "Not installed"
msgstr "Post Desinstal·lació"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
+#: ../../standalone/drakbug_.c:190
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Les instàncies estaran disponibles després d'instal·lar a %s"
@@ -12728,7 +13258,7 @@ msgstr "Llista de Fonts"
#
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Escolliu l'aplicació que suportarà les fonts :"
#: ../../standalone/drakfont_.c:918
@@ -12810,19 +13340,19 @@ msgstr "Esborrar fonts del vostre sistema"
msgid "Post Uninstall"
msgstr "Post Desinstal·lació"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Connexió a Internet compartida"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr "Ho sento, només suportem el nuclis(kernels) 2.4"
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexió a Internet compartida està habilitada"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12834,31 +13364,31 @@ msgstr ""
"\n"
"Què voleu fer?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "deixa-ho córrer"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartició de la connexió a Internet està inhabilitada."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexió a Internet compartida està inhabilitada"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12870,19 +13400,19 @@ msgstr ""
"\n"
"Què voleu fer?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexió compartida a Internet està habilitada."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12899,21 +13429,21 @@ msgstr ""
"Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfície %s (utilitzant el mòdul %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Interfície %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12921,11 +13451,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuració de maquinari."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Interfície de la xarxa"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12940,7 +13470,7 @@ msgstr ""
"\n"
"Ara configuraré la vostra xarxa d'àrea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12949,11 +13479,11 @@ msgstr ""
"a la vostra xarxa d'àrea local."
#
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "l'intefície de xarxa ja està configurada"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12969,16 +13499,16 @@ msgstr ""
"Ho podeu fer manualment però heu de saber què feu."
#
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Reconfiguració automàtica"
#
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Mostra la configuració actual de la interfície"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12995,7 +13525,7 @@ msgstr ""
"Atribució IP: %s\n"
"Controlador: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -13015,58 +13545,46 @@ msgstr ""
"servidor DHCP vós mateix.\n"
"\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Xarxa Local de Classe C"
#
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "(Aquest) IP del Servidor DHCP"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Reconfigurar interfície i Servidor DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La Xarxa Local no finalitza amb '.0', ho deixem córrer."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
-"Potser us caldrà fer algun ajustament manual després de la instal·lació."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "S'està configurant..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqüències, instal·lant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -13077,23 +13595,23 @@ msgstr ""
"vostra xarxa d'àrea local utilitzant la configuració automàtica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuració ja s'ha realitzat, però ara està inhabilitada."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuració ja s'ha realitzat i ara està habilitada."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Configuració de la compartició de la connexió a Internet"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -13108,6 +13626,172 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "No s'ha detectat cap targeta de TV!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau "
+"verifiqueu que la targeta de Video/TV amb suport per a Linux estigui "
+"correctament insertada.\n"
+"\n"
+"\n"
+"Podeu visitar la nostra base de dades de maquinari a:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+#, fuzzy
+msgid "first step creation"
+msgstr "creació de discs d'arrencada"
+
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolució"
+
+#
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#, fuzzy
+msgid "choose image file"
+msgstr "Trieu un fitxer"
+
+#: ../../standalone/draksplash_.c:79
+#, fuzzy
+msgid "Theme name"
+msgstr "Nom de compartició"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+#, fuzzy
+msgid "go to lilosplash configuration"
+msgstr "Configuració després de la instal·lació"
+
+#: ../../standalone/draksplash_.c:83
+#, fuzzy
+msgid "quit"
+msgstr "Surt"
+
+#: ../../standalone/draksplash_.c:84
+#, fuzzy
+msgid "save theme"
+msgstr "Instal·la el sistema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Configura els serveis"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "go back"
+msgstr "Loopback"
+
+#: ../../standalone/draksplash_.c:120
+#, fuzzy
+msgid "preview"
+msgstr "dispositiu"
+
+#: ../../standalone/draksplash_.c:121
+#, fuzzy
+msgid "choose color"
+msgstr "Escolliu un monitor"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#
+#: ../../standalone/draksplash_.c:436
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Selecció del model d'impressora"
+
+#
+#: ../../standalone/draksplash_.c:454
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
+
+#
+#: ../../standalone/draksplash_.c:463
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "S'estan detectant els dispositius..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13209,11 +13893,11 @@ msgstr ""
"entreu la vostra normativa de tv i el país"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Normativa TV :"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Àrea :"
#: ../../standalone/drakxtv_.c:114
@@ -13301,7 +13985,7 @@ msgstr ""
"El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió "
"actual"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -13481,8 +14165,9 @@ msgid "service setting"
msgstr "parametritzant el servei"
#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
"Rebreu una alerta si algun dels serveis seleccionats deixa de funcionar"
@@ -13506,20 +14191,20 @@ msgstr "Configuració de l'alerta"
msgid "Please enter your email address below "
msgstr "Si us plau, entreu la contrasenya"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botó?"
#
-#: ../../standalone/printerdrake_.c:48
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "S'està llegint les dades de impressió..."
@@ -13532,22 +14217,33 @@ msgstr "S'estan detectant els dispositius..."
msgid "Test ports"
msgstr "Ports de comprovació"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
msgstr "%s trobat en %s, configurar-lo ?"
-#
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Seleccioneu un scanner"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Aquest scanner %s no se suporta"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -13557,11 +14253,11 @@ msgstr ""
"Si us plau seleccioneu el dispositiu en el qual teniu l'scanner"
#
-#: ../../standalone/scannerdrake_.c:95
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
msgstr "Escolliu dispositiu"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -13572,7 +14268,7 @@ msgstr ""
"Podeu executar printerdrake des del Centre de Control Mandrake en la secció "
"de Maquinari."
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -13583,48 +14279,18 @@ msgstr ""
"Ara podeu scannejar documents utilitzant ``XSane'' des de Multimedia/Gràfics "
"en el menú d'aplicacions."
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Sistema de tallafocs\n"
-"\n"
-"Ja heu configurat un tallafocs.\n"
-"Feu clic a Configura per canviar o eliminar el tallafoc"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Sistema de tallafocs\n"
-"\n"
-"Feu clic a Configura per configurar un tallafocs estàndard"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Escolliu el vostre idioma"
@@ -13698,227 +14364,7 @@ msgstr "Instal·la actualitzacions del sistema"
msgid "Exit install"
msgstr "Surt de la instal·lació"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configurador del tinyfirewall\n"
-"\n"
-"Amb això es configura un tallafocs personal per a aquest ordinador Linux "
-"Mandrake.\n"
-"Per a una potent solució de tallafocs dedicada, consulteu si us plau la "
-"distribució especialitzada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ara us farem preguntes sobre els serveis a què voleu autoritzar que\n"
-"Internet us connecti. Si us plau, penseu-hi a fons perquè la seguretat\n"
-"del vostre ordinador és important.\n"
-"\n"
-"Si us plau, si un moment donat no esteu utilitzant algun d'aquests serveis,\n"
-"desactiveu-ne el tallafocs. Podeu canviar aquesta configuració sempre que\n"
-"vulgueu tornant a executar aquesta aplicació!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de web en aquest ordinador que necessiteu que\n"
-"pugui veure tothom a Internet? Si esteu executant un servidor de web a què\n"
-"només ha d'accedir aquest ordinador, aquí podeu respondre tranquil·lament "
-"NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de noms en aquest ordinador? Si no n'heu\n"
-"configurat cap per proporcionar la IP i la informació de zona a tothom a\n"
-"Internet, si us plau responeu NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Voleu autoritzar les connexions Secure Shell (ssh) d'entrada? Es tracta\n"
-"d'una substitució del Telnet que podeu utilitzar per entrar. Si ara esteu\n"
-"utilitzant el Telnet, passeu-vos a l'ssh sense cap mena de dubte; el\n"
-"Telnet no està xifrat, de manera que us poden robar la contrasenya si\n"
-"l'utilitzeu, mentre que l'ssh està xifrat i no permet cap mena d'intercepció."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Voleu autoritzar les connexions Telnet d'entrada?\n"
-"Això és tremendament insegur, com hem dit a la pantalla anterior. Us\n"
-"recomanem vivament que respongueu No aquí i que utilitzeu l'ssh en comptes\n"
-"del Telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Esteu executant un servidor d'FTP que necessiteu que sigui accessible a\n"
-"Internet? Si és així, us recomanen vivament que només l'utilitzeu per a\n"
-"transferències anònimes, ja que qualsevol contrasenya que s'envia per FTP\n"
-"pot ser robada, atès que l'FTP no utilitza xifratge per a la transferència\n"
-"de contrasenyes.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de correu? Si esteu enviant els missatges\n"
-"a través del pine, el mutt o qualsevol altre client de correu basat en\n"
-"text, probablement és així. En cas contrari, desactiveu-ne el tallafocs.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor POP o IMAP? Això s'utilitzaria\n"
-"per allotjar comptes de correu dels usuaris, no basats en web,\n"
-"mitjançant aquest ordinador.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Sembla que esteu utilitzant un nucli 2.2. Si l'ordinador de\n"
-"casa o de l'oficina estableix automàticament la IP de la vostra\n"
-"xarxa (assignació dinàmica), us cal autoritzar això. És aquest el cas?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"El vostre ordinador està sincronitzat pel que fa al temps amb un altre?\n"
-"Normalment, això ho utilitzen organitzacions Unix/Linux mitjanes-grans\n"
-"per sincronitzar el temps de les entrades i coses així. Si no sou una part\n"
-"d'una oficina gran i no heu sentit parlar d'això, probablement no us trobeu\n"
-"en aquest cas."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"La configuració està completa. Podem desar aquests canvis al disc?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "No es pot obrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "No, no necessito DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Si, necessito DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "No, no necessito NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Si, necessito NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "No Desis"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Desa i Surt"
-
-#
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Auxiliar de configuració del sistema de tallafocs"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "No (aïlla-la d'internet amb el tallafocs)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Si (permet que passi el tallafocs)"
-
-#
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Si us plau, espereu... S'està verificant els pquets instal·lats"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Hi ha hagut errros instal·lant els paquets necessitats : %s i Bastille.\n"
-" Provi d'instal·lar-los manualment."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14052,6 +14498,10 @@ msgid "Graphical Environment"
msgstr "Entorn gràfic"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desenvolupament"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache i Pro-ftpd"
@@ -14164,8 +14614,346 @@ msgstr "Multimèdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació científica de treball"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
+#~ msgid ""
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
+#~ "\n"
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
+#~ msgstr ""
+#~ "la primera vegada que heu provat la configuració de X, podeu no estar "
+#~ "gaire satisfet\n"
+#~ "amb la presentació (pantalla massa petita, correguda amb a l'esquerra o "
+#~ "dreta, ...). Per tant,\n"
+#~ "tot i que X inicïi correctament, DrakX li preguntarà si la configuració "
+#~ "li agrada.\n"
+#~ "Li proposarà de canviar-la bó i proporcionant-li una llista de modes "
+#~ "vàlids\n"
+#~ "que ha trobat, perquè en seleccioni un.\n"
+#~ "\n"
+#~ "Com a última opció, si encara no pot fer funcionar les X , escolliu "
+#~ "\"Canviar\n"
+#~ "targeta gràfica\", seleccioneu \"Unlisted card\", i quan se us pregunti "
+#~ "quin\n"
+#~ "servidor, escolliu \"FBDev\". Aquesta és una opció de seguretat que "
+#~ "funciona en qualsevol\n"
+#~ "targeta gràfica moderna. Aleshores escolliu \"Test again\" per estar "
+#~ "segur."
+
+#
+#~ msgid "Internet and Messaging"
+#~ msgstr "Internet i Missatgeria"
+
+#
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Multimèdia i Gràfics"
+
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 proporciona 11 diferents entorns d'escritori gràfics i "
+#~ "gestors de finestres per a triar incloent GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, i la resta"
+
+#
+#~ msgid "Server Software"
+#~ msgstr "Programari del servidor"
+
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
+
+#~ msgid ""
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
+#~ msgstr ""
+#~ "Voleu aprendre Linux simplement, ràpidament, i gratuïtament? MandrakeSoft "
+#~ "proporciona entrenament de Linux gratuït, així com una manera de "
+#~ "comprovar els vostres progressos, a MandrakeCampus -- el nostre centre "
+#~ "d'ensenyament a Internet"
+
+#~ msgid ""
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
+#~ msgstr ""
+#~ "Un suport de qualitat de la Comunitat Linux, i de MandrakeSoft, és a un "
+#~ "clic del ratolí. I vós sou un veterà del Linux, convertiu-vos en \"Expert"
+#~ "\" i compartiu els vostres coneixements en la nostra web de suport"
+
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
+
+#~ msgid ""
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
+#~ msgstr ""
+#~ "Per a tots els vostres projectes en TI, els nostres consultors estan "
+#~ "preparats per a analitzar els vostres requeriments i oferir una solució "
+#~ "personalitzada. Beneficieu-vos de la gran experiència de MandrakeSoft com "
+#~ "a productor de Linux per a proporcionar una certera alternativa en TI per "
+#~ "a la vostra empresa"
+
+#
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
+
+#~ msgid ""
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
+#~ msgstr ""
+#~ "Per més informació sobre els Serveis Professionals de MandrakeSoft i "
+#~ "ofertes comercials, aneu a la següent pàgina web:"
+
+#~ msgid "LBA (doesn't work on old BIOSes)"
+#~ msgstr "LBA (no funciona en BIOS antics)"
+
+#~ msgid "You don't have any partitions!"
+#~ msgstr "No teniu cap partició!"
+
+#~ msgid ""
+#~ "DiskDrake failed to read correctly the partition table.\n"
+#~ "Continue at your own risk!"
+#~ msgstr ""
+#~ "El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
+#~ "Si continueu, és sota la vostra responsabilitat!"
+
+#~ msgid ""
+#~ "I can't read your partition table, it's too corrupted for me :(\n"
+#~ "I'll try to go on blanking bad partitions"
+#~ msgstr ""
+#~ "No puc llegir la vostra taula de particions, està massa malmesa per a mi :"
+#~ "(\n"
+#~ "Intentaré seguir buidant les particions incorrectes"
+
+#~ msgid ""
+#~ "Please Build backup before to restore it...\n"
+#~ " or verify that your path to save is correct."
+#~ msgstr ""
+#~ "Si us plau Construiu la còpia de seguretat abans de restaurar-la...\n"
+#~ " o verifiqueu que el camí per a desar és correcte."
+
+#~ msgid "Firewalling Configuration"
+#~ msgstr "Configuració del sistema de tallafocs"
+
+#~ msgid "Firewalling configuration"
+#~ msgstr "Configuració del sistema de tallafocs"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "You already have set up a firewall.\n"
+#~ "Click on Configure to change or remove the firewall"
+#~ msgstr ""
+#~ "Sistema de tallafocs\n"
+#~ "\n"
+#~ "Ja heu configurat un tallafocs.\n"
+#~ "Feu clic a Configura per canviar o eliminar el tallafoc"
+
+#~ msgid ""
+#~ "Firewalling\n"
+#~ "\n"
+#~ "Click on Configure to set up a standard firewall"
+#~ msgstr ""
+#~ "Sistema de tallafocs\n"
+#~ "\n"
+#~ "Feu clic a Configura per configurar un tallafocs estàndard"
+
+#~ msgid ""
+#~ "We'll now ask you questions about which services you'd like to allow\n"
+#~ "the Internet to connect to. Please think carefully about these\n"
+#~ "questions, as your computer's security is important.\n"
+#~ "\n"
+#~ "Please, if you're not currently using one of these services, firewall\n"
+#~ "it off. You can change this configuration anytime you like by\n"
+#~ "re-running this application!"
+#~ msgstr ""
+#~ "Ara us farem preguntes sobre els serveis a què voleu autoritzar que\n"
+#~ "Internet us connecti. Si us plau, penseu-hi a fons perquè la seguretat\n"
+#~ "del vostre ordinador és important.\n"
+#~ "\n"
+#~ "Si us plau, si un moment donat no esteu utilitzant algun d'aquests "
+#~ "serveis,\n"
+#~ "desactiveu-ne el tallafocs. Podeu canviar aquesta configuració sempre "
+#~ "que\n"
+#~ "vulgueu tornant a executar aquesta aplicació!"
+
+#~ msgid ""
+#~ "Are you running a web server on this machine that you need the whole\n"
+#~ "Internet to see? If you are running a webserver that only needs to be\n"
+#~ "accessed by this machine, you can safely answer NO here.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor de web en aquest ordinador que necessiteu "
+#~ "que\n"
+#~ "pugui veure tothom a Internet? Si esteu executant un servidor de web a "
+#~ "què\n"
+#~ "només ha d'accedir aquest ordinador, aquí podeu respondre tranquil·lament "
+#~ "NO.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a name server on this machine? If you didn't set one\n"
+#~ "up to give away IP and zone information to the whole Internet, please\n"
+#~ "answer no.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor de noms en aquest ordinador? Si no n'heu\n"
+#~ "configurat cap per proporcionar la IP i la informació de zona a tothom a\n"
+#~ "Internet, si us plau responeu NO.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+#~ "is a telnet-replacement that you might use to login. If you're using\n"
+#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
+#~ "encrypted -- so some attackers can steal your password if you use\n"
+#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
+#~ msgstr ""
+#~ "Voleu autoritzar les connexions Secure Shell (ssh) d'entrada? Es tracta\n"
+#~ "d'una substitució del Telnet que podeu utilitzar per entrar. Si ara "
+#~ "esteu\n"
+#~ "utilitzant el Telnet, passeu-vos a l'ssh sense cap mena de dubte; el\n"
+#~ "Telnet no està xifrat, de manera que us poden robar la contrasenya si\n"
+#~ "l'utilitzeu, mentre que l'ssh està xifrat i no permet cap mena "
+#~ "d'intercepció."
+
+#~ msgid ""
+#~ "Do you want to allow incoming telnet connections?\n"
+#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
+#~ "strongly recommend answering No here and using ssh in place of\n"
+#~ "telnet.\n"
+#~ msgstr ""
+#~ "Voleu autoritzar les connexions Telnet d'entrada?\n"
+#~ "Això és tremendament insegur, com hem dit a la pantalla anterior. Us\n"
+#~ "recomanem vivament que respongueu No aquí i que utilitzeu l'ssh en "
+#~ "comptes\n"
+#~ "del Telnet.\n"
+
+#~ msgid ""
+#~ "Are you running an FTP server here that you need accessible to the\n"
+#~ "Internet? If you are, we strongly recommend that you only use it for\n"
+#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor d'FTP que necessiteu que sigui accessible a\n"
+#~ "Internet? Si és així, us recomanen vivament que només l'utilitzeu per a\n"
+#~ "transferències anònimes, ja que qualsevol contrasenya que s'envia per "
+#~ "FTP\n"
+#~ "pot ser robada, atès que l'FTP no utilitza xifratge per a la "
+#~ "transferència\n"
+#~ "de contrasenyes.\n"
+
+#~ msgid ""
+#~ "Are you running a mail server here? If you're sending you \n"
+#~ "messages through pine, mutt or any other text-based mail client,\n"
+#~ "you probably are. Otherwise, you should firewall this off.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor de correu? Si esteu enviant els missatges\n"
+#~ "a través del pine, el mutt o qualsevol altre client de correu basat en\n"
+#~ "text, probablement és així. En cas contrari, desactiveu-ne el tallafocs.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Are you running a POP or IMAP server here? This would\n"
+#~ "be used to host non-web-based mail accounts for people via \n"
+#~ "this machine.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Esteu executant un servidor POP o IMAP? Això s'utilitzaria\n"
+#~ "per allotjar comptes de correu dels usuaris, no basats en web,\n"
+#~ "mitjançant aquest ordinador.\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You appear to be running a 2.2 kernel. If your network IP\n"
+#~ "is automatically set by a computer in your home or office \n"
+#~ "(dynamically assigned), we need to allow for this. Is\n"
+#~ "this the case?\n"
+#~ msgstr ""
+#~ "Sembla que esteu utilitzant un nucli 2.2. Si l'ordinador de\n"
+#~ "casa o de l'oficina estableix automàticament la IP de la vostra\n"
+#~ "xarxa (assignació dinàmica), us cal autoritzar això. És aquest el cas?\n"
+
+#~ msgid ""
+#~ "Is your computer getting time syncronized to another computer?\n"
+#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
+#~ "to synchronize time for logging and such. If you're not part\n"
+#~ "of a larger office and haven't heard of this, you probably \n"
+#~ "aren't."
+#~ msgstr ""
+#~ "El vostre ordinador està sincronitzat pel que fa al temps amb un altre?\n"
+#~ "Normalment, això ho utilitzen organitzacions Unix/Linux mitjanes-grans\n"
+#~ "per sincronitzar el temps de les entrades i coses així. Si no sou una "
+#~ "part\n"
+#~ "d'una oficina gran i no heu sentit parlar d'això, probablement no us "
+#~ "trobeu\n"
+#~ "en aquest cas."
+
+#~ msgid ""
+#~ "Configuration complete. May we write these changes to disk?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ msgstr ""
+#~ "La configuració està completa. Podem desar aquests canvis al disc?\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+
+#~ msgid "Can't open %s for writing: %s\n"
+#~ msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "No, no necessito DHCP"
+
+#~ msgid "Yes I need DHCP"
+#~ msgstr "Si, necessito DHCP"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "No, no necessito NTP"
+
+#~ msgid "Yes I need NTP"
+#~ msgstr "Si, necessito NTP"
+
+#~ msgid "Don't Save"
+#~ msgstr "No Desis"
+
+#~ msgid "Save & Quit"
+#~ msgstr "Desa i Surt"
+
+#
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Auxiliar de configuració del sistema de tallafocs"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "No (aïlla-la d'internet amb el tallafocs)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Si (permet que passi el tallafocs)"
+
+#
+#~ msgid "Please Wait... Verifying installed packages"
+#~ msgstr "Si us plau, espereu... S'està verificant els pquets instal·lats"
+
+#~ msgid ""
+#~ "Failure installing the needed packages: %s and Bastille.\n"
+#~ " Try to install them manually."
+#~ msgstr ""
+#~ "Hi ha hagut errros instal·lant els paquets necessitats: %s i Bastille.\n"
+#~ " Provi d'instal·lar-los manualment."
#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
@@ -14196,22 +14984,12 @@ msgstr "Estació científica de treball"
#~ "que accepti connexions de molts clients. Nota: si la seva màquina és "
#~ "només un client d'internet, seria millor escollir un nivell menor"
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Opcions"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Seguretat"
-
#~ msgid "Data list to include on CDROM."
#~ msgstr "Llista de dades per a incloure en un CDROM."
-#
#~ msgid "Please choose your CD space"
#~ msgstr "Si us plau, escolliu l'espai del CD"
-#
#~ msgid "Please enter the cd writer speed"
#~ msgstr "Si us plau entreu la velocitat d'escriptura del cd"
@@ -14234,10 +15012,6 @@ msgstr "Estació científica de treball"
#~ msgid "Choose a X driver"
#~ msgstr "Escolliu un dispositiu X"
-#
-#~ msgid "X driver"
-#~ msgstr "Dispositiu X"
-
#~ msgid "Choose options for server"
#~ msgstr "Escolliu les opcions per al servidor"
@@ -14250,10 +15024,6 @@ msgstr "Estació científica de treball"
#~ msgid "Resolutions not chosen yet"
#~ msgstr "Encara no s'han escollit les resolucions"
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
-
#~ msgid ""
#~ "\n"
#~ "try to change some parameters"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 5c26163d0..258e14e79 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-02-23 10:00-0000\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-29 22:29-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
@@ -49,19 +49,19 @@ msgstr "32 MB"
msgid "64 MB or more"
msgstr "16 MB neu fwy"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Dewiswch wasanaethwr X"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "Gwasanaethwr X"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,30 +69,30 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "Ffurfweddiad XFree"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfig/card.pm_.c:384
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:386
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
+msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
#: ../../Xconfig/various.pm_.c:23
@@ -100,13 +100,13 @@ msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,53 +150,53 @@ msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Arddull"
-#: ../../Xconfig/main.pm_.c:104
-#, fuzzy
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
-msgstr "Cerdyn graffig"
+msgstr "Cerdyn Graffig"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Cydraniad"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "Prawf"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "Iawn"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Gadael"
@@ -213,28 +213,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Generig"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
-#, fuzzy
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
-msgstr "Dadwneud"
+msgstr "Gwerthwr"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Methodd ymholiad Plug'nPlay. Dewiswch ddangosydd penodol"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -256,11 +255,11 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
@@ -297,36 +296,40 @@ msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Diddymu"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Profi'r ffurfweddiad"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -412,11 +415,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"Mae'n edrych fel bod gan eich cerdyn graffig gyswlltTV-OUT.\n"
+"Mae modd ei ffurfweddu i weithio drwy byffer ffrâm.\n"
+"\n"
+"Rhaid cysylltu eich cerdyn graffig â'ch teledu cyn cychwyn eich "
+"cyfrifiadur.\n"
+"Dewiswch \"TVout\" yn y llwythwr cychwyn\n"
+"\n"
+"Ydy'r nodwedd hon gennych?"
#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
msgid "What norm is your TV using?"
-msgstr "Pa fath o gysylltiad IDSN?"
+msgstr "Pa norm mae eich teledu yn ei ddefnyddio?"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -462,26 +472,22 @@ msgstr "Cychwyn o DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Cryno"
@@ -498,16 +504,17 @@ msgstr "Modd fideo"
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
@@ -542,14 +549,14 @@ msgid ""
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
@@ -599,16 +606,16 @@ msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Gorffen"
@@ -620,7 +627,7 @@ msgstr "Newid"
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -714,13 +721,13 @@ msgstr "Oes gennych un arall?"
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Iawn"
@@ -741,7 +748,7 @@ msgid "(module %s)"
msgstr "(modiwl %s)"
#: ../../any.pm_.c:689
-#, fuzzy, c-format
+#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
@@ -824,39 +831,46 @@ msgstr "caniatáu \"su\""
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+msgid "access to network tools"
+msgstr "mynediad i offer rhwydwaith"
+
+#: ../../any.pm_.c:755
+msgid "access to compilation tools"
+msgstr "mynediad i offer crynhoad"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:766
-#, fuzzy
+#: ../../any.pm_.c:768
msgid "The user name is too long"
-msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +879,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -899,54 +913,54 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -954,12 +968,17 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Hoffech chi ganiatáu i rhai defnyddwyr rannu eu cyfeiriaduron?\n"
+"Bydd caniatáu hyn yn gadael i ddefnyddwyr glicio ar \"Rhannu\" yn konqueror "
+"a nautilus.\n"
+"\n"
+"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -967,31 +986,31 @@ msgstr ""
"Mae rhannu yn ôl defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1002,7 +1021,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1010,7 +1029,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1018,7 +1037,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1026,7 +1045,7 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1042,7 +1061,7 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1050,33 +1069,31 @@ msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1091
-#, fuzzy
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
-msgstr "Dewisiadau"
+msgstr "Dewisiadau Sylfaenol DrakSec"
-#: ../../any.pm_.c:1092
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Dewiswch lefel diogelwch"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
-msgstr ""
+msgstr "Gweinyddwr Diogelwch (mewngfnodi neu e-bost)"
#: ../../any.pm_.c:1189
msgid ""
@@ -1084,6 +1101,9 @@ msgid ""
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"Yma medrwch ddewis yr allwedd neu gyfuniad allwedd fydd yn\n"
+"caniatáu newid rhwng bysellfyrddau gwahanol (e.e.: lladin neu\n"
+"arall)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm_.c:375
@@ -1103,57 +1123,57 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "nid yw cymorth wedi ei weithredu eto.\n"
@@ -1161,8 +1181,8 @@ msgstr "nid yw cymorth wedi ei weithredu eto.\n"
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
@@ -1172,7 +1192,7 @@ msgstr "/_Ffeil"
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1206,102 +1226,110 @@ msgid "Yaboot mode"
msgstr "Modd Yaboot"
#: ../../bootlook.pm_.c:143
-#, fuzzy
msgid "Install themes"
-msgstr "System osod"
+msgstr "Gosod themâu"
#: ../../bootlook.pm_.c:144
msgid "Display theme under console"
-msgstr ""
+msgstr "Dangos thema yn y consol"
-#: ../../bootlook.pm_.c:166
-msgid "Can't create Bootsplash preview"
-msgstr ""
+#: ../../bootlook.pm_.c:145
+msgid "Create new theme"
+msgstr "Creu thema newydd"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169
+msgid "Can't create Bootsplash preview"
+msgstr "Methu creu rhagolwg Croeso Cychwyn"
+
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Gwall"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "%s to %s.old wrth gefn"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "methu cadw neges lilo wrth gefn"
-#: ../../bootlook.pm_.c:186
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:189
+#, c-format
msgid "Copy %s to %s"
-msgstr "Copïo %s"
+msgstr "Copïo %s i %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
-msgstr ""
+msgstr "methu newid neges lilo"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
-msgstr ""
+msgstr "Heb ganfod neges lilo"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:223
+#, c-format
msgid "Write %s"
-msgstr "XFree86: %s"
+msgstr "Ysgrifennu %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
+"Heb ganfod y ffeil"
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"Methu ailgychwyn LiLo!\n"
+"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
+"LiLo'n llawn."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "Ail gychwyh 'lilo'"
-#: ../../bootlook.pm_.c:248
-#, fuzzy
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
-msgstr "NoVideo"
+msgstr "Nodyn"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "Themâu LiLo a Bootsplash wedi eu gosod yn llwyddiannus"
-#: ../../bootlook.pm_.c:249
-#, fuzzy
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
-msgstr "Dewis dosbarth gosod"
+msgstr "Methodd gosod y thema!"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1310,23 +1338,21 @@ msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ffurfweddu"
-#: ../../bootlook.pm_.c:267
-#, fuzzy
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
-msgstr "Cadw'r dewis becynnau"
+msgstr "Dewis sgrin croeso"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
-msgstr ""
+msgstr "Themâu"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1334,45 +1360,50 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"Dewis thema ar\n"
+"gyfer lilo a bootsplash,\n"
+"mae modd eu dewis\n"
+"ar wahân"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
-msgstr ""
+msgstr "Sgrin Lilo"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
-msgstr ""
+msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Modd System"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "Iawn"
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
@@ -1469,49 +1500,50 @@ msgstr "Awstria"
msgid "United States"
msgstr "Yr Unol Daleithiau"
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Model anhysbys"
-
#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
msgid "New"
-msgstr "newydd"
+msgstr "Newydd"
+
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Dad-osod"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Gosod"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Gwasanaethwr"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/dav.pm_.c:68
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
-msgstr "Rhowch gyflymder yr ysgrifennydd CD"
+msgstr "Rhowch URL gwasanaehthwr WebDAV"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
-msgstr ""
+msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: ../../diskdrake/dav.pm_.c:92
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "Gwasanaethwr"
+msgstr "Gwasanaethwr:"
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
@@ -1520,8 +1552,9 @@ msgstr "Dewisiadau: %s"
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1560,10 +1593,14 @@ msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Manylion"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+msgid "No hard drives found"
+msgstr "Heb ganfood gyrrwyr caled"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1588,13 +1625,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Arall"
@@ -1602,12 +1639,12 @@ msgstr "Arall"
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
@@ -1617,7 +1654,7 @@ msgstr "Math"
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Dileu"
@@ -1625,7 +1662,7 @@ msgstr "Dileu"
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1633,102 +1670,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Rhagor"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilëwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1736,11 +1773,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1748,112 +1785,107 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Gosod"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Dad-osod"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Nid oes modd i chi greu rhaniad newydd\n"
+"(gan eich bod wedi cyrraedd y nifer uchaf o raniadau cynradd).\n"
+"Diddymwch raniad cynradd a chreu rhaniad estynedig."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1862,138 +1894,138 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:584
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:594
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Lle ydych am osod dyfais %s?"
+msgstr "Lle ydych am osod %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:955
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:965
+#, c-format
msgid "The package %s is needed. Install it?"
-msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
+msgstr "Rhaid cael pecyn %s. Ydych chi am ei osod?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2005,7 +2037,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2017,7 +2049,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2027,45 +2059,45 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2074,83 +2106,83 @@ msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Copïo %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2159,7 +2191,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2167,27 +2199,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2199,7 +2231,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2211,58 +2243,62 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr "Darllen yn unig"
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1156
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "ar fws %d id %d\n"
+msgstr "ar sianel %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2278,58 +2314,56 @@ msgstr "Cliciwch ar gyfrwng"
#, c-format
msgid "Can't login using username %s (bad password?)"
msgstr ""
+"Methu mewngofnodi gan ddefnyddio enw defnyddiwr %s (cyfrinair anghywir?)"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "Dilysu"
+msgstr "Angen Dilysu Parth"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "Rhyngrwyd"
+msgstr "Un arall"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
-msgstr "Enw defnyddiwr"
+msgstr "Pa enw defnyddiwr"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
+"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth y gael mynediad i'r "
+"gwesteiwr."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Enw defnyddiwr"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "Parth NIS"
+msgstr "Parth"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2346,285 +2380,343 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Nid wyf yn medru darllen eich tabl rhaniad, mae'n rhy lygredig. :(\n"
+"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
+" HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
+"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
+"\n"
+"Ydych chi'n cytuno i golli'r holl raniadau?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:501
-#, fuzzy
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
+"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
+"pwynt gosod\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr "Dim gyrrwyr eraill"
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr "Nid oes gyrrwr OSS/ALSA arall ar gyfer eich cerdyn sain (%s)"
+
+#: ../../harddrake/sound.pm_.c:158
+msgid "Sound configuration"
+msgstr "Furfweddiad sain"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
-"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
+"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
+"sain (%s)"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../harddrake/sound.pm_.c:162
+msgid "Driver:"
+msgstr "Gyrrwr:"
-#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr "Dim gyrrwr hysbys"
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
+
+#: ../../harddrake/sound.pm_.c:177
+msgid "Unkown driver"
+msgstr "Gyrrwr anhysbys"
+
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+"Nid yw'r gyrrwr \"%s\" wedi ei restri\n"
+"\n"
+"Gyrrwch allbwn gorchymyn \"lspcidrake -v\" i\n"
+"Thierry Vignaud <tvignaud at mandrakesoft dot com>\n"
+"o dan bennawd: unlisted sound drivers"
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
-msgstr "Llygoden"
+msgstr "Model"
-#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
-msgstr "Cof Cerdyn (DMA)"
+msgstr "Model disg caled"
-#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
-msgstr "Diddymu"
+msgstr "Sianel"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "Sianel EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
-msgstr ""
+msgstr "Bws"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "dyma'r bws corfforol i'r ddyfais gael ei gysylltu (e.e. PCI, USB,...)"
-#: ../../harddrake/ui.pm_.c:20
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
-msgstr "Llygoden"
+msgstr "Modiwl"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "y modiwl o'r cnewyllyn GNU/Linux sy'n trin y ddyfais honno"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
-msgstr ""
+msgstr "Dosbarth y cyfrwng"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "dosbarth y dyfais caledwedd"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Disgrifiad"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "mae'r maes yn disgrifio'r ddyfais"
-#: ../../harddrake/ui.pm_.c:24
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
-msgstr "Dilysu"
+msgstr "Dynodiad bws"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
+"- dyfeisiau PCI ac USB : dyma restr gwerthwyr, dyfais, iswerthwyr ac "
+"isddyfais PCI/USB"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
-msgstr ""
+msgstr "Lleoliad ar y bws"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- dyfeisiau pci: dyma slot PCI, dyfais a gwaith y cerdyn\n"
+"- dyfeisiau ide: mae'r ddyfais un ai yn was neu feistr\n"
+"- dyfeisiau scsi: dynodiad dyfeisiau scsi a'r bws scsi"
-#: ../../harddrake/ui.pm_.c:31
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
-msgstr "Dewiswch ffeil"
+msgstr "Hen ffeil dyfais"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "hen enw dyfais sefydlog yn cael ei ddefnyddio mewn pecyn dev"
-#: ../../harddrake/ui.pm_.c:33
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
-msgstr "Dyfais mynedfa"
+msgstr "Dyfais devfs newydd"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "enw dyfais deinamig yn cael eui gynhyrchu gan incore kernel devfs"
-#: ../../harddrake/ui.pm_.c:35
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
-msgstr "2 fotwm"
+msgstr "Nifer o fotymau"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "enw gwerthwr y ddyfais"
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Dim gyrrwyr eraill"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:39
#, fuzzy
+msgid "the list of alternative drivers for this sound card"
+msgstr "Nid oes gyrrwr OSS/ALSA arall ar gyfer eich cerdyn sain (%s)"
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
-msgstr "Gadael"
+msgstr "/_Gadael"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Cymorth"
-#: ../../harddrake/ui.pm_.c:62
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
-msgstr "/_Cymorth"
+msgstr "/_Cymorth..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr ""
+msgstr "Harddrake help"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"Disgrifiad y meysydd:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:68
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
-msgstr "/Cymorth/_Ynghylch..."
+msgstr "/_Ynghylch..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
-msgstr ""
+msgstr "Ynghylch Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
+"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
+"Fersiwn:"
-#: ../../harddrake/ui.pm_.c:71
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
-msgstr "Atoholi"
+msgstr "Awdur"
-#: ../../harddrake/ui.pm_.c:83
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "Canfod disg caled"
+msgstr "Harddrake2 fersiwn "
-#: ../../harddrake/ui.pm_.c:91
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
-msgstr "Gweler gwyboadeth am galedwedd"
+msgstr "Caledwedd canfyddwyd"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Configure module"
-msgstr "Ffurfweddu llygoden"
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Gwybodaeth"
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
-msgid "Informations"
-msgstr "Dangos gwybodaeth"
+#: ../../harddrake/ui.pm_.c:108
+msgid "Configure module"
+msgstr "Modd ffurfweddu"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
-msgstr ""
+msgstr "Rhedeg offeryn ffurfweddu"
-#: ../../harddrake/ui.pm_.c:96
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
-msgstr "canfyddwyd ar borth %s"
+msgstr "Canfod ar waith"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Arhoswch"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
-msgstr ""
+msgstr "cynradd"
-#: ../../harddrake/ui.pm_.c:139
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
-msgstr "%d eiliad"
+msgstr "eilradd"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
-#: ../../harddrake/ui.pm_.c:192
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:213
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "Tynnu argraffydd \"%s\"..."
+msgstr "Rhedeg \"%s\"..."
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
-#, fuzzy
msgid "Auto-detect"
-msgstr "Defnyddio awto ganfod"
+msgstr "Awto ganfod"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
-#, fuzzy
msgid "Unknown|Generic"
-msgstr "Generig"
+msgstr "Anhysbys|Generig"
#: ../../harddrake/v4l.pm_.c:98
msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+msgstr "Anhysbys|CPH05X (bt878) [nifer o werthwyr]"
#: ../../harddrake/v4l.pm_.c:99
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+msgstr "Anhysbys|CPH06X (bt878) [nifer o werthwyr]"
#: ../../harddrake/v4l.pm_.c:210
msgid ""
@@ -2633,59 +2725,62 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed"
msgstr ""
+"Ar gyfer y rhelyw o gardiau Teledu diweddar, mae'r modiwl bttv o'r cnewyllyn "
+"yn awto ganfod y paramedrau cywir.\n"
+"Os yw'ch cerdyn yn cael ei ganfod ar gam, mae modd gorfodi'r mathau cywir o "
+"gerdyn a rheolydd,\n"
+"Dewiswch baramedrau eich cerdyn teledu os oes raid"
#: ../../harddrake/v4l.pm_.c:213
-#, fuzzy
-msgid "Card model :"
-msgstr "Cof Cerdyn (DMA)"
+msgid "Card model:"
+msgstr "Model cerdyn:"
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Newid y math"
+msgid "Tuner type:"
+msgstr "Math o diwniwr"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
-msgstr ""
+msgid "Number of capture buffers:"
+msgstr "Nifer o fyffers cipio:"
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "nifer o fyffers cipio ar gyfer cipio mmap"
#: ../../harddrake/v4l.pm_.c:217
-#, fuzzy
-msgid "PLL setting :"
-msgstr "gosodiad llwyth"
+msgid "PLL setting:"
+msgstr "Gosodiad PLL:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
-msgstr ""
+msgid "Radio support:"
+msgstr "Cynal radio:"
#: ../../harddrake/v4l.pm_.c:218
msgid "enable radio support"
-msgstr ""
+msgstr "galluogi cynal radio"
#: ../../help.pm_.c:13
+#, fuzzy
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2807,6 +2902,7 @@ msgstr ""
"allan yr CD cyfredol a gofyn am y llall.."
#: ../../help.pm_.c:77
+#, fuzzy
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2835,7 +2931,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2910,11 +3006,12 @@ msgstr ""
" "
#: ../../help.pm_.c:128
+#, fuzzy
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2984,12 +3081,13 @@ msgstr ""
"greu disg meddal o'r fath."
#: ../../help.pm_.c:164
+#, fuzzy
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3066,10 +3164,11 @@ msgstr ""
"!!"
#: ../../help.pm_.c:203
+#, fuzzy
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3082,6 +3181,7 @@ msgid ""
msgstr "Mae gGNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)"
#: ../../help.pm_.c:217
+#, fuzzy
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
@@ -3100,7 +3200,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (am X Window System) yw calon rhag wyneb graffigol GNU/Linux\n"
"y mae pob amgylchedd graffig megis KDE, Gnome, AfterStep\n"
@@ -3121,32 +3223,7 @@ msgstr ""
"bod y ffurfweddiad yn anghywir a daw i ben ymhen 10 eiliad, gan adfer y "
"sgrin."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Efallai na fyddwch yn fodlon iawn gyda dagosiad ffurfweddiad X y tro\n"
-"cyntaf fyddwch yn ei ddefnyddio (sgrin yn rhy fach, i un ochr, ag ati)\n"
-"Felly mae DrakX yn gofyn i chi os yw'r ffurfweddiad yn iawn. Bydd\n"
-"hefyd yn cynnig ei newid drwy gynnig restr o foddau dilys daeth o hyd\n"
-"iddynt, i chi gael dewis un.\n"
-" \n"
-"Os nad ydych yn medru cael X i weithio, dewiswch \" Newid cerdyn graffig"
-"\",\n"
-"dewiswch \"Cerdyn heb ei restri\", ac yna wrth ddewis gwasanaethwr, dewis\n"
-"\"FBDev\". Mae hwn yn ddewis diogelwch sy'n gweithio gydag unrhyw gerdyn\n"
-"graffig modern. Dewiswch \" Profwch eto\" i fod yn siwr."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3160,7 +3237,8 @@ msgstr ""
"am ateb \"Na\" os yw eich peiriant i weithredu fel gwasanaethwr, neu os\n"
"nad oeddech yn llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir.."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3180,10 +3258,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
"gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a theipio\n"
@@ -3214,7 +3292,7 @@ msgstr ""
"dim\n"
"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
@@ -3248,7 +3326,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3281,7 +3361,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -3355,7 +3437,7 @@ msgstr ""
"beth\n"
"ydych yn ei wneud."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3421,7 +3503,7 @@ msgstr ""
"Linux,\n"
"teipiwch \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3473,7 +3555,7 @@ msgstr ""
"Cliciwch \"Uwch\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
"gwallus ar y ddisg."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3488,12 +3570,13 @@ msgstr ""
"\n"
"Amynedd..."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
+#, fuzzy
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3514,7 +3597,7 @@ msgstr ""
"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
"\"Gosod\" i estyn a gosod y pecynnau hynny neu \"Diddymu\" i beidio."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3527,14 +3610,15 @@ msgstr ""
"amodau, cliciwch ar fotwm \"Gwrthod\" fydd yn terfynu'r gosodiad yn syth.\n"
"I barhau gyda'r gosodiad, cliciwch fotwm \"Derbyn\"."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
+#, fuzzy
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3546,7 +3630,7 @@ msgstr ""
"\n"
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
@@ -3564,26 +3648,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3611,7 +3695,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
@@ -3654,7 +3738,7 @@ msgstr ""
"lwytho'r\n"
"tabl rhaniad gwreiddiol.\n"
"\n"
-" *\"awto osod cyfrwng symudol\": dad-diciwch y dewis hwn i osod a dad "
+" *\"Awto osod cyfrwng symudol\": dad-diciwch y dewis hwn i osod a dad "
"osod\n"
"gyda llaw, cyfryngau symudol megis disgiau meddal ac CD-ROMau\n"
"\n"
@@ -3696,7 +3780,7 @@ msgstr ""
"gyfer\n"
" sefyllfaoedd cychwyn argyfyngus!"
-#: ../../help.pm_.c:513
+#: ../../help.pm_.c:507
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3758,11 +3842,11 @@ msgstr ""
"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
-#: ../../help.pm_.c:544
+#: ../../help.pm_.c:538
msgid "Please be patient. This operation can take several minutes."
msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
-#: ../../help.pm_.c:547
+#: ../../help.pm_.c:541
#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
@@ -3770,23 +3854,23 @@ msgid ""
"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
"system:\n"
"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
+" * \"Install\": completely wipes out the old system, however, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
" * \"Upgrade\": this installation class allows to simply update the\n"
"packages currently installed on your Mandrake Linux system. It keeps the\n"
"current partitions of your hard drives as well as user configurations. All\n"
-"other configuration steps remain available with respect to plain\n"
+"other configuration steps remain available, similar to a normal\n"
"installation;\n"
"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
+"Upgrades should work fine on Mandrake Linux systems containing version\n"
+"\"8.1\" or later.\n"
"\n"
"Depending on your knowledge of GNU/Linux, select one of the following\n"
"choices:\n"
@@ -3795,11 +3879,11 @@ msgid ""
"operating system. The installation will be very easy and you will only be\n"
"asked a few questions;\n"
"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
+" * Expert: if you have a good understanding of GNU/Linux, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good knowledge of\n"
+"GNU/Linux, so it is not recommended that those without a fair amount of\n"
+"experience select this installation class."
msgstr ""
"Mae DrakX am wybod a ydych am wneud gosodiad rhagosodedig.\n"
"Hwn sy'n cael ei (\"Argymell\") neu a ydych eisiau mwy o reolaeth\n"
@@ -3835,19 +3919,23 @@ msgstr ""
"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch â dewis hwn os\n"
" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../help.pm_.c:584
+#: ../../help.pm_.c:578
+#, fuzzy
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked on next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non latin layouts."
msgstr ""
"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
"ddibynnu pa\n"
@@ -3866,8 +3954,11 @@ msgstr ""
" cynnal.\n"
" "
-#: ../../help.pm_.c:597
+#: ../../help.pm_.c:594
+#, fuzzy
msgid ""
+"The first step is to choose your preferred language.\n"
+"\n"
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -3895,7 +3986,8 @@ msgstr ""
"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../help.pm_.c:610
+#: ../../help.pm_.c:609
+#, fuzzy
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3908,7 +4000,14 @@ msgid ""
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Wheel mouses are sometimes not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image is displayed. You then need to move the wheel of your\n"
+"mouse to activate it correctly. Then test all buttons and movements are\n"
+"correct."
msgstr ""
"Drwy ragosodiad mae DrakX yn cymryd bod gennych lygoden dau fotwm a bydd yn "
"ei osod i efelychu botwm tri. Bydd DrakX yn gwybod yn awtomatig p'un a'i "
@@ -3922,7 +4021,7 @@ msgstr ""
"fod y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch "
"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto."
-#: ../../help.pm_.c:624
+#: ../../help.pm_.c:630
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3931,7 +4030,7 @@ msgstr ""
"yn\n"
"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../help.pm_.c:628
+#: ../../help.pm_.c:634
#, fuzzy
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
@@ -3962,9 +4061,9 @@ msgid ""
"In Expert mode, you will be asked if you will be connecting to an\n"
"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
+"If your network uses either of the LDAP, NIS, or PDC Windows Domain\n"
+"authentication services, select the appropriate one as \"authentication\".\n"
+"If you do not know, ask your network administrator.\n"
"\n"
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
@@ -4013,7 +4112,7 @@ msgstr ""
"weinyddu,\n"
" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-#: ../../help.pm_.c:664
+#: ../../help.pm_.c:670
#, fuzzy
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
@@ -4053,16 +4152,7 @@ msgid ""
"options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
+"options, which are reserved for the expert user."
msgstr ""
"Mae LILO a grub yn llwythwyr cychwyn ar gyfer GNU/Linux. Fel rheol\n"
"mae'r cam yma'n gwbl awtomatig. Mewn gwirionedd mae DrakX yn\n"
@@ -4123,13 +4213,17 @@ msgstr ""
"\"Ychwanegu\" i greu enw newydd; a \"Gorffen\" i fynd ymlaen i'r cam nesaf "
"o'r gosod."
-#: ../../help.pm_.c:713
+#: ../../help.pm_.c:710
+#, fuzzy
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone. In which case, you can delete the corresponding entries. But then,\n"
@@ -4162,7 +4256,6 @@ msgstr ""
"sector of drive (MBR)\"."
#: ../../help.pm_.c:731
-#, fuzzy
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
@@ -4222,18 +4315,18 @@ msgstr ""
#: ../../help.pm_.c:759
#, fuzzy
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
+"DrakX now detects any IDE devices present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection does not always detect a piece of hardware,\n"
"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the list of hardware and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for\n"
@@ -4281,7 +4374,6 @@ msgstr ""
" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
#: ../../help.pm_.c:786
-#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4383,7 +4475,6 @@ msgstr ""
" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
#: ../../help.pm_.c:833
-#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4473,7 +4564,9 @@ msgid ""
"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
+"configuration wizard. Consult the corresponding chapter of the ``User\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation;\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. No modification possible at installation time;\n"
@@ -4520,7 +4613,7 @@ msgstr ""
" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
" cysylltiedig."
-#: ../../help.pm_.c:894
+#: ../../help.pm_.c:896
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4530,7 +4623,7 @@ msgstr ""
"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
"cael ei ddileu ac ni fydd modd ei adfer!"
-#: ../../help.pm_.c:899
+#: ../../help.pm_.c:901
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4564,7 +4657,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Rhaid fformatio %s"
-#: ../../install_any.pm_.c:418
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4587,20 +4680,29 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:453
+#: ../../install_any.pm_.c:441
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:471
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb parth NIS"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:862
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:845
+#: ../../install_any.pm_.c:866
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:857
+#: ../../install_any.pm_.c:878
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4608,11 +4710,19 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
+#: ../../install_any.pm_.c:1023
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
+"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
+
#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
@@ -4646,59 +4756,59 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:169
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-#: ../../install_interactive.pm_.c:91
+#: ../../install_interactive.pm_.c:92
msgid "Use free space"
msgstr "Defnyddiwch le gwag"
-#: ../../install_interactive.pm_.c:93
+#: ../../install_interactive.pm_.c:94
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-#: ../../install_interactive.pm_.c:101
+#: ../../install_interactive.pm_.c:102
msgid "Use existing partitions"
msgstr "Defnyddiwch y rhaniadau cyfredol"
-#: ../../install_interactive.pm_.c:103
+#: ../../install_interactive.pm_.c:104
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-#: ../../install_interactive.pm_.c:110
+#: ../../install_interactive.pm_.c:111
msgid "Use the Windows partition for loopback"
msgstr "Defnyddiwch rhaniad Windows ar gyfer cylch-ol"
-#: ../../install_interactive.pm_.c:113
+#: ../../install_interactive.pm_.c:114
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Choose the sizes"
msgstr "Dewiswch y maint"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Root partition size in MB: "
msgstr "Maint rhaniad gwraidd mewn MB :"
-#: ../../install_interactive.pm_.c:117
+#: ../../install_interactive.pm_.c:118
msgid "Swap partition size in MB: "
msgstr "Maint rhaniad cyfnewid mewn MB: "
-#: ../../install_interactive.pm_.c:126
+#: ../../install_interactive.pm_.c:128
msgid "Use the free space on the Windows partition"
msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-#: ../../install_interactive.pm_.c:129
+#: ../../install_interactive.pm_.c:131
msgid "Which partition do you want to resize?"
msgstr "Pa raniad ydych chi am newid ei faint?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm_.c:133
msgid "Resizing Windows partition"
msgstr "Mesur ffiniau system ffeilio Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm_.c:136
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4707,14 +4817,14 @@ msgstr ""
"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
"digwyddodd y gwall canlynol: %s"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:139
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr "Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm_.c:140
msgid ""
"WARNING!\n"
"\n"
@@ -4734,21 +4844,21 @@ msgstr ""
"Dylech hefyd wneud copi wrth gefn o'ch data.Pan rydych yn siwr, cliciwch "
"Iawn."
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:150
msgid "Which size do you want to keep for Windows on"
msgstr "Pa faint ydych am ei gadw ar gyfer Windows ar"
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm_.c:151
#, c-format
msgid "partition %s"
msgstr "rhaniad %s"
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm_.c:158
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT: %s"
-#: ../../install_interactive.pm_.c:171
+#: ../../install_interactive.pm_.c:173
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
@@ -4756,32 +4866,32 @@ msgstr ""
"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-ôl (neu "
"nad oes digon o le ar ôl)"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Erase entire disk"
msgstr "Dileu'r ddisg gyfan"
-#: ../../install_interactive.pm_.c:177
+#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
msgstr "Tynnu Windows(TM)"
-#: ../../install_interactive.pm_.c:180
+#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm_.c:185
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-#: ../../install_interactive.pm_.c:191
+#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
msgstr "Rhannu disg unigol"
-#: ../../install_interactive.pm_.c:195
+#: ../../install_interactive.pm_.c:197
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm_.c:200
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4790,28 +4900,28 @@ msgstr ""
"Medrwch rhannu %s\n"
"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-#: ../../install_interactive.pm_.c:227
+#: ../../install_interactive.pm_.c:229
msgid "You don't have enough free space on your Windows partition"
msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-#: ../../install_interactive.pm_.c:243
+#: ../../install_interactive.pm_.c:245
msgid "I can't find any room for installing"
msgstr "Methu canfod lle ar gyfer gosod"
-#: ../../install_interactive.pm_.c:246
+#: ../../install_interactive.pm_.c:248
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm_.c:252
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd rhannu: %s"
-#: ../../install_interactive.pm_.c:260
+#: ../../install_interactive.pm_.c:262
msgid "Bringing up the network"
msgstr "Cychwyn y rhwydwaith"
-#: ../../install_interactive.pm_.c:265
+#: ../../install_interactive.pm_.c:267
msgid "Bringing down the network"
msgstr "Cau'r rhwydwaith"
@@ -4823,12 +4933,12 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: ../../install_steps.pm_.c:210
+#: ../../install_steps.pm_.c:211
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt gosod dyblyg %s"
-#: ../../install_steps.pm_.c:379
+#: ../../install_steps.pm_.c:380
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4840,12 +4950,12 @@ msgstr ""
"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4875,69 +4985,69 @@ msgstr "Gosod Dosbarth"
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
-#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:335
msgid "Bad package"
msgstr "Pecyn gwallus"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
msgid "Name: %s\n"
msgstr "Enw: %s\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
msgid "Version: %s\n"
msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm_.c:344
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
msgid "Size: %d KB\n"
msgstr "Maint: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_gtk.pm_.c:339
#, c-format
msgid "Importance: %s\n"
msgstr "Pwysigrwydd: %s\n"
-#: ../../install_steps_gtk.pm_.c:367
+#: ../../install_steps_gtk.pm_.c:361
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../install_steps_gtk.pm_.c:372
+#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../install_steps_gtk.pm_.c:373
+#: ../../install_steps_gtk.pm_.c:367
msgid "The following packages are going to be removed"
msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../install_steps_gtk.pm_.c:385
+#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../install_steps_gtk.pm_.c:399
+#: ../../install_steps_gtk.pm_.c:393
msgid "You can't unselect this package. It is already installed"
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_gtk.pm_.c:402
+#: ../../install_steps_gtk.pm_.c:396
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4945,74 +5055,74 @@ msgstr ""
"Rhaid i'r pecyn gael ei uwchraddio\n"
"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../install_steps_gtk.pm_.c:405
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../install_steps_gtk.pm_.c:410
+#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:3600
+#: ../../standalone/drakbackup_.c:4257
msgid "Install"
msgstr "Gosodiad"
-#: ../../install_steps_gtk.pm_.c:414
+#: ../../install_steps_gtk.pm_.c:408
msgid "Load/Save on floppy"
msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../install_steps_gtk.pm_.c:415
+#: ../../install_steps_gtk.pm_.c:409
msgid "Updating package selection"
msgstr "Diweddaru'r dewis pecynnau"
-#: ../../install_steps_gtk.pm_.c:420
+#: ../../install_steps_gtk.pm_.c:414
msgid "Minimal install"
msgstr "Gosodiad lleiaf"
-#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:429 ../../install_steps_interactive.pm_.c:522
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
msgid "Installing"
msgstr "Gosod"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:451
msgid "Estimating"
msgstr "Amcangyfrif"
-#: ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_gtk.pm_.c:458
msgid "Time remaining "
msgstr "Amser yn weddill"
-#: ../../install_steps_gtk.pm_.c:476
+#: ../../install_steps_gtk.pm_.c:470
msgid "Please wait, preparing installation..."
msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../install_steps_gtk.pm_.c:560
+#: ../../install_steps_gtk.pm_.c:554
#, c-format
msgid "%d packages"
msgstr "%d pecyn"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Derbyn"
-#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:786
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5026,17 +5136,17 @@ msgstr ""
"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
-#: ../../install_steps_interactive.pm_.c:815
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:803
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -5352,7 +5462,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1023
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Allweddell"
@@ -5400,11 +5510,11 @@ msgstr "Diweddaru'r pecynnau'n unig"
msgid "Please choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porth Llygoden"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
@@ -5436,115 +5546,89 @@ msgstr "Ffurfweddu IDE"
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:336
+#: ../../install_steps_interactive.pm_.c:338
msgid "No partition available"
msgstr "dim rhaniadau ar gael"
-#: ../../install_steps_interactive.pm_.c:339
+#: ../../install_steps_interactive.pm_.c:341
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:347
+#: ../../install_steps_interactive.pm_.c:349
msgid "Choose the mount points"
msgstr "Dewiswch y pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:366
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nid wyf yn medru darllen eich tabl rhaniad, mae'n rhy lygredig. :(\n"
-"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
-" HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
-"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
-"\n"
-"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-
#: ../../install_steps_interactive.pm_.c:379
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
-"Mae'n beryglus parhau!"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:388
msgid "No root partition found to perform an upgrade"
msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:389
msgid "Root Partition"
msgstr "Rhaniad Gwraidd"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:390
msgid "What is the root partition (/) of your system?"
msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../install_steps_interactive.pm_.c:421
+#: ../../install_steps_interactive.pm_.c:404
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:428
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:429
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:456
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniadau"
-#: ../../install_steps_interactive.pm_.c:475
+#: ../../install_steps_interactive.pm_.c:458
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: ../../install_steps_interactive.pm_.c:480
+#: ../../install_steps_interactive.pm_.c:463
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:482
+#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../install_steps_interactive.pm_.c:489
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:472
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Chwilio am y pecynnau sydd ar gael"
+msgstr ""
+"Chwilio am y pecynnau sydd ar gael ac yn ailadeiladu cronfa ddata rpm..."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:493
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:476
msgid "Looking at packages already installed..."
-msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+msgstr "Edrych arbecynnau wedieu gosod yn barod"
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
msgstr "Canfod pecynnau i'w uwchraddio"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:498
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5553,7 +5637,7 @@ msgstr ""
"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
"(%d> %d)"
-#: ../../install_steps_interactive.pm_.c:550
+#: ../../install_steps_interactive.pm_.c:534
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5561,35 +5645,35 @@ msgstr ""
"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../install_steps_interactive.pm_.c:553
+#: ../../install_steps_interactive.pm_.c:537
msgid "Load from floppy"
msgstr "Llwytho o o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Loading from floppy"
msgstr "Llwytho o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_interactive.pm_.c:539
msgid "Package selection"
msgstr "Dewis pecynnau"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:544
msgid "Insert a floppy containing package selection"
msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-#: ../../install_steps_interactive.pm_.c:572
+#: ../../install_steps_interactive.pm_.c:556
msgid "Save on floppy"
msgstr "Cadw ar ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:646
+#: ../../install_steps_interactive.pm_.c:630
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:644
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:645
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5597,19 +5681,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:664
+#: ../../install_steps_interactive.pm_.c:648
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:650
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:651
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install_steps_interactive.pm_.c:736
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5619,16 +5703,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:741
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:778
+#: ../../install_steps_interactive.pm_.c:762
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:771
#, c-format
msgid ""
"Installing package %s\n"
@@ -5637,21 +5721,21 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:833
+#: ../../install_steps_interactive.pm_.c:817
msgid "Post-install configuration"
msgstr "Ffurfweddiad ôl osod"
-#: ../../install_steps_interactive.pm_.c:839
+#: ../../install_steps_interactive.pm_.c:823
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:845
+#: ../../install_steps_interactive.pm_.c:829
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:865
+#: ../../install_steps_interactive.pm_.c:849
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5726,8 +5810,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:904
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:888
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5738,164 +5821,163 @@ msgid ""
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu ryddhau "
-"ers i'r dosbaerthiad fod ar gael.\n"
+"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n"
+"ryddhau ers i'r dosbarthiad fod ar gael.\n"
"\n"
"Medrwch gael atgyweiriadau diogelwch a gwallau ond mae'n rhaid i\n"
"chi fod wedi cysyllu â'r Rhyngrwyd i barhau.\n"
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:919
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:924
+#: ../../install_steps_interactive.pm_.c:908
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:933
+#: ../../install_steps_interactive.pm_.c:917
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:960
+#: ../../install_steps_interactive.pm_.c:945
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:950
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:951
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:958
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: ../../install_steps_interactive.pm_.c:1007
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:992
+#: ../../install_steps_interactive.pm_.c:1000
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:993
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1012
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1014
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1019 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
-#: ../../printerdrake.pm_.c:2814
+#: ../../install_steps_interactive.pm_.c:1025 ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1042
+#: ../../install_steps_interactive.pm_.c:1027
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1032
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1034
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1103
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1112
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1114
-#: ../../install_steps_interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1141
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1076
+#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Windows Domain"
-msgstr "Estyn Ffontiau Windows"
+msgstr "Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1092
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1099
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1086
+#: ../../install_steps_interactive.pm_.c:1087 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1088
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1093
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1099 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1107
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1108
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1109
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1115
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1116
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1117
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1123
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5911,21 +5993,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Authentication Windows Domain"
-msgstr "Dilysu LDAP"
+msgstr "Dilysu Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1142
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1127
msgid "Domain Admin User Name"
-msgstr "Enw parth"
+msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1128
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1163
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5956,19 +6036,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1179
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1195
+#: ../../install_steps_interactive.pm_.c:1180
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
+#: ../../install_steps_interactive.pm_.c:1181 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1186
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5993,7 +6073,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1207
+#: ../../install_steps_interactive.pm_.c:1192
msgid ""
"\n"
"\n"
@@ -6007,28 +6087,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1200
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm_.c:1204
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1223
+#: ../../install_steps_interactive.pm_.c:1208
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1211
msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1233
+#: ../../install_steps_interactive.pm_.c:1218
msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1229
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6042,11 +6122,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1250
+#: ../../install_steps_interactive.pm_.c:1235
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1238
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6054,15 +6134,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1260
+#: ../../install_steps_interactive.pm_.c:1245
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1266
+#: ../../install_steps_interactive.pm_.c:1251
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1274
+#: ../../install_steps_interactive.pm_.c:1259
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6080,17 +6160,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1308
+#: ../../install_steps_interactive.pm_.c:1293
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1312
+#: ../../install_steps_interactive.pm_.c:1297
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1323
+#: ../../install_steps_interactive.pm_.c:1308
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6100,7 +6180,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1319
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6132,16 +6212,15 @@ msgstr ""
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1347
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1337
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1339
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6156,15 +6235,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1359
+#: ../../install_steps_interactive.pm_.c:1344
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1362
+#: ../../install_steps_interactive.pm_.c:1347
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -6173,7 +6252,8 @@ msgstr "Cadw'r dewis becynnau"
msgid "Mandrake Linux Installation %s"
msgstr "Gosodiad %s Mandraks Linux"
-#: ../../install_steps_newt.pm_.c:34
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:35
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
@@ -6191,22 +6271,22 @@ msgstr "consolehelper ar goll"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: ../../interactive.pm_.c:317
+#: ../../interactive.pm_.c:320
msgid "Advanced"
msgstr "Uwch"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:321
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
-#: ../../printerdrake.pm_.c:1990
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Cynt"
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
-#: ../../standalone/drakbackup_.c:3517
+#: ../../standalone/drakbackup_.c:4112 ../../standalone/drakbackup_.c:4139
+#: ../../standalone/drakbackup_.c:4169 ../../standalone/drakbackup_.c:4195
msgid "Next"
msgstr "Nesaf"
@@ -6279,375 +6359,371 @@ msgstr ""
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:152 ../../keyboard.pm_.c:187
msgid "Czech (QWERTZ)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:189
msgid "German"
msgstr "Almaeneg"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:154
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:155 ../../keyboard.pm_.c:197
msgid "Spanish"
msgstr "Spaenaidd"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
msgid "Finnish"
msgstr "Ffinaidd"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
msgid "French"
msgstr "Ffrengig"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:231
msgid "Norwegian"
msgstr "Norwyaidd"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:159
msgid "Polish"
msgstr "Pwylaidd"
-#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:160 ../../keyboard.pm_.c:239
msgid "Russian"
msgstr "Rwsiaidd"
-#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:162 ../../keyboard.pm_.c:241
msgid "Swedish"
msgstr "Swedaidd"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Bysellfwrdd DG"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bysellfwrdd UDA"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:166
msgid "Albanian"
msgstr "Albaniaidd"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:167
msgid "Armenian (old)"
msgstr "Armenaidd (hen)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:168
msgid "Armenian (typewriter)"
msgstr "Armenaidd (teipiadur)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:169
msgid "Armenian (phonetic)"
msgstr "Armenaidd (ffonetig)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:174
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjan (lladin)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:176
msgid "Belgian"
msgstr "Belgaidd"
-#: ../../keyboard.pm_.c:198
-#, fuzzy
+#: ../../keyboard.pm_.c:177
msgid "Bengali"
-msgstr "galluogi"
+msgstr "Bengali"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
msgstr "Bwlgaraidd (ffonetig)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
msgstr "Bwlgaraidd (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
msgstr "Brasilaidd (ABNT-2)"
-#: ../../keyboard.pm_.c:204
-#, fuzzy
+#: ../../keyboard.pm_.c:183
msgid "Bosnian"
-msgstr "Estonaidd"
+msgstr "Bosnieg"
-#: ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:184
msgid "Belarusian"
msgstr "Belarusaidd"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:192
msgid "Danish"
msgstr "Danaidd"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
msgstr "Dvorak (UDA)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwyaidd)"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:195
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedaidd)"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:196
msgid "Estonian"
msgstr "Estonaidd"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:202
msgid "Greek"
msgstr "Groegaidd"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarati"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:205
msgid "Hungarian"
msgstr "Hwngaraidd"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:206
msgid "Croatian"
msgstr "Croataidd"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:207
msgid "Israeli"
msgstr "Israelaidd"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
msgstr "Israelaidd (Ffonetig)"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:209
msgid "Iranian"
msgstr "Iranaidd"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:210
msgid "Icelandic"
msgstr "Eislandaidd"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:211
msgid "Italian"
msgstr "Eidalaidd"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
msgstr "Siapaëaidd 106 bysell"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
msgstr "Bysellfwrdd Coreaidd"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:217
msgid "Latin American"
msgstr "Lladin America"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "Latfiaidd"
+msgstr "Latfieg"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuenaidd AZERTY (hen)"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:221
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:222
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:223
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:224
msgid "Latvian"
msgstr "Latfiaidd"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:225
msgid "Macedonian"
msgstr "Macedonaidd"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burma)"
-#: ../../keyboard.pm_.c:248
-#, fuzzy
+#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
-msgstr "Serbaidd (cyrilig)"
+msgstr "Mongoleg (cyrillic)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Malteg (DU)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Malteg (UDA)"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:230
msgid "Dutch"
msgstr "Isalmaenaidd"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:234
msgid "Portuguese"
msgstr "Portiwgalaidd"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
msgstr "Canada (Quebec)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
msgstr "Romanaidd (qwertz)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:242
msgid "Slovenian"
msgstr "Slfenaidd"
-#: ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
msgstr "Slofacaidd (QWERTZ)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
msgstr "Slovacaidd (QWERTY)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
msgstr "Serbaidd (cyrilig)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
msgstr "Tamil (TSCII)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Bysellfwrdd Thai"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Bysellfwrdd Tajig"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Wcranaidd"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iwgoslafaidd (lladin)"
-#: ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
msgstr "Bysell Alt dde"
-#: ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:269
msgid "Both Shift keys simultaneously"
msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:270
msgid "Control and Shift keys simultaneously"
msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:271
msgid "CapsLock key"
msgstr "Bysell CapsLock"
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:272
msgid "Ctrl and Alt keys simultaneously"
msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../keyboard.pm_.c:294
+#: ../../keyboard.pm_.c:273
msgid "Alt and Shift keys simultaneously"
msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:295
+#: ../../keyboard.pm_.c:274
msgid "\"Menu\" key"
msgstr "Bysell \"Dewislen\""
-#: ../../keyboard.pm_.c:296
+#: ../../keyboard.pm_.c:275
msgid "Left \"Windows\" key"
msgstr "Bysell \"Windows\" chwith"
-#: ../../keyboard.pm_.c:297
+#: ../../keyboard.pm_.c:276
msgid "Right \"Windows\" key"
msgstr "Bysell \"Windows\" de"
@@ -6661,9 +6737,8 @@ msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
#: ../../modparm.pm_.c:50
-#, fuzzy
msgid "a number"
-msgstr "Rhif ffôn"
+msgstr "rhif"
#: ../../modparm.pm_.c:52
#, c-format
@@ -6680,9 +6755,8 @@ msgid "comma separated numbers"
msgstr ""
#: ../../modparm.pm_.c:54
-#, fuzzy
msgid "comma separated strings"
-msgstr "Fformatio rhaniadau"
+msgstr "llinellau collnod ranedig"
#: ../../modules.pm_.c:292
msgid ""
@@ -6707,11 +6781,11 @@ msgstr "Llygoden Olwyn PS Generig"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -6719,115 +6793,123 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
+
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
msgstr "1 botwm"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
msgstr "Llygoden 2 Fotwm Generig"
-#: ../../mouse.pm_.c:46
+#: ../../mouse.pm_.c:47
msgid "Wheel"
msgstr "Olwyn"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:51
msgid "serial"
msgstr "cyfresol"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:54
msgid "Generic 3 Button Mouse"
msgstr "Llygoden 3 Botwm Generig"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:55
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:54
+#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:57
msgid "Mouse Systems"
msgstr "Systemau Llygoden"
-#: ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:59
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:60
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:62
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:63
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:62
+#: ../../mouse.pm_.c:64
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Llygoden Logitech (cyfresol, hen fath C7)"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:69
+#: ../../mouse.pm_.c:71
msgid "2 buttons"
msgstr "2 fotwm"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "3 buttons"
msgstr "3 botwm"
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:75
msgid "none"
msgstr "dim"
-#: ../../mouse.pm_.c:75
+#: ../../mouse.pm_.c:77
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:445
+#: ../../mouse.pm_.c:482
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:483
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:484
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
-#: ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:64
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+
+#: ../../my_gtk.pm_.c:159
msgid "Finish"
msgstr "Gorffen"
-#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
+#: ../../my_gtk.pm_.c:159 ../../printerdrake.pm_.c:2126
msgid "Next ->"
msgstr "Nesaf ->"
-#: ../../my_gtk.pm_.c:284
+#: ../../my_gtk.pm_.c:287
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
-#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:222
msgid "Info"
msgstr "Gwybodaeth"
-#: ../../my_gtk.pm_.c:377
+#: ../../my_gtk.pm_.c:380
msgid "Expand Tree"
msgstr "Estyn y goeden"
-#: ../../my_gtk.pm_.c:378
+#: ../../my_gtk.pm_.c:381
msgid "Collapse Tree"
msgstr "Cau'r goeden"
-#: ../../my_gtk.pm_.c:379
+#: ../../my_gtk.pm_.c:382
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
@@ -6865,6 +6947,68 @@ msgstr "defnyddiwch pppoe"
msgid "use pptp"
msgstr "defnyddiwch pptp"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Gwasanaethwr Gwe"
+
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Gwasanaethwr Enw Parth"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Gwasanaethwr E-bost"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Gwasanaethwr POP ac IMAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Dim cerdyn rhwydwaith"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"ffurfweddiadur tinyfirewall\n"
+"\n"
+"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
+"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
+"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
+
+#: ../../network/drakfirewall.pm_.c:147
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:148
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:154
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:162
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:164
+msgid "Other ports"
+msgstr "Pyrth eraill"
+
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
@@ -6881,7 +7025,7 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:240
msgid "Choose the network interface"
msgstr "Dewiswch rhag wyneb y rhwydwaith"
@@ -6895,7 +7039,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:366
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -6911,7 +7055,7 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:371
msgid "Host name"
msgstr "Enw gwesteiwr"
@@ -7214,13 +7358,13 @@ msgstr "Dewiswch broffil i'w ffurfweddu"
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modd Uwch"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
@@ -7387,15 +7531,14 @@ msgid "Automatic IP"
msgstr "IP awtomatig"
#: ../../network/network.pm_.c:315
-#, fuzzy
msgid "Start at boot"
msgstr "Cychwyn y peiriant"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:367
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7407,43 +7550,55 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:373
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:375
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:390
msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:393
+#: ../../network/network.pm_.c:394
msgid "Proxy should be ftp://..."
msgstr "Dylai rhif porth fod yn ftp://..."
+#: ../../network/shorewall.pm_.c:24
+msgid "Firewalling configuration detected!"
+msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
+
+#: ../../network/shorewall.pm_.c:25
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
+msgstr ""
+"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
+"atgyweirio gyda llaw ar ôl y gosodiad."
+
#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ffurfweddiad rhyngrwyd"
@@ -7547,17 +7702,17 @@ msgstr "Cyfrinair y Cyfrif"
#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "Y Deyrnas Unedig"
-#: ../../partition_table.pm_.c:606
+#: ../../partition_table.pm_.c:602
msgid "mount failed: "
msgstr "maethodd y gosodiad"
-#: ../../partition_table.pm_.c:670
+#: ../../partition_table.pm_.c:666
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
-#: ../../partition_table.pm_.c:688
+#: ../../partition_table.pm_.c:684
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -7567,21 +7722,21 @@ msgstr ""
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:774
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Methodd adfer o ffeil %s: %s"
-#: ../../partition_table.pm_.c:780
+#: ../../partition_table.pm_.c:776
msgid "Bad backup file"
msgstr "Ffeil wrth gefn gwallus"
-#: ../../partition_table.pm_.c:802
+#: ../../partition_table.pm_.c:798
#, c-format
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../partition_table/raw.pm_.c:187
+#: ../../partition_table/raw.pm_.c:189
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7627,150 +7782,154 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
+#: ../../printer.pm_.c:34 ../../printer.pm_.c:1125
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:36
+#: ../../printer.pm_.c:35
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:37
+#: ../../printer.pm_.c:36
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:38
+#: ../../printer.pm_.c:37
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:50
+#: ../../printer.pm_.c:49
msgid "Local printer"
msgstr "Argraffydd lleol"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:50
msgid "Remote printer"
msgstr "Argraffydd pell"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:51
msgid "Printer on remote CUPS server"
msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
+#: ../../printer.pm_.c:52 ../../printerdrake.pm_.c:883
msgid "Printer on remote lpd server"
msgstr "Argraffydd ar wasanaethwr lpd pell"
-#: ../../printer.pm_.c:54
+#: ../../printer.pm_.c:53
msgid "Network printer (TCP/Socket)"
msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:54
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:56
+#: ../../printer.pm_.c:55
msgid "Printer on NetWare server"
msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
+#: ../../printer.pm_.c:56 ../../printerdrake.pm_.c:887
msgid "Enter a printer device URI"
msgstr "Rhowch URI dyfais argraffydd"
-#: ../../printer.pm_.c:58
+#: ../../printer.pm_.c:57
msgid "Pipe job into a command"
msgstr "Peipio'r gwaith i orchymyn"
-#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
-#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
+#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
+msgid "Unknown Model"
+msgstr "Model anhysbys"
+
+#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
+#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
msgid "Unknown model"
msgstr "Model anhysbys"
-#: ../../printer.pm_.c:515
+#: ../../printer.pm_.c:763
msgid "Local Printers"
msgstr "Argraffyddion Lleol"
-#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
+#: ../../printer.pm_.c:765 ../../printer.pm_.c:1126
msgid "Remote Printers"
msgstr "Argraffyddion Pell"
-#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:772 ../../printerdrake.pm_.c:404
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:775 ../../printerdrake.pm_.c:406
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:780
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:783
msgid ", multi-function device on USB"
msgstr ", dyfais amlbwrpas ar USB"
-#: ../../printer.pm_.c:537
+#: ../../printer.pm_.c:785
msgid ", multi-function device on HP JetDirect"
msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../printer.pm_.c:539
+#: ../../printer.pm_.c:787
msgid ", multi-function device"
msgstr ",dyfais amlbwrpas"
-#: ../../printer.pm_.c:542
+#: ../../printer.pm_.c:790
#, c-format
msgid ", printing to %s"
msgstr ", argraffu i %s"
-#: ../../printer.pm_.c:544
-#, fuzzy, c-format
+#: ../../printer.pm_.c:792
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:546
+#: ../../printer.pm_.c:794
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printer.pm_.c:550
-#, fuzzy, c-format
+#: ../../printer.pm_.c:798
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
+msgstr "ar wasanaethwr SMB/Windows \"%s\", rhannu \"%s\""
-#: ../../printer.pm_.c:554
-#, fuzzy, c-format
+#: ../../printer.pm_.c:802
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:804
#, c-format
msgid ", using command %s"
msgstr ", defnyddio gorchymyn %s"
-#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
+#: ../../printer.pm_.c:923 ../../printerdrake.pm_.c:1656
msgid "Raw printer (No driver)"
msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../printer.pm_.c:824
+#: ../../printer.pm_.c:1095
#, c-format
msgid "(on %s)"
msgstr "(ar %s)"
-#: ../../printer.pm_.c:826
+#: ../../printer.pm_.c:1097
msgid "(on this machine)"
msgstr "(ar y peiriant hwn)"
-#: ../../printer.pm_.c:851
+#: ../../printer.pm_.c:1122
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
-#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
-#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
-#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
+#: ../../printer.pm_.c:1128 ../../printerdrake.pm_.c:3071
+#: ../../printerdrake.pm_.c:3082 ../../printerdrake.pm_.c:3303
+#: ../../printerdrake.pm_.c:3355 ../../printerdrake.pm_.c:3381
+#: ../../printerdrake.pm_.c:3556 ../../printerdrake.pm_.c:3558
msgid " (Default)"
msgstr "(Rhagosodedig)"
@@ -7796,11 +7955,11 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
msgstr "Furfweddiad CUPS"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:3136
msgid "Specify CUPS server"
msgstr "Enwch wasanaethwr CUPS"
@@ -7844,7 +8003,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:1094
msgid "The port number should be an integer!"
msgstr "Dylai rhif porth fod yn gyfanrif!"
@@ -7852,7 +8011,7 @@ msgstr "Dylai rhif porth fod yn gyfanrif!"
msgid "CUPS server IP"
msgstr "IP gwasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1114
msgid "Port"
msgstr "Porth"
@@ -7860,12 +8019,126 @@ msgstr "Porth"
msgid "Automatic CUPS configuration"
msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
+#: ../../printerdrake.pm_.c:177 ../../printerdrake.pm_.c:247
+#: ../../printerdrake.pm_.c:1529 ../../printerdrake.pm_.c:1533
+#: ../../printerdrake.pm_.c:1651 ../../printerdrake.pm_.c:2203
+#: ../../printerdrake.pm_.c:2356 ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2488 ../../printerdrake.pm_.c:2509
+#: ../../printerdrake.pm_.c:2699 ../../printerdrake.pm_.c:2740
+#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2779
+#: ../../printerdrake.pm_.c:2784 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2874 ../../printerdrake.pm_.c:2894
+#: ../../printerdrake.pm_.c:2908 ../../printerdrake.pm_.c:2942
+#: ../../printerdrake.pm_.c:2988 ../../printerdrake.pm_.c:3006
+#: ../../printerdrake.pm_.c:3095 ../../printerdrake.pm_.c:3169
+#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
+#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printerdrake.pm_.c:178
+msgid "Checking your system..."
+msgstr "Gwirio eich system..."
+
+#: ../../printerdrake.pm_.c:186
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:198
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+"Yr argraffyddion canlynol\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:199
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+"Yr argraffydd canlynol\n"
+"\n"
+
+#: ../../printerdrake.pm_.c:201
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203
+#, c-format
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:207
+msgid ""
+"\n"
+"are "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:208
+msgid ""
+"\n"
+"is "
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210
+msgid "directly connected to your system"
+msgstr "wedi ei gysylltu'n uniongyrchol â'ch system!"
+
+#: ../../printerdrake.pm_.c:213
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:215
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:221
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Gwnewch yn siwr bod eich argraffyddion wedi eu cysylltu a'u troi mlaen).\n"
+
+#: ../../printerdrake.pm_.c:235
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:236
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Ydych chi am alluogi argraffu ar argraffydd mewn rhwydwaith leol?\n"
+
+#: ../../printerdrake.pm_.c:238
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Ydych chi am alluogi argraffu ar yr argraffyddion enwwi'r uchod?\n"
+
+#: ../../printerdrake.pm_.c:239
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:240
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
msgid "Add a new printer"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:270
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7888,7 +8161,7 @@ msgstr ""
"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
"gyrwyr a mathau o gysylltiadau argraffyddion."
-#: ../../printerdrake.pm_.c:193
+#: ../../printerdrake.pm_.c:280
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7897,7 +8170,7 @@ msgid ""
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) and you Windows machines must be connected and "
"turned on.\n"
"\n"
@@ -7910,7 +8183,22 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:202
+#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:297
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7919,7 +8207,7 @@ msgid ""
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that they can be auto-detected. Also "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
@@ -7930,25 +8218,24 @@ msgid ""
"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:213
-#, fuzzy
+#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
-msgstr "Awto ganfod argraffyddion"
+msgstr "Awto ganfod argraffyddion sy'n gysylltiedig a'r peiriant hwn"
-#: ../../printerdrake.pm_.c:215
+#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printerdrake.pm_.c:218
+#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
+#: ../../printerdrake.pm_.c:587
msgid "Local Printer"
msgstr "Argraffydd Lleol"
-#: ../../printerdrake.pm_.c:246
+#: ../../printerdrake.pm_.c:349
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7968,50 +8255,49 @@ msgstr ""
"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Printer auto-detection"
-msgstr "Defnyddio awto ganfod"
+msgstr "Awto ganfod argraffydd"
-#: ../../printerdrake.pm_.c:305
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:408
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+msgstr ", rhwydwaith argraffu \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:307
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:410
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
+msgstr ", argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:313
+#: ../../printerdrake.pm_.c:416
#, c-format
msgid "Detected %s"
msgstr "Canfyddwyd %s"
-#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
-#: ../../printerdrake.pm_.c:367
+#: ../../printerdrake.pm_.c:420 ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:470
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
-#: ../../printerdrake.pm_.c:372
+#: ../../printerdrake.pm_.c:422 ../../printerdrake.pm_.c:453
+#: ../../printerdrake.pm_.c:475
#, c-format
msgid "USB printer \\/*%s"
msgstr "Argraffydd USB \\/\"%s"
-#: ../../printerdrake.pm_.c:321
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:424
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Argraffydd rhwydwaith (TCP/Soced)"
+msgstr "Argraffydd rhwydwaith \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:323
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:426
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
+msgstr "Argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:460
+#: ../../printerdrake.pm_.c:563
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8023,23 +8309,19 @@ msgstr ""
"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:567
msgid "You must enter a device or file name!"
msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../printerdrake.pm_.c:475
-#, fuzzy
+#: ../../printerdrake.pm_.c:578
msgid "No printer found!"
-msgstr ""
-"Heb ganfood argraffydd lleol!\n"
-"\n"
+msgstr "Heb ganfood argraffydd!"
-#: ../../printerdrake.pm_.c:485
-#, fuzzy
+#: ../../printerdrake.pm_.c:588
msgid "Available printers"
-msgstr "Argraffydd lleol"
+msgstr "Argraffyddion ar gael"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:592
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8047,7 +8329,7 @@ msgstr ""
"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../printerdrake.pm_.c:490
+#: ../../printerdrake.pm_.c:593
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8056,7 +8338,7 @@ msgstr ""
"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
"mewnbwn."
-#: ../../printerdrake.pm_.c:492
+#: ../../printerdrake.pm_.c:595
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8068,7 +8350,7 @@ msgstr ""
"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:493
+#: ../../printerdrake.pm_.c:596
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8081,7 +8363,7 @@ msgstr ""
"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:495
+#: ../../printerdrake.pm_.c:598
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8089,11 +8371,11 @@ msgstr ""
"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../printerdrake.pm_.c:496
+#: ../../printerdrake.pm_.c:599
msgid "Please choose the port where your printer is connected to."
msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../printerdrake.pm_.c:498
+#: ../../printerdrake.pm_.c:601
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8101,19 +8383,19 @@ msgstr ""
" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:503
+#: ../../printerdrake.pm_.c:606
msgid "You must choose/enter a printer/device!"
msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../printerdrake.pm_.c:523
+#: ../../printerdrake.pm_.c:626
msgid "Manual configuration"
msgstr "Ffurfweddiad gyda llaw"
-#: ../../printerdrake.pm_.c:577
+#: ../../printerdrake.pm_.c:680
msgid "Remote lpd Printer Options"
msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../printerdrake.pm_.c:578
+#: ../../printerdrake.pm_.c:681
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8121,47 +8403,46 @@ msgstr ""
"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../printerdrake.pm_.c:579
+#: ../../printerdrake.pm_.c:682
msgid "Remote host name"
msgstr "Enw gwesteiwr pell"
-#: ../../printerdrake.pm_.c:580
+#: ../../printerdrake.pm_.c:683
msgid "Remote printer name"
msgstr "Enw'r argraffydd pell"
-#: ../../printerdrake.pm_.c:583
+#: ../../printerdrake.pm_.c:686
msgid "Remote host name missing!"
msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../printerdrake.pm_.c:587
+#: ../../printerdrake.pm_.c:690
msgid "Remote printer name missing!"
msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
+#, c-format
msgid "Detected model: %s %s"
-msgstr "Canfyddwyd %s"
+msgstr "Canfyddwyd model %s %s"
-#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
-#, fuzzy
+#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
msgid "Scanning network..."
-msgstr "Cychwyn y rhwydwaith..."
+msgstr "Chwilio'r rhwydwaith..."
-#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
+msgstr ", argraffydd \"%s\" ar wasanaethwr \"%s\""
-#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "Argraffu ar argraffydd \"%s\""
+msgstr "Argraffydd \"%s\" ar wasanaethwr \"%s\""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:737
+#: ../../printerdrake.pm_.c:844
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8174,46 +8455,45 @@ msgstr ""
"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
"gwybodaeth am grwp gwaith perthynol."
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:845
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:847
msgid "SMB server IP"
msgstr "IP Gwasanaethwr SMB"
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:848
msgid "Share name"
msgstr "Rhannu enw"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:851
msgid "Workgroup"
msgstr "Grwp gwaith"
-#: ../../printerdrake.pm_.c:746
-#, fuzzy
+#: ../../printerdrake.pm_.c:853
msgid "Auto-detected"
-msgstr "Defnyddio awto ganfod"
+msgstr "Awto ganfyddwyd"
-#: ../../printerdrake.pm_.c:757
+#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../printerdrake.pm_.c:761
+#: ../../printerdrake.pm_.c:868
msgid "Samba share name missing!"
msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../printerdrake.pm_.c:767
+#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:768
+#: ../../printerdrake.pm_.c:875
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8237,7 +8517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:778
+#: ../../printerdrake.pm_.c:885
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8246,7 +8526,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:781
+#: ../../printerdrake.pm_.c:888
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8254,11 +8534,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:961
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8270,70 +8550,67 @@ msgstr ""
"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:962
msgid "Printer Server"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:963
msgid "Print Queue Name"
msgstr "Enw Rhes Argraffu"
-#: ../../printerdrake.pm_.c:861
+#: ../../printerdrake.pm_.c:968
msgid "NCP server name missing!"
msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../printerdrake.pm_.c:865
+#: ../../printerdrake.pm_.c:972
msgid "NCP queue name missing!"
msgstr "Mae enw rhes NCP ar goll"
-#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+msgstr ", gwesteiwr \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+msgstr ",Gwesteiwr \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:975
+#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../printerdrake.pm_.c:977
+#: ../../printerdrake.pm_.c:1084
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../printerdrake.pm_.c:978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1085
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr yr "
-"argraffydd ac yn ddewisol rhif y porth. Ar wasanaethwyr HP JetDirect rhif y "
-"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
-"llawlyfr eich caledwedd"
+"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr "
+"neu IP'r argraffydd ac yn ddewisol rhif y porth (Y rhagosodedig yw 9100). Ar "
+"wasanaethwyr HP JetDirect rhif y porth, fel rheol, yw 9100, gall amrywio ar "
+"wasanaethwyr eraill. Gweler llawlyfr eich caledwedd"
-#: ../../printerdrake.pm_.c:983
-#, fuzzy
+#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
-msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
+msgstr "Mae enw'r gwesteiwr argraffu neu IP ar goll!"
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
+#: ../../printerdrake.pm_.c:1112
msgid "Printer host name or IP"
-msgstr "Enw'gwesteiwr yr argraffydd"
+msgstr "Enw'r gwesteiwr neu IP yr argraffydd"
-#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
+#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
msgstr "URI Dyfais Argraffu"
-#: ../../printerdrake.pm_.c:1055
+#: ../../printerdrake.pm_.c:1161
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8343,11 +8620,11 @@ msgstr ""
"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
"cael eu cynnal gan bob sbwlydd ."
-#: ../../printerdrake.pm_.c:1070
+#: ../../printerdrake.pm_.c:1176
msgid "A valid URI must be entered!"
msgstr "Rhaid cynnig URI dilys!"
-#: ../../printerdrake.pm_.c:1402
+#: ../../printerdrake.pm_.c:1515
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8355,27 +8632,27 @@ msgstr ""
"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../printerdrake.pm_.c:1403
+#: ../../printerdrake.pm_.c:1516
msgid "Name of printer"
msgstr "Enw'r argraffydd"
-#: ../../printerdrake.pm_.c:1405
+#: ../../printerdrake.pm_.c:1518
msgid "Location"
msgstr "Lleoliad"
-#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1530 ../../printerdrake.pm_.c:1652
msgid "Reading printer database..."
msgstr "Darllen cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1419
+#: ../../printerdrake.pm_.c:1534
msgid "Preparing printer database..."
msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1516
+#: ../../printerdrake.pm_.c:1631
msgid "Your printer model"
msgstr "Model eich argraffydd"
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1632
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8401,24 +8678,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
+#: ../../printerdrake.pm_.c:1637 ../../printerdrake.pm_.c:1640
msgid "The model is correct"
msgstr "Mae'r model yn gywir"
-#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
-#: ../../printerdrake.pm_.c:1527
+#: ../../printerdrake.pm_.c:1638 ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1642
msgid "Select model manually"
msgstr "Dewiswch y model gyda llaw"
-#: ../../printerdrake.pm_.c:1543
+#: ../../printerdrake.pm_.c:1659
msgid "Printer model selection"
msgstr "Dewis model yr argraffydd"
-#: ../../printerdrake.pm_.c:1544
+#: ../../printerdrake.pm_.c:1660
msgid "Which printer model do you have?"
msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1661
msgid ""
"\n"
"\n"
@@ -8432,7 +8709,7 @@ msgstr ""
"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
"neu ar \"Argraffydd bras\"."
-#: ../../printerdrake.pm_.c:1548
+#: ../../printerdrake.pm_.c:1664
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8440,11 +8717,11 @@ msgstr ""
"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
"eich argraffydd) neu un tebyg."
-#: ../../printerdrake.pm_.c:1624
+#: ../../printerdrake.pm_.c:1741
msgid "OKI winprinter configuration"
msgstr "Ffurfweddiad OKI winprinter "
-#: ../../printerdrake.pm_.c:1625
+#: ../../printerdrake.pm_.c:1742
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8461,11 +8738,11 @@ msgstr ""
"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
+#: ../../printerdrake.pm_.c:1785 ../../printerdrake.pm_.c:1812
msgid "Lexmark inkjet configuration"
msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1669
+#: ../../printerdrake.pm_.c:1786
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8476,17 +8753,17 @@ msgstr ""
"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1813
+#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
"I fedru argraffu gyda eich argraffydd inkjet Lexmark a'r ffurfweddiad hwn, "
"bydd angen gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark (http://"
@@ -8498,7 +8775,34 @@ msgstr ""
"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:1816
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1817
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2040
msgid ""
"Printer default settings\n"
"\n"
@@ -8515,22 +8819,22 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../printerdrake.pm_.c:1921
+#: ../../printerdrake.pm_.c:2049
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2053
#, c-format
msgid "Option %s must be a number!"
msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printerdrake.pm_.c:1930
+#: ../../printerdrake.pm_.c:2058
#, c-format
msgid "Option %s out of range!"
msgstr "Dewis %s allan o amrediad!"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2097
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8539,11 +8843,11 @@ msgstr ""
"Ydych chi am osod argraffydd (\"%s\")\n"
"fel yr argraffydd rhagosodedig?"
-#: ../../printerdrake.pm_.c:1986
+#: ../../printerdrake.pm_.c:2120
msgid "Test pages"
msgstr "Tudalennau prawf"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:2121
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8555,39 +8859,39 @@ msgstr ""
"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../printerdrake.pm_.c:1991
+#: ../../printerdrake.pm_.c:2125
msgid "No test pages"
msgstr "Dim tudalennau prawf"
-#: ../../printerdrake.pm_.c:1992
+#: ../../printerdrake.pm_.c:2126
msgid "Print"
msgstr "Argraffu"
-#: ../../printerdrake.pm_.c:1994
+#: ../../printerdrake.pm_.c:2183
msgid "Standard test page"
msgstr "Tudalen prawf safonnol"
-#: ../../printerdrake.pm_.c:1997
+#: ../../printerdrake.pm_.c:2186
msgid "Alternative test page (Letter)"
msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../printerdrake.pm_.c:2000
+#: ../../printerdrake.pm_.c:2189
msgid "Alternative test page (A4)"
msgstr "Prawf tudalen arall (A4)"
-#: ../../printerdrake.pm_.c:2002
+#: ../../printerdrake.pm_.c:2191
msgid "Photo test page"
msgstr "Tudalen prawf llun"
-#: ../../printerdrake.pm_.c:2006
+#: ../../printerdrake.pm_.c:2195
msgid "Do not print any test page"
msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
+#: ../../printerdrake.pm_.c:2204 ../../printerdrake.pm_.c:2357
msgid "Printing test page(s)..."
msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../printerdrake.pm_.c:2039
+#: ../../printerdrake.pm_.c:2229
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8602,7 +8906,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2233
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8610,15 +8914,15 @@ msgstr ""
"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printerdrake.pm_.c:2050
+#: ../../printerdrake.pm_.c:2240
msgid "Did it work properly?"
msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
+#: ../../printerdrake.pm_.c:2262 ../../printerdrake.pm_.c:3416
msgid "Raw printer"
msgstr "Argraffydd bras"
-#: ../../printerdrake.pm_.c:2098
+#: ../../printerdrake.pm_.c:2288
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8631,7 +8935,7 @@ msgstr ""
"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2290
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8641,8 +8945,8 @@ msgstr ""
"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2320
#, c-format
msgid ""
"\n"
@@ -8655,8 +8959,8 @@ msgstr ""
"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
"gorchymyn, e.e \"%s <file>\". "
-#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
+#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
@@ -8664,10 +8968,10 @@ msgid ""
msgstr ""
"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol darllenwch un ai'r rhestr isod neu cliciwch ar y botwm \"Rhestr "
-"dewis argraffu\"%s\n"
+"dewis argraffu\"%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:2110
+#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8676,7 +8980,7 @@ msgstr ""
"presennol:\n"
"\n"
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8685,8 +8989,8 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
"orchymyn \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
-#: ../../printerdrake.pm_.c:2137
+#: ../../printerdrake.pm_.c:2307 ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2327
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8696,7 +9000,7 @@ msgstr ""
"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2322
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8704,7 +9008,7 @@ msgstr ""
"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../printerdrake.pm_.c:2135
+#: ../../printerdrake.pm_.c:2325
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8713,7 +9017,7 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2329
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8730,7 +9034,7 @@ msgstr ""
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../printerdrake.pm_.c:2143
+#: ../../printerdrake.pm_.c:2333
#, c-format
msgid ""
"\n"
@@ -8743,41 +9047,41 @@ msgstr ""
"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:2153
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2343
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Argraffu/Sganio ar \"%s\""
+msgstr "Argraffu/Sganio/Cardiau Llun ar \"%s\""
-#: ../../printerdrake.pm_.c:2154
+#: ../../printerdrake.pm_.c:2344
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:2156
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2346
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Argraffu/Sganio ar \"%s\""
+msgstr "Argraffu/Mynediad Cardiau Llun ar \"%s\""
-#: ../../printerdrake.pm_.c:2157
+#: ../../printerdrake.pm_.c:2347
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
-#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
-#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1560 ../../standalone/drakbackup_.c:4208
+#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Cau"
-#: ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2353
msgid "Print option list"
msgstr "Rhestr ddewis argraffu"
-#: ../../printerdrake.pm_.c:2182
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2373
+#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
@@ -8794,12 +9098,12 @@ msgstr ""
"bennu pa un os oes gennych fwy nag un) o'r llinell orchymyn neu gyda rhag "
"wynebau graffigol \"xscanimage\" neu \"xsane\". Os ydych yn defnyddio GIMP, "
"medrwch sganio hefyd, drwy ddewis y man priodol yn y ddewislen \"Ffeil\"/"
-"\"Cipio\". Galwch hefyd \"man scanimage\" a \"man sane-hp\" ar y linell "
-"orchymyn i dderbyn mwy o wybodaeth.\n"
+"\"Cipio\". Galwch hefyd \"man scanimage\" ar y linell orchymyn i dderbyn mwy "
+"o wybodaeth.\n"
"\n"
"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printerdrake.pm_.c:2202
+#: ../../printerdrake.pm_.c:2394
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
@@ -8812,17 +9116,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
-#: ../../printerdrake.pm_.c:2945
+#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
+#: ../../printerdrake.pm_.c:3170
msgid "Reading printer data..."
msgstr "Darllen data argraffydd..."
-#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
-#: ../../printerdrake.pm_.c:2306
+#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:2244
+#: ../../printerdrake.pm_.c:2437
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8837,7 +9141,7 @@ msgstr ""
"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2440
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8845,18 +9149,18 @@ msgstr ""
"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../../printerdrake.pm_.c:2249
+#: ../../printerdrake.pm_.c:2442
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printerdrake.pm_.c:2251
+#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../printerdrake.pm_.c:2253
+#: ../../printerdrake.pm_.c:2446
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8864,7 +9168,7 @@ msgstr ""
"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
"\"foomatic-configure\"."
-#: ../../printerdrake.pm_.c:2254
+#: ../../printerdrake.pm_.c:2447
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8874,7 +9178,7 @@ msgstr ""
"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2448
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8884,15 +9188,15 @@ msgstr ""
"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
"\"Trosglwyddo\"."
-#: ../../printerdrake.pm_.c:2258
+#: ../../printerdrake.pm_.c:2451
msgid "Do not transfer printers"
msgstr "Peidio trosglwyddo argraffydd"
-#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2452 ../../printerdrake.pm_.c:2469
msgid "Transfer"
msgstr "Trosglwyddo"
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2465
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8903,12 +9207,12 @@ msgstr ""
"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../printerdrake.pm_.c:2280
+#: ../../printerdrake.pm_.c:2473
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2478
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8917,16 +9221,16 @@ msgstr ""
"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../printerdrake.pm_.c:2293
+#: ../../printerdrake.pm_.c:2486
msgid "New printer name"
msgstr "Enw'r argraffydd newydd"
-#: ../../printerdrake.pm_.c:2296
+#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
msgstr "Trosglwyddo %s..."
-#: ../../printerdrake.pm_.c:2307
+#: ../../printerdrake.pm_.c:2500
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8936,29 +9240,29 @@ msgstr ""
"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
"s ?"
-#: ../../printerdrake.pm_.c:2316
+#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
msgstr "Adnewyddu data'r argraffydd..."
-#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
-#: ../../printerdrake.pm_.c:2407
+#: ../../printerdrake.pm_.c:2518 ../../printerdrake.pm_.c:2590
+#: ../../printerdrake.pm_.c:2602
msgid "Configuration of a remote printer"
msgstr "Ffurfweddiad argraffydd pell"
-#: ../../printerdrake.pm_.c:2325
+#: ../../printerdrake.pm_.c:2519
msgid "Starting network..."
msgstr "Cychwyn y rhwydwaith..."
-#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
-#: ../../printerdrake.pm_.c:2365
+#: ../../printerdrake.pm_.c:2554 ../../printerdrake.pm_.c:2558
+#: ../../printerdrake.pm_.c:2560
msgid "Configure the network now"
msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../printerdrake.pm_.c:2360
+#: ../../printerdrake.pm_.c:2555
msgid "Network functionality not configured"
msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../printerdrake.pm_.c:2361
+#: ../../printerdrake.pm_.c:2556
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8970,11 +9274,11 @@ msgstr ""
"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printerdrake.pm_.c:2364
+#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printerdrake.pm_.c:2397
+#: ../../printerdrake.pm_.c:2592
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8990,7 +9294,7 @@ msgstr ""
"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
"\"Argraffydd\""
-#: ../../printerdrake.pm_.c:2398
+#: ../../printerdrake.pm_.c:2593
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -9000,24 +9304,24 @@ msgstr ""
"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
"argraffydd."
-#: ../../printerdrake.pm_.c:2408
+#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
msgstr "Ailgychwyn system argraffu..."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "high"
msgstr "uchel"
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2641
msgid "paranoid"
msgstr "Paranoia"
-#: ../../printerdrake.pm_.c:2447
+#: ../../printerdrake.pm_.c:2642
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../printerdrake.pm_.c:2448
+#: ../../printerdrake.pm_.c:2643
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9041,11 +9345,11 @@ msgstr ""
"\n"
"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../printerdrake.pm_.c:2480
+#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#: ../../printerdrake.pm_.c:2481
+#: ../../printerdrake.pm_.c:2676
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9067,75 +9371,71 @@ msgstr ""
"\n"
"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
-#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2733
+#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
+#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2943
msgid "Checking installed software..."
msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../printerdrake.pm_.c:2548
+#: ../../printerdrake.pm_.c:2746
msgid "Removing LPRng..."
msgstr "Tynnu LPRng..."
-#: ../../printerdrake.pm_.c:2585
+#: ../../printerdrake.pm_.c:2785
msgid "Removing LPD..."
msgstr "Tynnu LPD..."
-#: ../../printerdrake.pm_.c:2657
+#: ../../printerdrake.pm_.c:2858
msgid "Select Printer Spooler"
msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../printerdrake.pm_.c:2658
+#: ../../printerdrake.pm_.c:2859
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../printerdrake.pm_.c:2691
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2895
+#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../printerdrake.pm_.c:2704
+#: ../../printerdrake.pm_.c:2909
msgid "Installing Foomatic..."
msgstr "Gosod Foomatic..."
-#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
-#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:2979 ../../printerdrake.pm_.c:3020
+#: ../../printerdrake.pm_.c:3417 ../../printerdrake.pm_.c:3490
msgid "Printer options"
msgstr "Dewisiadau argraffydd"
-#: ../../printerdrake.pm_.c:2778
-msgid "Preparing PrinterDrake..."
+#: ../../printerdrake.pm_.c:2989
+msgid "Preparing Printerdrake..."
msgstr "Paratoi PrinterDrake..."
-#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
+#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
msgstr "Ffurfweddi'u rhaglenni"
-#: ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:3027
msgid "Would you like to configure printing?"
msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:3039
msgid "Printing system: "
msgstr "System argraffu."
-#: ../../printerdrake.pm_.c:2875
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2879
+#: ../../printerdrake.pm_.c:3099
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddu. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth "
"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:2880
+#: ../../printerdrake.pm_.c:3100
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9144,29 +9444,29 @@ msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../printerdrake.pm_.c:2924
+#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
msgstr "Newidiwch y system argraffu"
-#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:3150 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modd Arferol"
-#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
-#: ../../printerdrake.pm_.c:3343
+#: ../../printerdrake.pm_.c:3310 ../../printerdrake.pm_.c:3360
+#: ../../printerdrake.pm_.c:3573
msgid "Do you want to configure another printer?"
msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../printerdrake.pm_.c:3170
+#: ../../printerdrake.pm_.c:3395
msgid "Modify printer configuration"
msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:3172
+#: ../../printerdrake.pm_.c:3397
#, c-format
msgid ""
"Printer %s\n"
@@ -9175,106 +9475,108 @@ msgstr ""
"Argraffydd %s\n"
"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../printerdrake.pm_.c:3176
+#: ../../printerdrake.pm_.c:3401
msgid "Do it!"
msgstr "Gwna!!"
-#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
+#: ../../printerdrake.pm_.c:3406 ../../printerdrake.pm_.c:3461
msgid "Printer connection type"
msgstr "Math o gyswllt argraffydd"
-#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
+#: ../../printerdrake.pm_.c:3407 ../../printerdrake.pm_.c:3465
msgid "Printer name, description, location"
msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
+#: ../../printerdrake.pm_.c:3409 ../../printerdrake.pm_.c:3483
msgid "Printer manufacturer, model, driver"
msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
+#: ../../printerdrake.pm_.c:3410 ../../printerdrake.pm_.c:3484
msgid "Printer manufacturer, model"
msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
+#: ../../printerdrake.pm_.c:3419 ../../printerdrake.pm_.c:3494
msgid "Set this printer as the default"
msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
msgstr "Argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
+#: ../../printerdrake.pm_.c:3424 ../../printerdrake.pm_.c:3519
msgid "Know how to use this printer"
msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
+#: ../../printerdrake.pm_.c:3426 ../../printerdrake.pm_.c:3521
msgid "Remove printer"
msgstr "Tynnu argraffydd"
-#: ../../printerdrake.pm_.c:3245
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3472
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3497
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3498
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
+#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org/GIMP"
-#: ../../printerdrake.pm_.c:3275
+#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
-"OpenOffice.org."
+"OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3506
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
+"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
+#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3284
+#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3515
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org/GIMP."
-#: ../../printerdrake.pm_.c:3295
+#: ../../printerdrake.pm_.c:3523
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:3297
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3527
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Tynnu argraffydd \"%s\"..."
@@ -9328,9 +9630,8 @@ msgstr ""
"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
#: ../../proxy.pm_.c:65
-#, fuzzy
msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda \"http:\""
+msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9694,7 +9995,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1744
msgid "System"
msgstr "System"
@@ -9745,15 +10046,15 @@ msgstr "Cychwyn"
msgid "Stop"
msgstr "Aros"
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Diolch am ddewis Mandrake Linux 8.2"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Diolch am ddewis Mandrake Linux 9.0"
-#: ../../share/advertising/00-thanks.pl_.c:10
+#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
msgstr "Croeso i fyd Cod Agored"
-#: ../../share/advertising/00-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
@@ -9763,228 +10064,258 @@ msgstr ""
"eich system weithredu newydd yn ganlyniad gwaith cydweithredol ar ran y "
"Gymuned Linux byd-eang"
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
msgstr "Ymunwch â byd Meddalwedd Rhydd"
-#: ../../share/advertising/01-gnu.pl_.c:10
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
+"To share your own knowledge and help build Linux tools, join the discussions "
+"forum you'll find on our \"Community\" webpages"
msgstr ""
"Dewch i adnabod y gymuned Cod Agored a dewch yn aelod. Dysgwch, addysgwch a "
"chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w cael yn "
"ein tudalennau gwe \"Cymuned\""
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Y Rhygnrwyd a Negesu"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Cysylltu â'r We"
-#: ../../share/advertising/02-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
"Mae Mandrake Linux 8.2 yn cynnig y feddalwedd orau i gael mynediad i bopeth "
"sydd gan y Rhyngrwyd i'w gynnig. Syrffiwch y we a gwyliwch animeddiadau gyda "
"Mozilla a Konqueror, cyfnewidiwch e-bost a threfnu eich gwybodaeth gyda "
"Evolution a Kmail, a llawr iawn rhagor. "
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Amlgyfrwng a Graffigau"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphics and multimedia tools!"
+msgstr ""
-#: ../../share/advertising/03-graphic.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mae Mandrake Linux 8.2 yn caniatáu i chi wthio eich cyfrifiadur aml-gyfrwng "
"i'r eithaf! Defnyddiwch y feddalwedd ddiweddaraf i chwarae ffeiliau "
"cerddoriaeth a sain, golygu a threfnu eich delweddau a lluniau, gwylio "
"teledu a fideo, a llawer iawn mwy"
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Datblygiad"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Gemau"
-#: ../../share/advertising/04-develop.pl_.c:10
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"cards, sports, strategy..."
msgstr ""
-"Mandrake Linux 8.2 yw'r platfform datblygu gorau. Darganfyddwch rym grynhowr "
-"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
+"Mae Mandrake Linux 8.2 yn darparu'r gemau Cod Agored gorau - arcêd, antur, "
+"cardiau, chwaraeon, strategaeth..."
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:69
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Canolfan Rheoli Mandrake"
-#: ../../share/advertising/05-contcenter.pl_.c:10
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
"Canolfan Rheoli Mandrake Linux 8.2 yw'r lleoliad canolog ar gyfer llunio a "
"ffurfio eich system Mandrake"
-#: ../../share/advertising/06-user.pl_.c:9
+#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
msgstr "Rhyngwynebau defnyddwyr"
-#: ../../share/advertising/06-user.pl_.c:10
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides 11 user interfaces which can be fully modified: "
+"KDE 3, Gnome 2, WindowMaker..."
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Datblygiad"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Mae Mandrake Linux 8.2 yn darparu 11 amgylchedd penbwrdd graffigol a "
-"rheolwyr ffenestri gwahanol i ddewis ohonynt gan gynnwys Gnome 1.4, KDE "
-"2.2.2., Window Maker 0.8, a'r gweddill"
+"Mandrake Linux 8.2 yw'r platfform datblygu gorau. Darganfyddwch rym grynhowr "
+"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Meddalwedd Gwasanethwyr"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../share/advertising/07-server.pl_.c:10
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
+"Transform your machine into a powerful server in a few clicks of your mouse: "
+"Web server, mail, firewall, router, file and print server..."
msgstr ""
"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
"eich llygoden: gwasanaethwyr gwe, e-bost, mur gwarchod, llwybrydd, "
"gwasanaethwr ffeil ac argraffu..."
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Gemau"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../share/advertising/08-games.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Mae Mandrake Linux 8.2 yn darparu'r gemau Cod Agored gorau - arcêd, antur, "
-"cardiau, chwaraeon, strategaeth..."
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features which allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
+
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
+"Our full range of Linux solutions, as well as special offers on products and "
+"'goodies', are available online at our e-store"
msgstr ""
-"Hoffech chi ddysgu Linux yn syml, yn gyflym, ac am ddim? Mae MandrakeSoft yn "
-"darparu hyfforddiant ar Linux, yn ogystal â ffordd i fesur eich cynnydd, yn "
-"MandrakeCampus - ein canolfan hyfforddiant ar-lein"
+"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
+"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux; a list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Mae cefnogaeth werthfawr gan Gymuned Linux, a chan MandrakeSoft i'w gael yn "
-"hwylus. Ac os ydych yn hen law ar Linux, cewch fod yn \"Arbenigwr\" a rhannu "
-"eich gwybodaeth ar ein safle cefnogi"
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../share/advertising/11-consul.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
+"The training program has been create to respond to the needs of both users "
+"and experts (Network and System administrations)"
msgstr ""
-"Ar gyfer eich holl brojectau TG, mae ein hymgynghorwyr ar gael i ddadansoddi "
-"eich anghenion a chynnig atebion unigryw i chi. Medrwch fanteisio ar brofiad "
-"eang MandrakeSoft fel cynhyrchydd Linux i ddarparu ateb TG gwell i'ch busnes."
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../share/advertising/12-MDKstore.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions to your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
-"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-#: ../../share/advertising/13-Nvert.pl_.c:9
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
-"Am ragor o wybodaeth ar Wasanaethau Profesiynol a chynigion masnachol "
-"MandrakeSoft, gwelwch y dudalen we ganlynol:"
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone.pm_.c:40
+#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: ../../standalone/XFdrake_.c:143
+#: ../../standalone/XFdrake_.c:145
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:147
+#: ../../standalone/XFdrake_.c:149
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-#: ../../standalone/diskdrake_.c:81
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
-"Af ymlaen i flancio rhaniadau gwael"
-
#: ../../standalone/drakTermServ_.c:188
-#, fuzzy
msgid "Mandrake Terminal Server Configuration"
-msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
+msgstr "Ffurfweddiad Gwasanaethwr Terfynell Mandrake"
#: ../../standalone/drakTermServ_.c:203
-#, fuzzy
msgid "Enable Server"
-msgstr "Gwasanaethwr Cronfa Ddata"
+msgstr "Galluogi'r Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:210
-#, fuzzy
msgid "Disable Server"
-msgstr "Gwasanaethwr Cronfa Ddata"
+msgstr "Analluogi'r Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:218
-#, fuzzy
msgid "Start Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Cychwyn y Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:225
-#, fuzzy
msgid "Stop Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Atal y Gwasanaethwr"
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
@@ -9995,21 +10326,20 @@ msgid "Net Boot Images"
msgstr ""
#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
msgid "Add/Del Users"
-msgstr "Ychwanegu defnyddiwr"
+msgstr "Ychwanegu/Diddymu Defnyddwyr"
#: ../../standalone/drakTermServ_.c:241
-#, fuzzy
msgid "Add/Del Clients"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
-#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
-#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
-#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
-#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
-#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
+msgstr "Ychwanegu/Dileu Cleientiaid"
+
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3930
+#: ../../standalone/drakbackup_.c:3963 ../../standalone/drakbackup_.c:3989
+#: ../../standalone/drakbackup_.c:4016 ../../standalone/drakbackup_.c:4043
+#: ../../standalone/drakbackup_.c:4082 ../../standalone/drakbackup_.c:4103
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakbackup_.c:4160
+#: ../../standalone/drakbackup_.c:4186 ../../standalone/drakbackup_.c:4211
+#: ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Cymorth"
@@ -10038,28 +10368,24 @@ msgid "Build Single NIC -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:535
-#, fuzzy
msgid "No nic selected!"
-msgstr "Heb gysylltu"
+msgstr "Heb ddewis nic"
#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:552
-#, fuzzy
msgid "<-- Delete"
-msgstr "Dileu"
+msgstr "<-- Dileu"
#: ../../standalone/drakTermServ_.c:559
-#, fuzzy
msgid "Delete All NBIs"
-msgstr "Dewis Popeth"
+msgstr "Dileu Pob NBI"
#: ../../standalone/drakTermServ_.c:621
-#, fuzzy
msgid "Add User -->"
-msgstr "Ychwanegu defnyddiwr"
+msgstr "Pob Defnyddiwr-->"
#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
@@ -10070,24 +10396,20 @@ msgid "Add Client -->"
msgstr ""
#: ../../standalone/drakTermServ_.c:735
-#, fuzzy
msgid "<-- Del Client"
-msgstr "Cleient DHCP"
+msgstr "<--Diddymu Cleient"
#: ../../standalone/drakTermServ_.c:741
-#, fuzzy
msgid "dhcpd Config..."
-msgstr "Ffurfweddu..."
+msgstr "Ffurfweddu dhcpd..."
#: ../../standalone/drakTermServ_.c:888
-#, fuzzy
msgid "Write Config"
-msgstr "ailffurfweddu"
+msgstr "Ysgrifenu ffurfweddu"
#: ../../standalone/drakTermServ_.c:946
-#, fuzzy
msgid "Please insert floppy disk:"
-msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
+msgstr "Mewnosodwch ddisg meddal:"
#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
@@ -10098,9 +10420,8 @@ msgid "Floppy can be removed now"
msgstr ""
#: ../../standalone/drakTermServ_.c:955
-#, fuzzy
msgid "No floppy drive available!"
-msgstr "Does dim gyrrwr disg meddal ar gael"
+msgstr "Does dim gyrrwr disg meddal ar gael!"
#: ../../standalone/drakTermServ_.c:964
#, c-format
@@ -10165,7 +10486,6 @@ msgstr ""
"fydd gyda llaw"
#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
-#, fuzzy
msgid "Creating auto install floppy"
msgstr "Creu disg meddal awto gosod"
@@ -10181,8 +10501,8 @@ msgstr ""
"\n"
"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
+#: ../../standalone/scannerdrake_.c:119
msgid "Congratulations!"
msgstr "Llongyfarchiadau!"
@@ -10206,20 +10526,23 @@ msgstr "Ychwanegu eitem"
msgid "Remove the last item"
msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/drakbackup_.c:625
+#: ../../standalone/drakbackup_.c:619
msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/drakbackup_.c:731
+#: ../../standalone/drakbackup_.c:725
msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup_.c:732
-#, fuzzy
+#: ../../standalone/drakbackup_.c:726
msgid "FATAL"
-msgstr "FAT"
+msgstr "TERFYNNOL"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:727
+msgid "INFO"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:739
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10229,7 +10552,7 @@ msgstr ""
" Adroddiad DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:745
+#: ../../standalone/drakbackup_.c:740
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10241,7 +10564,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:749
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10253,13 +10576,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
-#: ../../standalone/drakbackup_.c:894
-#, fuzzy
+#: ../../standalone/drakbackup_.c:765 ../../standalone/drakbackup_.c:835
+#: ../../standalone/drakbackup_.c:889
msgid "Total progess"
-msgstr "cyfanswm y cynnydd"
+msgstr "Cyfanswm y cynnydd"
+
+#: ../../standalone/drakbackup_.c:788
+msgid ""
+"Sorry, perl-Expect is not installed/enabled. To use\n"
+"this feature, install perl-Expect and comment lines 772-774,\n"
+" as well as 788,789. Then uncomment line 787."
+msgstr ""
-#: ../../standalone/drakbackup_.c:822
+#: ../../standalone/drakbackup_.c:817
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10268,16 +10597,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:826
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:838
+#: ../../standalone/drakbackup_.c:833
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:865
+#: ../../standalone/drakbackup_.c:850
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:851
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Dim cyfrinair"
+
+#: ../../standalone/drakbackup_.c:852
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:853
+#, c-format
+msgid "Can't find %s on %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:856
+#, c-format
+msgid "%s not responding"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:860
#, c-format
msgid ""
"Transfer successful\n"
@@ -10288,60 +10642,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:908
+#: ../../standalone/drakbackup_.c:903
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:912
+#: ../../standalone/drakbackup_.c:907
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:928
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:938
+#: ../../standalone/drakbackup_.c:932
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:942
+#: ../../standalone/drakbackup_.c:936
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:981
+#: ../../standalone/drakbackup_.c:975
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1045
+#: ../../standalone/drakbackup_.c:1060
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+#: ../../standalone/drakbackup_.c:1087
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:1248
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
+#: ../../standalone/drakbackup_.c:1249 ../../standalone/drakbackup_.c:1316
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:1206
+#: ../../standalone/drakbackup_.c:1261
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1207
+#: ../../standalone/drakbackup_.c:1262
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1315
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:1266
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1321
msgid "No changes to backup!"
-msgstr "Defnyddiwch dâp i gadw wrth gefn"
+msgstr "Dim newid i'r ffeil wrth gefn"
-#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1337 ../../standalone/drakbackup_.c:1360
#, c-format
msgid ""
"\n"
@@ -10349,59 +10707,57 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1344
+#, c-format
msgid ""
-"file list sent by FTP : %s\n"
+"file list sent by FTP: %s\n"
" "
msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1292
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1347
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
-"gefn drwy FTP.\n"
+" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
+"drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1310
+#: ../../standalone/drakbackup_.c:1365
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1315
+#: ../../standalone/drakbackup_.c:1370
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1324
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1379
msgid " Error during mail sending. \n"
-msgstr "(!) Gwall wrth anfon e-bost. \n"
+msgstr " Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:1346
+#: ../../standalone/drakbackup_.c:1404
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
-#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1517 ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:1486
+#: ../../standalone/drakbackup_.c:1556
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:1525
+#: ../../standalone/drakbackup_.c:1600
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10409,27 +10765,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1601
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:1527
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1602
msgid "Backup your System files. (/etc directory)"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:1528
+#: ../../standalone/drakbackup_.c:1603
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:1529
+#: ../../standalone/drakbackup_.c:1604
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1605
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10437,131 +10792,128 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:1547
+#: ../../standalone/drakbackup_.c:1622
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:1574
+#: ../../standalone/drakbackup_.c:1649
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1650 ../../standalone/drakbackup_.c:1674
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1672 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1710
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1674
+#: ../../standalone/drakbackup_.c:1749
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:1700
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1775
msgid "Use network connection to backup"
-msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
+msgstr "Defnyddiwch cysylltiad rhwydwaith i gadw wrth gefn"
+
+#: ../../standalone/drakbackup_.c:1777
+msgid "Net Method:"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:1781
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1707
+#: ../../standalone/drakbackup_.c:1782
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1708
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1783
msgid ""
" Transfer \n"
"Now"
-msgstr "Trosglwyddo"
+msgstr ""
+"Trosglwyddo \n"
+"Nawr"
-#: ../../standalone/drakbackup_.c:1709
+#: ../../standalone/drakbackup_.c:1784
msgid "Keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1713
+#: ../../standalone/drakbackup_.c:1788
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:1718
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1793
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Rhowch y cyfeiriadur i osod y cadw\n"
+"Rhowch y cyfeiriadur(neu fodiwl) i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:1723
+#: ../../standalone/drakbackup_.c:1798
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:1728
+#: ../../standalone/drakbackup_.c:1803
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:1734
+#: ../../standalone/drakbackup_.c:1809
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:1820
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1841
+#: ../../standalone/drakbackup_.c:1915
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1844
+#: ../../standalone/drakbackup_.c:1918
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1849
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1923
msgid "Please choose your CD/DVD media size"
-msgstr "Dewiswch eich gofod CD"
+msgstr "Dewiswch maint eich gofod CD/DVD"
-#: ../../standalone/drakbackup_.c:1855
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1929
msgid "Please check for multisession CD"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+msgstr "Gwiriwch os ydych yn defnyddio CD amlsesiwn"
-#: ../../standalone/drakbackup_.c:1861
+#: ../../standalone/drakbackup_.c:1935
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1867
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1941
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr "Gwiriwch os ydych am ddileu eich cyfrwng RW(Sesiwn 1af)"
-#: ../../standalone/drakbackup_.c:1868
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1942
msgid " Erase Now "
-msgstr "Trosglwyddo"
+msgstr "Dileu Nawr"
-#: ../../standalone/drakbackup_.c:1874
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1948
msgid "Please check if you are using a DVDR device"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDR"
-#: ../../standalone/drakbackup_.c:1880
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1954
msgid "Please check if you are using a DVDRAM device"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDRAM"
-#: ../../standalone/drakbackup_.c:1893
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10569,36 +10921,33 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1926
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2000
msgid "No CD device defined!"
-msgstr "Dewiswch ffeil"
+msgstr "Heb ddiffinio dyfais CD!"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2048
msgid "Use tape to backup"
msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2051
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2057
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr ""
+"Gwiriwch os ydych am ddefnyddio'r dyfais nad yw'n mynd nôl i'e ddechrau."
-#: ../../standalone/drakbackup_.c:1989
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2063
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr "Gwiriwch os ydych am ddileu eich tâp cyn y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:1995
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2069
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+msgstr "Gwiriwch os ydych am dynnu eich tâp ar ôl y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
-#: ../../standalone/drakbackup_.c:3025
+#: ../../standalone/drakbackup_.c:2075 ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:3116
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10606,57 +10955,55 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:2066
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2140
msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
+#: ../../standalone/drakbackup_.c:2155 ../../standalone/drakbackup_.c:3122
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2221
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2226
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2156
+#: ../../standalone/drakbackup_.c:2231
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:2161
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2236
msgid "Tape"
-msgstr "Math"
+msgstr "Tâp"
-#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2258
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
+#: ../../standalone/drakbackup_.c:2258
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2258
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
-#: ../../standalone/drakbackup_.c:2183
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2258
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:2196
+#: ../../standalone/drakbackup_.c:2271
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:2201
+#: ../../standalone/drakbackup_.c:2276
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10664,7 +11011,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2282
msgid ""
"Please choose the\n"
"media for backup."
@@ -10672,80 +11019,81 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2214
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2289
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
+"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau. \n"
+"\n"
+"Sylwer bod yr holl gyfrwn \"gwe\" yn defnyddio'r ddisg caled."
-#: ../../standalone/drakbackup_.c:2251
-msgid "Send mail report after each backup to :"
+#: ../../standalone/drakbackup_.c:2326
+msgid "Send mail report after each backup to:"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2332
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2296
+#: ../../standalone/drakbackup_.c:2371
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:2301
+#: ../../standalone/drakbackup_.c:2376
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:2306
+#: ../../standalone/drakbackup_.c:2381
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:2311
+#: ../../standalone/drakbackup_.c:2386
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
+#: ../../standalone/drakbackup_.c:2405 ../../standalone/drakbackup_.c:4530
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:2348
+#: ../../standalone/drakbackup_.c:2423
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2350
+#: ../../standalone/drakbackup_.c:2425
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:2360
+#: ../../standalone/drakbackup_.c:2435
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:2445
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2378
+#: ../../standalone/drakbackup_.c:2453
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2496
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2422
+#: ../../standalone/drakbackup_.c:2497
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2498
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:2426
+#: ../../standalone/drakbackup_.c:2501
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:2508
+#: ../../standalone/drakbackup_.c:2584
msgid ""
"\n"
"Backup Sources: \n"
@@ -10753,7 +11101,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:2509
+#: ../../standalone/drakbackup_.c:2585
msgid ""
"\n"
"- System Files:\n"
@@ -10761,7 +11109,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- User Files:\n"
@@ -10769,7 +11117,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- Other Files:\n"
@@ -10777,64 +11125,64 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:2515
+#: ../../standalone/drakbackup_.c:2591
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path : %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:2518
+#: ../../standalone/drakbackup_.c:2594
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2524
+#: ../../standalone/drakbackup_.c:2600
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2525
+#: ../../standalone/drakbackup_.c:2601
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2526
-#, fuzzy, c-format
-msgid " on device : %s"
-msgstr "Dyfais llygoden: %s\n"
+#: ../../standalone/drakbackup_.c:2602
+#, c-format
+msgid " on device: %s"
+msgstr "ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:2603
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid ""
"\n"
-"- Save to Tape on device : %s"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Cadw ar FTP ar y gwesteiwr: %s\n"
+"- Cadw i dâp ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:2605
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2532
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2608
+#, c-format
msgid ""
"\n"
-"- Save via %s on host : %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Cadw ar FTP ar y gwesteiwr: %s\n"
+"- Cadw drwy %s ar westeiwr: %s\n"
-#: ../../standalone/drakbackup_.c:2533
+#: ../../standalone/drakbackup_.c:2609
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10843,7 +11191,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:2534
+#: ../../standalone/drakbackup_.c:2610
msgid ""
"\n"
"- Options:\n"
@@ -10851,62 +11199,60 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:2535
+#: ../../standalone/drakbackup_.c:2611
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup_.c:2614
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:2543
+#: ../../standalone/drakbackup_.c:2619
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include :\n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup_.c:2620
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:2545
+#: ../../standalone/drakbackup_.c:2621
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2546
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2548
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:2549
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by rsync.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
+msgstr "\t-Rhwydwaith drwy rsync.\n"
-#: ../../standalone/drakbackup_.c:2550
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by webdav.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
+msgstr "\t-Rhwydwaith drwy webday.\n"
-#: ../../standalone/drakbackup_.c:2552
+#: ../../standalone/drakbackup_.c:2628
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup_.c:2634
msgid ""
"List of data to restore:\n"
"\n"
@@ -10914,7 +11260,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2725
+#: ../../standalone/drakbackup_.c:2801
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10922,160 +11268,268 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2727
+#: ../../standalone/drakbackup_.c:2803
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2813
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:2758
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2834
msgid " All of your selected data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:2759
+#: ../../standalone/drakbackup_.c:2835
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:2877
+#: ../../standalone/drakbackup_.c:2953
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:2971
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:2912
+#: ../../standalone/drakbackup_.c:2988
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:2975
+#: ../../standalone/drakbackup_.c:3066
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:2977
+#: ../../standalone/drakbackup_.c:3068
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3105
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3017
+#: ../../standalone/drakbackup_.c:3108
msgid "Please enter the directory to save:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:3060
+#: ../../standalone/drakbackup_.c:3151
msgid "FTP Connection"
msgstr "Cysylltiad FTP"
-#: ../../standalone/drakbackup_.c:3067
+#: ../../standalone/drakbackup_.c:3158
msgid "Secure Connection"
msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakbackup_.c:3093
+#: ../../standalone/drakbackup_.c:3184
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:3095
+#: ../../standalone/drakbackup_.c:3186
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:3157
+#: ../../standalone/drakbackup_.c:3254
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:3159
+#: ../../standalone/drakbackup_.c:3256
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:3164
+#: ../../standalone/drakbackup_.c:3261
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:3165
+#: ../../standalone/drakbackup_.c:3262
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:3166
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:3168
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3265
msgid "select path to restore (instead of /)"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3269
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:3174
+#: ../../standalone/drakbackup_.c:3271
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:3232
+#: ../../standalone/drakbackup_.c:3384
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3394
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"Adfer y Dewis\n"
+"Ffeiliau"
+
+#: ../../standalone/drakbackup_.c:3411
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr ""
+"Newid\n"
+"Llwybr Adfer"
+
+#: ../../standalone/drakbackup_.c:3477
+#, c-format
+msgid "Backup files not found at %s."
+msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
+
+#: ../../standalone/drakbackup_.c:3490
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3490
+msgid "Restore From CD"
+msgstr "Adfer o'r CD"
+
+#: ../../standalone/drakbackup_.c:3492
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+#, c-format
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3502
+msgid "Restore From Tape"
+msgstr "Adfer o Dâp"
+
+#: ../../standalone/drakbackup_.c:3504
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3524
+msgid "Restore Via Network"
+msgstr "Adfer drwy'r Rhwydwaith"
+
+#: ../../standalone/drakbackup_.c:3524
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3525
+msgid "Host Name"
+msgstr "Enw Gwesteiwr"
+
+#: ../../standalone/drakbackup_.c:3526
+msgid "Host Path or Module"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3533
+msgid "Password required"
+msgstr "Mae angen cyfrinair"
+
+#: ../../standalone/drakbackup_.c:3539
+msgid "Username required"
+msgstr "Mae angen enw defnyddiwr"
+
+#: ../../standalone/drakbackup_.c:3542
+msgid "Hostname required"
+msgstr "Mae angen enw gwesteiwr"
+
+#: ../../standalone/drakbackup_.c:3547
+msgid "Path or Module required"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3560
+msgid "Files Restored..."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3563
+msgid "Restore Failed..."
+msgstr "Methodd Adfer..."
+
+#: ../../standalone/drakbackup_.c:3801
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3241
+#: ../../standalone/drakbackup_.c:3810
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
-#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
-#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
-#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:3856
+msgid "CD in place - continue."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3862
+msgid "Browse to new restore repository."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3865
+msgid "Restore From Catalog"
+msgstr "Adfer o'r Catalog"
+
+#: ../../standalone/drakbackup_.c:3893
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Adfer Defnyddwyr"
+
+#: ../../standalone/drakbackup_.c:3935 ../../standalone/drakbackup_.c:3968
+#: ../../standalone/drakbackup_.c:3994 ../../standalone/drakbackup_.c:4021
+#: ../../standalone/drakbackup_.c:4048 ../../standalone/drakbackup_.c:4108
+#: ../../standalone/drakbackup_.c:4135 ../../standalone/drakbackup_.c:4165
+#: ../../standalone/drakbackup_.c:4191
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/drakbackup_.c:3939 ../../standalone/drakbackup_.c:4025
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:3350
+#: ../../standalone/drakbackup_.c:3998
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
+#: ../../standalone/drakbackup_.c:4052 ../../standalone/drakbackup_.c:4632
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:3553
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Crëwch gadw wrth gefn cyn ei adfer...\n"
-" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-
-#: ../../standalone/drakbackup_.c:3574
+#: ../../standalone/drakbackup_.c:4231
msgid ""
-"Error during sendmail\n"
-" your report mail was not sent\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Gwall wrth ddefnyddio sendmail\n"
-" chafodd eich adroddiad e-bost mo'i anfon\n"
+" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:3598
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4255
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "Mae'r pecynnau canlynol i'w gosod"
+msgstr ""
+"Mae'r pecynnau canlynol i'w gosod:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:3621
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4278
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11083,19 +11537,19 @@ msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:3644
+#: ../../standalone/drakbackup_.c:4301
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:3665
+#: ../../standalone/drakbackup_.c:4322
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4344
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4366
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11103,60 +11557,59 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:3730
+#: ../../standalone/drakbackup_.c:4387
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:3811
+#: ../../standalone/drakbackup_.c:4468
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3813
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3815
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
+#: ../../standalone/drakbackup_.c:4474 ../../standalone/drakbackup_.c:4507
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:3841
+#: ../../standalone/drakbackup_.c:4498
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:3845
+#: ../../standalone/drakbackup_.c:4502
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:3931
+#: ../../standalone/drakbackup_.c:4588
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:3936
+#: ../../standalone/drakbackup_.c:4593
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3956
+#: ../../standalone/drakbackup_.c:4614
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:4619
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:3966
+#: ../../standalone/drakbackup_.c:4624
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4658
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4045
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4707
msgid ""
"options description:\n"
"\n"
@@ -11214,7 +11667,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:4075
+#: ../../standalone/drakbackup_.c:4737
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11223,7 +11676,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:4083
+#: ../../standalone/drakbackup_.c:4745
msgid ""
"options description:\n"
"\n"
@@ -11300,28 +11753,28 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4122
+#: ../../standalone/drakbackup_.c:4784
msgid ""
"restore description:\n"
" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't like to restore a user please unselect all his\n"
-"check box.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"Otherwise, you are able to select only one of this\n"
+"Otherwise, you are able to select only one of these.\n"
"\n"
" - Incremental Backups:\n"
"\n"
"\tThe incremental backup is the most powerful \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
"\tstep, to restore your data from a specified\n"
"\tdate.\n"
-"\tIf you have not selected this options all\n"
+"\tIf you have not selected this option all\n"
"\told backups are deleted before each backup. \n"
"\n"
"\n"
@@ -11349,18 +11802,18 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
+#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
+#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11392,7 +11845,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:4166
+#: ../../standalone/drakbackup_.c:4828
msgid ""
"Description:\n"
"\n"
@@ -11468,7 +11921,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4204
+#: ../../standalone/drakbackup_.c:4866
msgid ""
"options description:\n"
"\n"
@@ -11487,7 +11940,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4213
+#: ../../standalone/drakbackup_.c:4875
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11509,7 +11962,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:4243
+#: ../../standalone/drakbackup_.c:4905
msgid ""
"Description:\n"
"\n"
@@ -11626,42 +12079,35 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
-#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
-#: ../../standalone/drakbug_.c:156
-#, fuzzy
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
+#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
+#: ../../standalone/drakbug_.c:157
msgid "Standalone Tools"
-msgstr "Offer y Consol"
+msgstr "Offer Unigol"
#: ../../standalone/drakbug_.c:73
-#, fuzzy
msgid "HardDrake"
-msgstr "ar Ddisg Caled"
+msgstr "HardDrake"
#: ../../standalone/drakbug_.c:74
-#, fuzzy
msgid "Mandrake Online"
-msgstr "MandrakeConsulting"
+msgstr "Mandrake Online"
#: ../../standalone/drakbug_.c:75
-#, fuzzy
msgid "Menudrake"
-msgstr "MandrakeStore"
+msgstr "Menudrake"
#: ../../standalone/drakbug_.c:76
-#, fuzzy
msgid "Msec"
-msgstr "Llygoden"
+msgstr "Msec"
#: ../../standalone/drakbug_.c:77
-#, fuzzy
msgid "Remote Control"
-msgstr "Argraffydd pell"
+msgstr "Rheoli o Bell"
#: ../../standalone/drakbug_.c:78
-#, fuzzy
msgid "Software Manager"
-msgstr "Rhannu enw"
+msgstr "Rheolwr Meddalwedd"
#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
@@ -11672,35 +12118,30 @@ msgid "Windows Migration tool"
msgstr ""
#: ../../standalone/drakbug_.c:81
-#, fuzzy
msgid "Userdrake"
-msgstr "Printerdrake"
+msgstr "Userdrake"
#: ../../standalone/drakbug_.c:82
-#, fuzzy
msgid "Configuration Wizards"
-msgstr "Dewin Ffurfweddu'r Rhwydwaith"
+msgstr "Dewin Ffurfweddu"
-#: ../../standalone/drakbug_.c:96
-#, fuzzy
+#: ../../standalone/drakbug_.c:97
msgid "Application:"
-msgstr "Dilysu"
+msgstr "Rhaglen"
-#: ../../standalone/drakbug_.c:97
-#, fuzzy
+#: ../../standalone/drakbug_.c:98
msgid "Package: "
-msgstr "Dewis pecynnau"
+msgstr "Pecynnau"
-#: ../../standalone/drakbug_.c:98
+#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:99
-#, fuzzy
+#: ../../standalone/drakbug_.c:100
msgid "Release: "
-msgstr "Arhoswch"
+msgstr "Ryddhad"
-#: ../../standalone/drakbug_.c:114
+#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
@@ -11712,24 +12153,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:135
-#, fuzzy
+#: ../../standalone/drakbug_.c:136
msgid "Report"
-msgstr "porth"
+msgstr "Adroddiad"
-#: ../../standalone/drakbug_.c:165
-#, fuzzy
+#: ../../standalone/drakbug_.c:166
msgid "Not installed"
-msgstr "Wedi'r dad osod"
+msgstr "Heb ei osod"
-#: ../../standalone/drakbug_.c:182
+#: ../../standalone/drakbug_.c:183
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:189
-#, fuzzy
+#: ../../standalone/drakbug_.c:190
msgid "No browser available! Please install one"
-msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
+msgstr "Dim porwr ar gael! Gosodawch un"
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -12025,12 +12463,12 @@ msgid "Be sure a media is present for the device %s"
msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
#: ../../standalone/drakfloppy_.c:426
-#, fuzzy, c-format
+#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-"Does dim cyfrwng i'r dyfais %s.\n"
+"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
"Rhowch un i mewn.."
#: ../../standalone/drakfloppy_.c:428
@@ -12176,7 +12614,7 @@ msgid "Font List"
msgstr "Rhestr Ffontiau"
#: ../../standalone/drakfont_.c:909
-msgid "Choose the applications that will support the fonts :"
+msgid "Choose the applications that will support the fonts:"
msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
#: ../../standalone/drakfont_.c:918
@@ -12247,19 +12685,19 @@ msgstr "Tynnu ffontiau oddi ar eich system!"
msgid "Post Uninstall"
msgstr "Wedi'r dad osod"
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
+#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:188
msgid "Internet Connection Sharing"
msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:121
+#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:133
+#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:131
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12271,31 +12709,31 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "disable"
msgstr "dymunol"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "dismiss"
msgstr "gwrthod"
-#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:135 ../../standalone/drakgw_.c:160
msgid "reconfigure"
msgstr "ailffurfweddu"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:138
msgid "Disabling servers..."
msgstr "Analluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:149
+#: ../../standalone/drakgw_.c:146
msgid "Internet connection sharing is now disabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-#: ../../standalone/drakgw_.c:158
+#: ../../standalone/drakgw_.c:155
msgid "Internet Connection Sharing currently disabled"
msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:156
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12307,19 +12745,19 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "enable"
msgstr "galluogi"
-#: ../../standalone/drakgw_.c:170
+#: ../../standalone/drakgw_.c:167
msgid "Enabling servers..."
msgstr "Galluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Internet connection sharing is now enabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-#: ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:189
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12336,21 +12774,21 @@ msgstr ""
"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
"(LAN)."
-#: ../../standalone/drakgw_.c:222
+#: ../../standalone/drakgw_.c:215
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:216
#, c-format
msgid "Interface %s"
msgstr "Rhagwyneb %s"
-#: ../../standalone/drakgw_.c:231
+#: ../../standalone/drakgw_.c:224
msgid "No network adapter on your system!"
msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:225
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12358,11 +12796,11 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
"yr offeryn ffurfweddu caledwedd."
-#: ../../standalone/drakgw_.c:238
+#: ../../standalone/drakgw_.c:231
msgid "Network interface"
msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:232
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12377,7 +12815,7 @@ msgstr ""
"\n"
"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/drakgw_.c:248
+#: ../../standalone/drakgw_.c:241
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12385,11 +12823,11 @@ msgstr ""
"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
"Lleol."
-#: ../../standalone/drakgw_.c:266
+#: ../../standalone/drakgw_.c:259
msgid "Network interface already configured"
msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:260
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12405,15 +12843,15 @@ msgstr ""
"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
"wneud."
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:265
msgid "Automatic reconfiguration"
msgstr "Ail ffurfweddiad awtomatig"
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:268
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12430,7 +12868,7 @@ msgstr ""
"Priodweddau IP: %s\n"
"Gyrrwr: %s"
-#: ../../standalone/drakgw_.c:287
+#: ../../standalone/drakgw_.c:280
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12449,54 +12887,42 @@ msgstr ""
"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
"DHCP ar eich cyfer.\n"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:285
msgid "C-Class Local Network"
msgstr "Rhwydwaith Lleol Dosbarth C"
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:286
msgid "(This) DHCP Server IP"
msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:287
msgid "Re-configure interface and DHCP server"
msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakgw_.c:301
+#: ../../standalone/drakgw_.c:294
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../../standalone/drakgw_.c:312
+#: ../../standalone/drakgw_.c:305
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../standalone/drakgw_.c:320
-msgid "Firewalling configuration detected!"
-msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-
-#: ../../standalone/drakgw_.c:321
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
-"atgyweirio gyda llaw ar ôl y gosodiad."
-
-#: ../../standalone/drakgw_.c:328
+#: ../../standalone/drakgw_.c:315
msgid "Configuring..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:316
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:365
+#: ../../standalone/drakgw_.c:352
#, c-format
msgid "Problems installing package %s"
msgstr "Anhawster wrth osod pecyn %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:485
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12506,23 +12932,23 @@ msgstr ""
"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:505
msgid "The setup has already been done, and it's currently enabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:506
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:511
msgid "Internet connection sharing configuration"
msgstr "Ffurfweddiad rhannu cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:518
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12537,6 +12963,143 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Heb ganfod Cerdyn Sain!"
+
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:32
+msgid "package ImageMagick is required for correct working"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:76
+msgid "first step creation"
+msgstr "creu'r cam cyntaf"
+
+#: ../../standalone/draksplash_.c:77
+msgid "final resolution"
+msgstr "cydraniad terfynnol"
+
+#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+msgid "choose image file"
+msgstr "dewis ffeil delwedd"
+
+#: ../../standalone/draksplash_.c:79
+msgid "Theme name"
+msgstr "Enw Thema"
+
+#: ../../standalone/draksplash_.c:81
+msgid "make bootsplash step 2"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:82
+msgid "go to lilosplash configuration"
+msgstr "mynd i fffurfweddiad lilosplash"
+
+#: ../../standalone/draksplash_.c:83
+msgid "quit"
+msgstr "gadael"
+
+#: ../../standalone/draksplash_.c:84
+msgid "save theme"
+msgstr "cadw thema"
+
+#: ../../standalone/draksplash_.c:85
+msgid "browse"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+msgid "Configure bootsplash picture"
+msgstr "Ffurfweddu llun croeso cychwyn"
+
+#: ../../standalone/draksplash_.c:99
+msgid "x coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:100
+msgid "y coordinate of text box in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:101
+msgid "text width"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
+msgid "text box height"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:103
+msgid "the progress bar x coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:104
+msgid "the progress bar y coordinate of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:105
+msgid "the width of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:107
+msgid "the color of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:119
+msgid "go back"
+msgstr "mynd nôl"
+
+#: ../../standalone/draksplash_.c:120
+msgid "preview"
+msgstr "rhagolwg"
+
+#: ../../standalone/draksplash_.c:121
+msgid "choose color"
+msgstr "dewis lliw"
+
+#: ../../standalone/draksplash_.c:124
+msgid "Display logo on Console"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:125
+msgid "Make kernel message quiet by default"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#, c-format
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:213
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:436
+msgid "ProgressBar color selection"
+msgstr "Dewis lliw ProgressBar"
+
+#: ../../standalone/draksplash_.c:454
+msgid "You must choose an image file first!"
+msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
+
+#: ../../standalone/draksplash_.c:463
+msgid "Generating preview ..."
+msgstr "Cynhyrchu rhagolwg..."
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12557,9 +13120,8 @@ msgid "Canada (cable)"
msgstr "Canada (cabl)"
#: ../../standalone/drakxtv_.c:66
-#, fuzzy
msgid "USA (broadcast)"
-msgstr "UDA (bcast)"
+msgstr "UDA (darlledu)"
#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
@@ -12570,14 +13132,12 @@ msgid "USA (cable-hrc)"
msgstr "UDA (cable-hrc)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "China (broadcast)"
-msgstr "Tseina (bcast)"
+msgstr "Tseina (darlledu)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "Japan (broadcast)"
-msgstr "Siapan (bcast)"
+msgstr "Siapan (darlledu)"
#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
@@ -12588,9 +13148,8 @@ msgid "East Europe"
msgstr "Dwyrain Ewrop"
#: ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "France [SECAM]"
-msgstr "Ffrainc"
+msgstr "Ffrainc(SECAM)"
#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
@@ -12627,11 +13186,11 @@ msgid ""
msgstr "Rhowch eich safon teledu a gwlad"
#: ../../standalone/drakxtv_.c:109
-msgid "TV norm :"
+msgid "TV norm:"
msgstr "Safon Teledu:"
#: ../../standalone/drakxtv_.c:110
-msgid "Area :"
+msgid "Area:"
msgstr "Ardal:"
#: ../../standalone/drakxtv_.c:114
@@ -12643,9 +13202,8 @@ msgid "Scanning for TV channels"
msgstr "Sganio am Sianel Teledu"
#: ../../standalone/drakxtv_.c:125
-#, fuzzy
msgid "There was an error while scanning for TV channels"
-msgstr "Digwyddodd gwall wrth osod pecyn"
+msgstr "Digwyddodd gwall wrth sganio am sianelu teledu"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
@@ -12709,7 +13267,7 @@ msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
msgid "logdrake"
msgstr "logdrake"
@@ -12818,9 +13376,8 @@ msgid "Content of the file"
msgstr "Cynnwys y ffeil"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "Rhybudd E-bost/SMS"
+msgstr "Rhybudd e-bost"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -12828,18 +13385,16 @@ msgid "please wait, parsing file: %s"
msgstr "arhoswch, dosbarthu ffeil: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Rhybudd ffurfweddiad E-bost/SMS"
+msgstr "Ffurfweddiad rhybudd e-bost"
#: ../../standalone/logdrake_.c:409
-#, fuzzy
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Croeso i'r gwasanaeth ffurfweddu e-bost/SMS\n"
+"Croeso i'r gwasanaeth ffurfweddu e-bost\n"
"\n"
"Yma bydd modd i chi osod y system rhybuddio.\n"
@@ -12848,39 +13403,32 @@ msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "Enw parth"
+msgstr "Datrysydd Enw Parth"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Gwasanaethwr Ftp"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
+msgstr "Gwasanaethwr E-bost Postfix"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Gwasanaethwr Samba"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "Gwasanaethwr NIS"
+msgstr "Gwasanaethwr SSH"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "Gwasanaethau"
+msgstr "Gwasanaethau Webmin"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Gwasanaethwr Argraffydd"
+msgstr "Gwasanaeth Xinetd"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
@@ -12888,7 +13436,7 @@ msgstr "gosodiad gwasanaeth"
#: ../../standalone/logdrake_.c:431
msgid ""
-"You will receive an alert if one of the selected service is no more running"
+"You will receive an alert if one of the selected services is no more running"
msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
#: ../../standalone/logdrake_.c:443
@@ -12904,24 +13452,22 @@ msgid "alert configuration"
msgstr "ffurfweddiad rhybudd"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "Rhowch eich cyfrinair"
+msgstr "Rhowch eich cyfeiriad e-bost islaw"
-#: ../../standalone/logdrake_.c:499
+#: ../../standalone/logdrake_.c:497
msgid "Save as.."
msgstr "Cadw fel..."
-#: ../../standalone/mousedrake_.c:43
+#: ../../standalone/mousedrake_.c:45
msgid "Please, choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/mousedrake_.c:57
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Efelychu'r trydydd botwm?"
-#: ../../standalone/printerdrake_.c:48
-#, fuzzy
+#: ../../standalone/printerdrake_.c:57
msgid "Reading printer data ..."
msgstr "Darllen data argraffydd..."
@@ -12933,33 +13479,43 @@ msgstr "Canfod dyfeisiadau..."
msgid "Test ports"
msgstr "Profwch y pyrth"
-#: ../../standalone/scannerdrake_.c:52
+#: ../../standalone/scannerdrake_.c:53 ../../standalone/scannerdrake_.c:68
+#: ../../standalone/scannerdrake_.c:81
#, c-format
-msgid "%s found on %s, configure it ?"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:56
+#, c-format
+msgid "%s found on %s, configure it?"
msgstr "Wedi canfod %s ar %s, ei ffurfweddi?"
#: ../../standalone/scannerdrake_.c:59
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
msgstr "Dewiswch sganiwr"
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Nid yw sganiwr %s yn cael ei gynnal"
-#: ../../standalone/scannerdrake_.c:93
+#: ../../standalone/scannerdrake_.c:107
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:95
-#, fuzzy
+#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
-msgstr "Dyfais cychwyn"
+msgstr "dewis dyfais"
-#: ../../standalone/scannerdrake_.c:101
+#: ../../standalone/scannerdrake_.c:115
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12969,7 +13525,7 @@ msgstr ""
"Rhaid i sganiwr %s gael ei ffurfweddu gan printerdrake.\n"
"Medrwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli Mandrake"
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/scannerdrake_.c:120
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12977,48 +13533,18 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:57
+#: ../../standalone/service_harddrake_.c:39
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:61
+#: ../../standalone/service_harddrake_.c:43
#, c-format
msgid ""
"\n"
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:30
-msgid "Firewalling Configuration"
-msgstr "Ffurfweddiad Mur Gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:43
-msgid "Firewalling configuration"
-msgstr "Ffurfweddiad Mur Gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:78
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Mur Gwarchod\n"
-"\n"
-"Rydych eisoes wedi gosod mur gwarchod\n"
-"Cliciwch Ffurfweddu i newid neu dynnu'r mur gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:82
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Mur gwarchod\n"
-"\n"
-"Cliciwch Ffurfweddu i osod mur gwarchod safonnol"
-
#: ../../steps.pm_.c:14
msgid "Choose your language"
msgstr "Dewis eich iaith"
@@ -13091,224 +13617,7 @@ msgstr "Diweddariadau system gosod"
msgid "Exit install"
msgstr "Gadael gosod"
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ffurfweddiadur tinyfirewall\n"
-"\n"
-"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
-"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
-"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Byddwn nawr yn gofyn cwestiynnau am wasanaethau'r hoffech eu \n"
-"caniatáu i'r Rhyngrwyd gysylltu â hwy. Meddyliwch yn ofalus am y \n"
-"cwestiynnau, mae diogelwch eich cyfrifiadur yn bwysig.\n"
-"\n"
-"Os nad ydych yn defnyddio un o'r gwasanaethau hyn \n"
-"gwarchodwch ef. Mae modd newid y ffurfweddiad pryd \n"
-"bynnag hoffech chi drwy ail redeg y rhaglen."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr gwe ar y peiriant hwn i'r holl\n"
-"Ryngrwyd ei weld? Os ydych yn rhedeg gwasanaethwr gwe\n"
-"sydd ar gyfer y peiriant hwn yn unig, yna atebwch NA.\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr enw ar y peiriant hwn? Os nad ydych wedi\n"
-"gosod un i rhannu gwybodaeth IP a parth i'r holl Ryngrwyd, yna atebwch NA.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Ydych chi am ganiatáu cysylltiadau Secure Shell (ssh)? Mewngofnod\n"
-"posib i gymryd lle telnet yw hwn. Os ydych yn defnyddio telnet, dylech wir \n"
-"newid i ssh. Nid yw telnet wedi ei amgryptio - gall rhai ymosodwyr ddwyn\n"
-"eich cyfrinair. Mae ssh wedi ei amgryptio ac nid yw'n caniatáu i eraill "
-"wrando."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"A ydych am ganiatáu cysylltiadau telnet i mewn?\n"
-"Mae hyn yn erchyll o aniogel, fel soniwyd yn y sgrin diwethaf. Rydym\n"
-" yn argymell yn gryf eich bod yn ateb Na yn fan hyn a defnyddio ssh\n"
-"yn lle telnet\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr FTP sydd angen cysylltiad â'r Rhyngrwyd?\n"
-"Os ydych rydym yn argymell yn gryf eich bod yn ei ddefnyddio ar gyfer\n"
-"trosglwyddiadau anhysbys yn unig. Gall unrhyw gyfrinair sy'n cael ei anfon\n"
-"drwy FTP gael ei ddwyn, gan nad yw FTP'n defnyddio amgryptiad ar gyfer\n"
-"trosglwyddo cyfrineiriau\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr e-bost? Os ydych yn\n"
-"anfon eich negeseuon drwy pine, mutt neu unrhyw gleient testun arall\n"
-"yna mae'n debyg eich bod. Oni bai am hynny, dylech ddiogelu hwn gyda\n"
-"mur gwarchod\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr POP neu IMAP? Byddai\n"
-"hyn yn cael ei ddefnyddio fel gwestai ar gyfer cyfrifon e-bost\n"
-"nad ydynt yn gysylltiedig a'r we, drwy'r peiriant hwn\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Mae'n ymddangos eich bod yn rhedeg cnewyllyn 2.2 Os\n"
-"yw eich rhwydwaith wedi ei greu'n awtomatig gan gyfrifiadur\n"
-"yn eich cartref neu swyddfa (neilltuad dynamigol) rhaid caniatáu\n"
-"ar gyfer hyn. Ai dyma sut mae hi?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Ydi eich cyfrifiadur yn cydweddi amser gyda cyfrifiadur arall?\n"
-"Fel rheol, mae hyn yn cael ei ddefnyddio gan gyrff Unix/Linux\n"
-"cymhedrol-mawr i gydweddu amser ar gyfer mewngofnodi ag ati.\n"
-"Os nad ydych yn rhan o swyddfa fwy ac heb glywed am hyn, mwy\n"
-"na thebych, nid ydych."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Mae furfweddiad wedi ei gwblhau. Gawn ni ysgrifennu'r newidiadau hyn i "
-"ddisg?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Methu agor %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Methu agor %s ar gyfer ysgrifennu: %s\n"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "No I don't need DHCP"
-msgstr "Nid wyf angen DHCP"
-
-#: ../../tinyfirewall.pm_.c:178
-msgid "Yes I need DHCP"
-msgstr "Rwyf eisiau DHCP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "No I don't need NTP"
-msgstr "Nid wyf angen NTP"
-
-#: ../../tinyfirewall.pm_.c:179
-msgid "Yes I need NTP"
-msgstr "Rwyf eisiau NTP"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-msgid "Don't Save"
-msgstr "Peidio Cadw"
-
-#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
-#: ../../tinyfirewall.pm_.c:204
-msgid "Save & Quit"
-msgstr "Cadw a Gadael"
-
-#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
-msgid "Firewall Configuration Wizard"
-msgstr "Dewin Ffurfweddu'r Mur Cadarn"
-
-#: ../../tinyfirewall.pm_.c:197
-msgid "No (firewall this off from the internet)"
-msgstr "Na ((rhowch hwn tu nôl i fur cadarn rhag y rhyngrwyd)"
-
-#: ../../tinyfirewall.pm_.c:198
-msgid "Yes (allow this through the firewall)"
-msgstr "Iawn (caniatewch hwn drwy'r mur cadarn)"
-
-#: ../../tinyfirewall.pm_.c:230
-msgid "Please Wait... Verifying installed packages"
-msgstr "Arhoswch,... Gwirio'r pecynnau sydd wedi eu gosod"
-
-#: ../../tinyfirewall.pm_.c:236
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Wedi methu gosod y pecynnau angenrheidiol: %s a Bastille.\n"
-" Ceisiwch eu gosod gyda llaw."
-
-#: ../../ugtk.pm_.c:619
+#: ../../ugtk.pm_.c:594
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13444,6 +13753,10 @@ msgid "Graphical Environment"
msgstr "Amgylchedd Graffig"
#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Datblygiad"
+
+#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
@@ -13521,7 +13834,7 @@ msgstr "Clientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13555,387 +13868,92 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "$mode: $warning"
-#~ msgstr "$mode: $warning"
-
-#, fuzzy
-#~ msgid ""
-#~ "This level is to be used with care. It makes your system more easy to "
-#~ "use,\n"
-#~ " but very sensitive: it must not be used for a machine "
-#~ "connected to others\n"
-#~ " or to the Internet. There is no password access."
-#~ msgstr ""
-#~ "Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
-#~ "ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel "
-#~ "peiriant i'w\n"
-#~ "gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-
-#, fuzzy
-#~ msgid ""
-#~ "With this security level, the use of this system as a server becomes "
-#~ "possible.\n"
-#~ " The security is now high enough to use the system as a "
-#~ "server which can accept\n"
-#~ " connections from many clients. Note: if your machine is "
-#~ "only a client on the Internet, you should choose a lower level."
-#~ msgstr ""
-#~ "Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
-#~ "bosibl.\n"
-#~ "Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
-#~ "derbyn\n"
-#~ "cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw "
-#~ "eich peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-
-#, fuzzy
-#~ msgid "Basic Options"
-#~ msgstr "Dewisiadau"
-
-#, fuzzy
-#~ msgid "Security Checks"
-#~ msgstr "Diogelwch"
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "Rhestr data i'w gynnwys ar CDROM"
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "Dewiswch eich gofod CD"
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-
-#~ msgid "Please check if you want to erase your CDRW before"
-#~ msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-
-#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-#~ msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Dylai'r URL ddechrau gyda 'ftp:'"
-
#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr ""
-#~ "Gwiriwch os ydych am gynnwys\n"
-#~ " cychwyn gosod ar eich CD"
-
-#, fuzzy
-#~ msgid "Windows PDC"
-#~ msgstr "Windows (FAT32)"
-
-#, fuzzy
-#~ msgid "PDC Server Name"
-#~ msgstr "Gweinydd NTP"
-
-#~ msgid ""
-#~ "\n"
-#~ "Welcome to the Printer Setup Wizard\n"
-#~ "\n"
-#~ "This wizard will help you to install your printer(s) connected to this "
-#~ "computer.\n"
+#~ "The first time you try the X configuration, you may not be very "
+#~ "satisfied\n"
+#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
+#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
+#~ "suits you. It will also propose to change it by displaying a list of "
+#~ "valid\n"
+#~ "modes it could find, asking you to select one.\n"
#~ "\n"
-#~ "Please plug in your printer(s) on this computer and turn it/them on. "
-#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-#~ "want to set up your printer(s) now.\n"
-#~ "\n"
-#~ "Note that some computers can crash during the printer auto-detection, "
-#~ "turn off \"Auto-detect printers\" to do a printer installation without "
-#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
-#~ "set up printing on a remote printer if printerdrake does not list it "
-#~ "automatically."
+#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
+#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
+#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
+#~ "modern graphics card. Then choose \"Test again\" to be sure."
#~ msgstr ""
-#~ "\n"
-#~ "Croeso i Ddewin Gosod Argraffydd\n"
-#~ "\n"
-#~ "Bydd y dewin yn eich cynorthwyo i osod eich argraffydd(ion) sy'n "
-#~ "gysylltiedig â'r cyfrifiadur hwn.\n"
-#~ "Cysylltwch yr argraffydd(ion) i'r cyfrifiadur a'i(u) troi mlaen. Cliciwch "
-#~ "\"Nesaf\" pan rydych yn barod, ac ar \"Diddymu\"pan nad ydych am osod "
-#~ "eich argraffydd(ion) ar hyn o bryd.\n"
-#~ "\n"
-#~ "Sylwch fod rhai cyfrifiaduron yn medru methu yn ystod awto ganfod "
-#~ "argraffydd, diffoddwch \"Awto ganfod argraffyddion\" i osod argraffydd "
-#~ "heb awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am "
-#~ "osod argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
-
-#~ msgid "Auto-Detection of Printers"
-#~ msgstr "Awto ganfod Argraffyddion"
+#~ "Efallai na fyddwch yn fodlon iawn gyda dagosiad ffurfweddiad X y tro\n"
+#~ "cyntaf fyddwch yn ei ddefnyddio (sgrin yn rhy fach, i un ochr, ag ati)\n"
+#~ "Felly mae DrakX yn gofyn i chi os yw'r ffurfweddiad yn iawn. Bydd\n"
+#~ "hefyd yn cynnig ei newid drwy gynnig restr o foddau dilys daeth o hyd\n"
+#~ "iddynt, i chi gael dewis un.\n"
+#~ " \n"
+#~ "Os nad ydych yn medru cael X i weithio, dewiswch \" Newid cerdyn graffig"
+#~ "\",\n"
+#~ "dewiswch \"Cerdyn heb ei restri\", ac yna wrth ddewis gwasanaethwr, "
+#~ "dewis\n"
+#~ "\"FBDev\". Mae hwn yn ddewis diogelwch sy'n gweithio gydag unrhyw gerdyn\n"
+#~ "graffig modern. Dewiswch \" Profwch eto\" i fod yn siwr."
+
+#~ msgid "Internet and Messaging"
+#~ msgstr "Y Rhygnrwyd a Negesu"
+
+#~ msgid "Multimedia and Graphics"
+#~ msgstr "Amlgyfrwng a Graffigau"
#~ msgid ""
-#~ "Printerdrake is able to auto-detect your locally connected parallel and "
-#~ "USB printers for you, but note that on some systems the auto-detection "
-#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
-#~ "it ON YOUR OWN RISK!\n"
-#~ "\n"
-#~ "Do you really want to get your printers auto-detected?"
+#~ "Mandrake Linux 8.2 provides 11 different graphical desktop environments "
+#~ "and window managers to choose from including GNOME 1.4, KDE 2.2.2, Window "
+#~ "Maker 0.8, and the rest"
#~ msgstr ""
-#~ "Mae Printerdrake yn medru awto ganfod eich argraffyddion paralel ac USB "
-#~ "lleol, ond sylwch fod awto ganfod yn MEDRU RHEWI EICH SYSTEM AC ARWAIN AT "
-#~ "SYSTEMAU FFEIL LLWGR! Gwnewch hyn AR EICH MENTER EICH HUN!\n"
-#~ "\n"
-#~ "Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
+#~ "Mae Mandrake Linux 8.2 yn darparu 11 amgylchedd penbwrdd graffigol a "
+#~ "rheolwyr ffenestri gwahanol i ddewis ohonynt gan gynnwys Gnome 1.4, KDE "
+#~ "2.2.2., Window Maker 0.8, a'r gweddill"
-#~ msgid "Set up printer manually"
-#~ msgstr "Gosod argraffydd gyda llaw"
+#~ msgid "Server Software"
+#~ msgstr "Meddalwedd Gwasanethwyr"
-#~ msgid ""
-#~ "Network printers can only be installed after the installation. Choose "
-#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Dim ond ar ôl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
-#~ "Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli "
-#~ "Mandrake"
+#~ msgid "MandrakeCampus"
+#~ msgstr "MandrakeCampus"
#~ msgid ""
-#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-#~ "\", and click \"Add a new printer\" again."
+#~ "Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
+#~ "provides free Linux training, as well as a way to test your progress, at "
+#~ "MandrakeCampus -- our online training center"
#~ msgstr ""
-#~ "I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
-#~ "Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
+#~ "Hoffech chi ddysgu Linux yn syml, yn gyflym, ac am ddim? Mae MandrakeSoft "
+#~ "yn darparu hyfforddiant ar Linux, yn ogystal â ffordd i fesur eich "
+#~ "cynnydd, yn MandrakeCampus - ein canolfan hyfforddiant ar-lein"
-#, fuzzy
#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
-#~ "LaserJet 2200?"
+#~ "Quality support from the Linux Community, and from MandrakeSoft, is just "
+#~ "around the corner. And if you're already a Linux veteran, become an "
+#~ "\"Expert\" and share your knowledge at our support website"
#~ msgstr ""
-#~ "A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
-#~ "PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-
-#~ msgid "Installing HPOJ package..."
-#~ msgstr "Gosod pecynnau HPOJ"
+#~ "Mae cefnogaeth werthfawr gan Gymuned Linux, a chan MandrakeSoft i'w gael "
+#~ "yn hwylus. Ac os ydych yn hen law ar Linux, cewch fod yn \"Arbenigwr\" a "
+#~ "rhannu eich gwybodaeth ar ein safle cefnogi"
-#~ msgid "Checking device and configuring HPOJ..."
-#~ msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-
-#, fuzzy
-#~ msgid "Installing SANE packages..."
-#~ msgstr "Gosod pecynnau SANE"
-
-#, fuzzy
-#~ msgid "Installing mtools packages..."
-#~ msgstr "Gosod pecynnau..."
-
-#~ msgid "Scanning on your HP multi-function device"
-#~ msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#, fuzzy
-#~ msgid "Photo memory card access on your HP multi-function device"
-#~ msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#~ msgid "Making printer port available for CUPS..."
-#~ msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-
-#~ msgid "Control Center"
-#~ msgstr "Canolfan Rheoli"
-
-#~ msgid "Choose the tool you want to use"
-#~ msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-
-#~ msgid "Configure the way the system will alert you"
-#~ msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
-
-#~ msgid "no serial_usb found\n"
-#~ msgstr "neb ganfod serial_usb\n"
-
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "Monitor heb ei ffurfweddu"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "Cydraniad heb ei ddewis eto"
+#~ msgid "MandrakeConsulting"
+#~ msgstr "MandrakeConsulting"
#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
+#~ "For all of your IT projects, our consultants are ready to analyze your "
+#~ "requirements and offer a customized solution. Benefit from MandrakeSoft's "
+#~ "vast experience as a Linux producer to provide a true IT alternative for "
+#~ "your business organization"
#~ msgstr ""
-#~ "\n"
-#~ "ceisiwch newid rhai paramedrau"
-
-#~ msgid "An error occurred:"
-#~ msgstr "Digwyddodd gwall:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Gadael mewn %d eiliad"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "Ydi'r gosodiad hwn yn gywir?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "Gwasanaethwr XFree86: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Dangos y cyfan"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "Yn parataoi cyfluniad X-Window"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "Beth ydych eisiau ei wneud?"
+#~ "Ar gyfer eich holl brojectau TG, mae ein hymgynghorwyr ar gael i "
+#~ "ddadansoddi eich anghenion a chynnig atebion unigryw i chi. Medrwch "
+#~ "fanteisio ar brofiad eang MandrakeSoft fel cynhyrchydd Linux i ddarparu "
+#~ "ateb TG gwell i'ch busnes."
-#~ msgid "Change Monitor"
-#~ msgstr "Newid Monitor"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Newid cerdyn Graffeg"
-
-#~ msgid "Change Server options"
-#~ msgstr "Dewisiadau newid Gwasanaethwr"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Newid Cydraniad"
-
-#~ msgid "Show information"
-#~ msgstr "Dangos gwybodaeth"
-
-#~ msgid "Test again"
-#~ msgstr "Profi eto"
-
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
-#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
-#~ "yet for your device. More information you will find in the \"/usr/share/"
-#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
-#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
-#~ "installed.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-#~ "sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ..."
-#~ "\".. Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei "
-#~ "gynnal eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil "
-#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes "
-#~ "gennych HP LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis "
-#~ "sganio wedi ei osod mae modd sganio.\n"
-#~ "Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
-
-#~ msgid "Use FTP with daemon"
-#~ msgstr "Defnyddiwch FTP gyda daemon"
-
-#~ msgid "Package List to Install"
-#~ msgstr "Rhestr Pecynnau i'w Gosod"
-
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Gosod y lefel diogelwch"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "Dewiswch gerdyn graffig"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "Dewiswch yrrwr X"
-
-#~ msgid "X driver"
-#~ msgstr "Gyrrwr X"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
+#~ msgid "MandrakeStore"
+#~ msgstr "MandrakeStore"
#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
-
-#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
+#~ "For more information on MandrakeSoft's Professional Services and "
+#~ "commercial offerings, please see the following web page:"
#~ msgstr ""
-#~ "Os hoffech chi osod llai na'r maint hwn\n"
-#~ "dewiswch canran y pecynnau i'w gosod.\n"
-#~ "\n"
-#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-#~ "isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
-
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
-#~ "\n"
-#~ "Os hoffech osod llai na hyn,\n"
-#~ "dewiswch canran y pecynnau rydych am eu gosod.\n"
-#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-#~ "isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
-#~ "y mae modd."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
-
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Cyfanswm y pecynnau i'w gosod"
+#~ "Am ragor o wybodaeth ar Wasanaethau Profesiynol a chynigion masnachol "
+#~ "MandrakeSoft, gwelwch y dudalen we ganlynol:"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index d207d57f4..2189f168f 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -7,9 +7,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakbootdisk 0.43\n"
-"POT-Creation-Date: 2002-08-21 15:44+0200\n"
-"PO-Revision-Date: 2002-08-17 15:07+0200\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-09-02 20:14+0200\n"
+"PO-Revision-Date: 2002-08-24 15:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
@@ -52,19 +52,19 @@ msgstr "32 Mb"
msgid "64 MB or more"
msgstr "64 Mb eller mere"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
msgstr "Vælg en X-server"
-#: ../../Xconfig/card.pm_.c:201
+#: ../../Xconfig/card.pm_.c:203
msgid "X server"
msgstr "X-server"
-#: ../../Xconfig/card.pm_.c:228
+#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
msgstr "Flerskærms-konfiguration"
-#: ../../Xconfig/card.pm_.c:229
+#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,27 +72,27 @@ msgstr ""
"Dit system understøtter konfiguration af flere skærme\n"
"Hvad vil du gøre?"
-#: ../../Xconfig/card.pm_.c:284
+#: ../../Xconfig/card.pm_.c:286
msgid "Select the memory size of your graphics card"
msgstr "Vælg hukommelsesmængde for dit grafikkort"
-#: ../../Xconfig/card.pm_.c:345
+#: ../../Xconfig/card.pm_.c:347
msgid "XFree configuration"
msgstr "XFree konfiguration"
-#: ../../Xconfig/card.pm_.c:347
+#: ../../Xconfig/card.pm_.c:349
msgid "Which configuration of XFree do you want to have?"
msgstr "Hvilken konfiguration af XFree ønsker du?"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:381
msgid "Configure all heads independently"
msgstr "Konfigurér alle skærme uafhængigt"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:382
msgid "Use Xinerama extension"
msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfig/card.pm_.c:384
+#: ../../Xconfig/card.pm_.c:386
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurér kun kort \"%s\"%s"
@@ -103,13 +103,13 @@ msgstr "Konfigurér kun kort \"%s\"%s"
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfig/card.pm_.c:412
+#: ../../Xconfig/card.pm_.c:413
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,18 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understøttelse med XFree %s."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
+#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfig/card.pm_.c:425
+#: ../../Xconfig/card.pm_.c:426
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"ned.\n"
"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,52 +151,53 @@ msgstr ""
"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
"ned."
-#: ../../Xconfig/card.pm_.c:451
+#: ../../Xconfig/card.pm_.c:452
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skærmdriver)"
-#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
-#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
msgid "Custom"
msgstr "Tilpasset"
-#: ../../Xconfig/main.pm_.c:104
+#: ../../Xconfig/main.pm_.c:102
msgid "Graphic Card"
msgstr "Grafikkort"
-#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
msgid "Monitor"
msgstr "Skærm"
-#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Opløsning"
-#: ../../Xconfig/main.pm_.c:114
+#: ../../Xconfig/main.pm_.c:113
msgid "Test"
msgstr "Afprøv"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
-#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
-#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
-#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
-#: ../../standalone/drakbackup_.c:3438
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
+#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
+#: ../../standalone/drakbackup_.c:4086
msgid "Ok"
msgstr "O.k."
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afslut"
@@ -213,27 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:91
+#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
msgstr "Vælg en skærmtype"
-#: ../../Xconfig/monitor.pm_.c:95
+#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "Standard"
-#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
msgstr "Producent"
-#: ../../Xconfig/monitor.pm_.c:107
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
+"Undersøgning for Plug'n Play mislykkedes. Vælg venligst den rigtige skærm"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -257,11 +259,11 @@ msgstr ""
"Hvis du er i tvivl, bør du vælge en opsætning, som du med SIKKERHED ved\n"
"at din skærm kan klare."
-#: ../../Xconfig/monitor.pm_.c:119
+#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfig/monitor.pm_.c:120
+#: ../../Xconfig/monitor.pm_.c:122
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
@@ -298,36 +300,40 @@ msgstr "Vælg opløsning og farvedybde"
msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
-#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
-#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
+#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
-#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
-#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
-#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
-#: ../../standalone/drakbackup_.c:3504 ../../standalone/drakconnect_.c:115
-#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
-#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
-#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfloppy_.c:383
-#: ../../standalone/drakfont_.c:970 ../../standalone/drakgw_.c:598
-#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
-#: ../../standalone/tinyfirewall_.c:64
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
+#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
+#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
+#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
+#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
+#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
+#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
+#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
+#: ../../standalone/logdrake_.c:526
msgid "Cancel"
msgstr "Annullér"
-#: ../../Xconfig/test.pm_.c:26
+#: ../../Xconfig/test.pm_.c:30
+msgid "Test of the configuration"
+msgstr "Test konfigurationen"
+
+#: ../../Xconfig/test.pm_.c:31
msgid "Do you want to test the configuration?"
msgstr "Ønsker du at afprøve konfigurationen?"
-#: ../../Xconfig/test.pm_.c:26
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
+#: ../../Xconfig/test.pm_.c:31
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -414,7 +420,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
"Grafikkortet ser ud til at have en TV-UD-forbindelse.\n"
-"Den kan konfigureres så den fungerer med billeddbuffer.\n"
+"Den kan konfigureres så den fungerer med billedbuffer\n"
"\n"
"Til dette skal du tilslutte grafikkortet til tv'et inden du starter "
"maskinen.\n"
@@ -470,26 +476,22 @@ msgstr "Start fra DOS/Windows (loadlin)"
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:158 ../../any.pm_.c:190
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:159 ../../any.pm_.c:191
+#: ../../any.pm_.c:160 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: ../../any.pm_.c:161
+#: ../../any.pm_.c:162
msgid "Bootloader installation"
msgstr "Systemopstarterens installation"
-#: ../../any.pm_.c:163 ../../any.pm_.c:193
+#: ../../any.pm_.c:164 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:164
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (virker ikke med gamle BIOS'er)"
-
#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakt"
@@ -506,16 +508,17 @@ msgstr "Videoindstilling"
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: ../../any.pm_.c:170 ../../any.pm_.c:786
+#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
-#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
+#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
+#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:171 ../../any.pm_.c:787
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../any.pm_.c:171 ../../any.pm_.c:789
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Password (again)"
msgstr "Adgangskode (igen)"
@@ -551,14 +554,14 @@ msgstr ""
"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../diskdrake/interactive.pm_.c:1180
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../diskdrake/interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1091
msgid "Please try again"
msgstr "Prøv igen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:1091
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
@@ -608,16 +611,16 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
-#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
+#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tilføj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../standalone/drakbackup_.c:2696
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
msgid "Done"
msgstr "Færdig"
@@ -629,7 +632,7 @@ msgstr "Ændr"
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
msgid "Linux"
msgstr "Linux"
@@ -723,13 +726,13 @@ msgstr "Har du én til?"
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grænsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:283
+#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
@@ -832,37 +835,47 @@ msgstr "tillad \"su\""
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:754
+#, fuzzy
+msgid "access to network tools"
+msgstr "adgang til rpm-værktøjer"
+
+#: ../../any.pm_.c:755
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "adgang til rpm-værktøjer"
+
+#: ../../any.pm_.c:760
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:765
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:766
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:767
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet må kun indeholde små bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:768
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:769
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:773
msgid "Add user"
msgstr "Tilføj bruger"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:774
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +884,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:775
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:784
+#: ../../any.pm_.c:786
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
-#: ../../printerdrake.pm_.c:857
+#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:788
+#: ../../any.pm_.c:790
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:792
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:817
+#: ../../any.pm_.c:819
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:818
+#: ../../any.pm_.c:820
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,19 +917,19 @@ msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på.\n"
"Ønsker du at bruge denne finesse?"
-#: ../../any.pm_.c:822
+#: ../../any.pm_.c:824
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: ../../any.pm_.c:823
+#: ../../any.pm_.c:825
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: ../../any.pm_.c:838
+#: ../../any.pm_.c:840
msgid "Please choose a language to use."
msgstr "Vælg det sprog, der skal bruges."
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:842
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -924,35 +937,35 @@ msgid ""
msgstr ""
"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:974
+#: ../../any.pm_.c:977
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal være installeret. Ønsker du at installere den?"
-#: ../../any.pm_.c:987
+#: ../../any.pm_.c:990
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
+#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krævet pakke %s mangler"
-#: ../../any.pm_.c:1001
+#: ../../any.pm_.c:1004
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -965,11 +978,11 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:1015
+#: ../../any.pm_.c:1018
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1017
+#: ../../any.pm_.c:1020
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -977,31 +990,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: ../../any.pm_.c:1068
+#: ../../any.pm_.c:1071
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1069
+#: ../../any.pm_.c:1072
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1074
msgid "High"
msgstr "Høj"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1075
msgid "Higher"
msgstr "Højere"
-#: ../../any.pm_.c:1073
+#: ../../any.pm_.c:1076
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1079
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1012,7 +1025,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1082
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1020,7 +1033,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netværksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1083
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1028,7 +1041,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1081
+#: ../../any.pm_.c:1084
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1036,7 +1049,7 @@ msgstr ""
"Der er allerede nogle begrænsninger, og flere automatiske kontroller bliver "
"kørt hver nat."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1085
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1050,7 +1063,7 @@ msgstr ""
"forbindelser fra mange klienter. Bemærk: hvis din maskine kun er en klient "
"på internettet bør du hellere vælge et lavere niveau."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1088
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1058,29 +1071,29 @@ msgstr ""
"Baseret på det foregående niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu på deres højeste niveau."
-#: ../../any.pm_.c:1091
+#: ../../any.pm_.c:1094
msgid "DrakSec Basic Options"
msgstr "Basale valgmuligheder for DrakSec"
-#: ../../any.pm_.c:1092
+#: ../../any.pm_.c:1095
msgid "Please choose the desired security level"
msgstr "Vælg det ønskede sikkerhedniveau"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1098
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1097
+#: ../../any.pm_.c:1100
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1101
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverløb og formatstrenge."
-#: ../../any.pm_.c:1099
+#: ../../any.pm_.c:1102
msgid "Security Administrator (login or email)"
msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
@@ -1124,57 +1137,57 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:932
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvælgeren!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:935
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vælge mellem mulighederne."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:938
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:941
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne før opstart, eller 'c' for en kommandolinie."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:944
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhævede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:951
+#: ../../bootloader.pm_.c:948
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1051
+#: ../../bootloader.pm_.c:1048
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1053
+#: ../../bootloader.pm_.c:1050
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1072
+#: ../../bootloader.pm_.c:1069
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: ../../bootlook.pm_.c:45
+#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "endnu er ingen hjælp implementeret.\n"
@@ -1182,8 +1195,8 @@ msgstr "endnu er ingen hjælp implementeret.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
-#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
@@ -1193,7 +1206,7 @@ msgstr "/_Fil"
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<Ctrl>Q"
@@ -1234,54 +1247,60 @@ msgstr "Installér temaer"
msgid "Display theme under console"
msgstr "Visningstema under konsol"
-#: ../../bootlook.pm_.c:166
+#: ../../bootlook.pm_.c:145
+#, fuzzy
+msgid "Create new theme"
+msgstr "Opret en ny partition"
+
+#: ../../bootlook.pm_.c:169
msgid "Can't create Bootsplash preview"
msgstr "Kan ikke lave smugkig af opstartsskærm"
-#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
-#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
-#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
-#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
-#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
+#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
+#: ../../standalone/draksplash_.c:32
msgid "Error"
msgstr "Fejl"
-#: ../../bootlook.pm_.c:183
+#: ../../bootlook.pm_.c:186
#, c-format
msgid "Backup %s to %s.old"
msgstr "Sikkerhedskopiér %s til %s.old"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm_.c:187
msgid "unable to backup lilo message"
-msgstr "kunne ikke lave sikkerhedskpoi af lilo-besked"
+msgstr "kunne ikke lave sikkerhedskopi af lilo-besked"
-#: ../../bootlook.pm_.c:186
+#: ../../bootlook.pm_.c:189
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiér %s til %s"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190
msgid "can't change lilo message"
msgstr "kan ikke ændre lilo-besked"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:193
msgid "Lilo message not found"
msgstr "Lilo-besked ikke fundet"
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:220
+#: ../../bootlook.pm_.c:223
#, c-format
msgid "Write %s"
msgstr "Skriv %s"
-#: ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:225
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1289,17 +1308,17 @@ msgstr ""
"Kan ikke skrive /etc/sysconfig/bootsplash\n"
"Fil ikke fundet."
-#: ../../bootlook.pm_.c:233
+#: ../../bootlook.pm_.c:236
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Kan ikke opstarte mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:239
#, c-format
-msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
-msgstr "Lav initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:245
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1308,23 +1327,24 @@ msgstr ""
"Start \"lilo\" som root på kommandolinjen for at færdiggøre installationen "
"af Lilo-tema."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:249
msgid "Relaunch 'lilo'"
msgstr "Genstart 'lilo'"
-#: ../../bootlook.pm_.c:248
+#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "Bemærk"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Problemfri installation af temaer for LiLo- og opstartsskærm"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:252
msgid "Theme installation failed!"
msgstr "Installation af tema mislykkedes"
-#: ../../bootlook.pm_.c:258
+#: ../../bootlook.pm_.c:261
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1333,22 +1353,21 @@ msgstr ""
"Du bruger for øjeblikket % som opstartshåndterer.\n"
"Klik på Konfigurér for at starte opsætnings-vejlederen."
-#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
-#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
-#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:58
+#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
+#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
+#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurér"
-#: ../../bootlook.pm_.c:267
+#: ../../bootlook.pm_.c:270
msgid "Splash selection"
msgstr "Valg af opstartsskærm"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:273
msgid "Themes"
msgstr "Temaer"
-#: ../../bootlook.pm_.c:272
+#: ../../bootlook.pm_.c:275
msgid ""
"\n"
"Select a theme for\n"
@@ -1362,44 +1381,44 @@ msgstr ""
"du kan vælge\n"
"dem separat"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:278
msgid "Lilo screen"
msgstr "Lilo-skærm"
-#: ../../bootlook.pm_.c:279
+#: ../../bootlook.pm_.c:283
msgid "Bootsplash"
msgstr "Opstartsskærm"
-#: ../../bootlook.pm_.c:314
+#: ../../bootlook.pm_.c:318
msgid "System mode"
msgstr "Systemtilstand"
-#: ../../bootlook.pm_.c:316
+#: ../../bootlook.pm_.c:320
msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
-#: ../../bootlook.pm_.c:321
+#: ../../bootlook.pm_.c:325
msgid "No, I don't want autologin"
msgstr "Nej, jeg ønsker ikke automatisk login"
-#: ../../bootlook.pm_.c:323
+#: ../../bootlook.pm_.c:327
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg ønsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
-#: ../../standalone/drakbackup_.c:4290 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
+#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:521
+#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
msgid "OK"
msgstr "O.k."
-#: ../../bootlook.pm_.c:403
+#: ../../bootlook.pm_.c:407
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan ikke læse /etc/inittab: %s"
@@ -1496,45 +1515,50 @@ msgstr "Østrig"
msgid "United States"
msgstr "U.S.A."
-#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
-#: ../../detect_devices.pm_.c:803
-msgid "Unknown Model"
-msgstr "Ukendt model"
-
#: ../../diskdrake/dav.pm_.c:23
msgid "New"
msgstr "Ny"
-#: ../../diskdrake/dav.pm_.c:57
+#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Afmontér"
+
+#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montér"
+
+#: ../../diskdrake/dav.pm_.c:61
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/dav.pm_.c:81
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: ../../diskdrake/dav.pm_.c:71
+#: ../../diskdrake/dav.pm_.c:84
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// or https://"
-#: ../../diskdrake/dav.pm_.c:92
+#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
-#: ../../diskdrake/interactive.pm_.c:1079
-#: ../../diskdrake/interactive.pm_.c:1153
+#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
@@ -1543,8 +1567,9 @@ msgstr "Valg: %s"
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data først"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
-#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:943
+#: ../../diskdrake/interactive.pm_.c:1009
msgid "Read carefully!"
msgstr "Læs omhyggeligt!"
@@ -1582,10 +1607,15 @@ msgid "Please click on a partition"
msgstr "Klik på en partition"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:465
msgid "Details"
msgstr "Detaljer"
+#: ../../diskdrake/hd_gtk.pm_.c:252
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ingen printer fundet!"
+
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
@@ -1610,13 +1640,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1105
msgid "Empty"
msgstr "Tom"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
-#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
+#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
msgid "Other"
msgstr "Andet"
@@ -1624,12 +1654,12 @@ msgstr "Andet"
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:402
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:531 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
@@ -1639,7 +1669,7 @@ msgstr "Type"
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:389
msgid "Delete"
msgstr "Slet"
@@ -1647,79 +1677,79 @@ msgstr "Slet"
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' først"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:518
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Efter type-ændring af partition %s vil alle data på denne partition gå tabt"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose a partition"
msgstr "Vælg en partition"
-#: ../../diskdrake/interactive.pm_.c:173
+#: ../../diskdrake/interactive.pm_.c:174
msgid "Choose another partition"
msgstr "Vælg en ny partition"
-#: ../../diskdrake/interactive.pm_.c:198
+#: ../../diskdrake/interactive.pm_.c:199
msgid "Exit"
msgstr "Afslut"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: ../../diskdrake/interactive.pm_.c:220
+#: ../../diskdrake/interactive.pm_.c:221
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake/interactive.pm_.c:239
+#: ../../diskdrake/interactive.pm_.c:240
msgid "Continue anyway?"
msgstr "Fortsæt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake/interactive.pm_.c:244
+#: ../../diskdrake/interactive.pm_.c:245
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake/interactive.pm_.c:249
+#: ../../diskdrake/interactive.pm_.c:250
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Auto allocate"
msgstr "Allokér automatisk"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake/interactive.pm_.c:261
+#: ../../diskdrake/interactive.pm_.c:263
#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mere"
-#: ../../diskdrake/interactive.pm_.c:264
+#: ../../diskdrake/interactive.pm_.c:267
msgid "Hard drive information"
msgstr "Drev-information"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:298
msgid "All primary partitions are used"
msgstr "Alle primære partitioner er brugt"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:299
msgid "I can't add any more partition"
msgstr "Kan ikke tilføje flere partitioner"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:300
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1727,31 +1757,31 @@ msgstr ""
"For at du kan få flere partitioner, skal du slette én, så der kan oprettes "
"en udvidet partition"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:311
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:308
+#: ../../diskdrake/interactive.pm_.c:312
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:310
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Reload partition table"
msgstr "Genindlæs partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:315
+#: ../../diskdrake/interactive.pm_.c:319
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:328 ../../diskdrake/interactive.pm_.c:348
msgid "Select file"
msgstr "Vælg fil"
-#: ../../diskdrake/interactive.pm_.c:331
+#: ../../diskdrake/interactive.pm_.c:335
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1759,11 +1789,11 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme størrelse\n"
"Fortsæt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:349
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:350
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1771,79 +1801,71 @@ msgstr ""
"Indsæt en diskette i diskettedrevet\n"
"Alle data på disketten vil blive slettet"
-#: ../../diskdrake/interactive.pm_.c:357
+#: ../../diskdrake/interactive.pm_.c:361
msgid "Trying to rescue partition table"
msgstr "Forsøger at redde partitionstabellen"
-#: ../../diskdrake/interactive.pm_.c:363
+#: ../../diskdrake/interactive.pm_.c:367
msgid "Detailed information"
msgstr "Detaljeret information"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:382 ../../diskdrake/interactive.pm_.c:662
msgid "Resize"
msgstr "Størrelsesændring"
-#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/interactive.pm_.c:715
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake/interactive.pm_.c:380
+#: ../../diskdrake/interactive.pm_.c:384
msgid "Format"
msgstr "Formatér"
-#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Montér"
-
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Add to RAID"
msgstr "Tilføj til RAID"
-#: ../../diskdrake/interactive.pm_.c:383
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Add to LVM"
msgstr "Tilføj til LVM"
-#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Afmontér"
-
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:390
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:391
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:392
msgid "Modify RAID"
msgstr "Ændr RAID"
-#: ../../diskdrake/interactive.pm_.c:389
+#: ../../diskdrake/interactive.pm_.c:393
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:433
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake/interactive.pm_.c:431
+#: ../../diskdrake/interactive.pm_.c:436
msgid "Start sector: "
msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
+#: ../../diskdrake/interactive.pm_.c:438 ../../diskdrake/interactive.pm_.c:815
msgid "Size in MB: "
msgstr "Størrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
+#: ../../diskdrake/interactive.pm_.c:439 ../../diskdrake/interactive.pm_.c:816
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: ../../diskdrake/interactive.pm_.c:439
+#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
msgstr "Præference: "
-#: ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1853,33 +1875,33 @@ msgstr ""
"(fordi du er oppe på det maksimale antal primære partitioner)\n"
"Fjern først en primær partition og opret en udvidet partition."
-#: ../../diskdrake/interactive.pm_.c:494
+#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: ../../diskdrake/interactive.pm_.c:519
+#: ../../diskdrake/interactive.pm_.c:529
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:530 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem ønsker du at bruge?"
-#: ../../diskdrake/interactive.pm_.c:526
+#: ../../diskdrake/interactive.pm_.c:536
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:556
+#: ../../diskdrake/interactive.pm_.c:566
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor ønsker du at montere loopback-fil %s?"
-#: ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:567
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor ønsker du at montere partitionen %s?"
-#: ../../diskdrake/interactive.pm_.c:563
+#: ../../diskdrake/interactive.pm_.c:573
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1888,137 +1910,137 @@ msgstr ""
"loopback.\n"
"Fjern loopback først"
-#: ../../diskdrake/interactive.pm_.c:584
+#: ../../diskdrake/interactive.pm_.c:594
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Hvor ønsker du at montere %s?"
-#: ../../diskdrake/interactive.pm_.c:608
+#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets grænser"
-#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
-#: ../../install_interactive.pm_.c:131
+#: ../../diskdrake/interactive.pm_.c:618 ../../diskdrake/interactive.pm_.c:677
+#: ../../install_interactive.pm_.c:133
msgid "Resizing"
msgstr "Ændrer størrelsen"
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:650
msgid "This partition is not resizeable"
msgstr "Størrelsen på denne partition kan ikke ændres"
-#: ../../diskdrake/interactive.pm_.c:645
+#: ../../diskdrake/interactive.pm_.c:655
msgid "All data on this partition should be backed-up"
msgstr "Det bør laves en backup af alle data på denne partition"
-#: ../../diskdrake/interactive.pm_.c:647
+#: ../../diskdrake/interactive.pm_.c:657
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ændring af størrelsen af partition %s vil alle data på denne partition "
"gå tabt"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:662
msgid "Choose the new size"
msgstr "Vælg den nye størrelse"
-#: ../../diskdrake/interactive.pm_.c:653
+#: ../../diskdrake/interactive.pm_.c:663
msgid "New size in MB: "
msgstr "Ny størrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:716
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk ønsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:717
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:708
+#: ../../diskdrake/interactive.pm_.c:718
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor ønsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:711
+#: ../../diskdrake/interactive.pm_.c:721
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake/interactive.pm_.c:728
+#: ../../diskdrake/interactive.pm_.c:738
msgid "Choose an existing RAID to add to"
msgstr "Vælg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
+#: ../../diskdrake/interactive.pm_.c:739 ../../diskdrake/interactive.pm_.c:756
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:744
+#: ../../diskdrake/interactive.pm_.c:754
msgid "Choose an existing LVM to add to"
msgstr "Vælg en eksisterende LVM som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:749
+#: ../../diskdrake/interactive.pm_.c:759
msgid "LVM name?"
msgstr "LVM-navn?"
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:800
msgid "This partition can't be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:813
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake/interactive.pm_.c:809
+#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:822
msgid "File already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vælg en anden fil"
-#: ../../diskdrake/interactive.pm_.c:813
+#: ../../diskdrake/interactive.pm_.c:823
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm_.c:836
+#: ../../diskdrake/interactive.pm_.c:846
msgid "Mount options"
msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm_.c:843
+#: ../../diskdrake/interactive.pm_.c:853
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:917 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "enhed"
-#: ../../diskdrake/interactive.pm_.c:908
+#: ../../diskdrake/interactive.pm_.c:918
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:919
msgid "chunk size"
msgstr "enhedsstørrelse"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:934
msgid "Be careful: this operation is dangerous."
msgstr "Vær forsigtig: denne operation er farlig."
-#: ../../diskdrake/interactive.pm_.c:939
+#: ../../diskdrake/interactive.pm_.c:949
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: ../../diskdrake/interactive.pm_.c:955
+#: ../../diskdrake/interactive.pm_.c:965
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Pakken %s kræves. Ønsker du at installere den?"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -2030,7 +2052,7 @@ msgstr ""
"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
"ikke har brug for /boot"
-#: ../../diskdrake/interactive.pm_.c:973
+#: ../../diskdrake/interactive.pm_.c:983
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2042,7 +2064,7 @@ msgstr ""
"partition. Hvis du ønsker at benytte LILO, skal du oprette en /boot "
"partition indenfor 1024-cylinder grænsen."
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:989
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2052,45 +2074,45 @@ msgstr ""
"Ingen systemopstarter kan håndtere dette uden en /boot partition.\n"
"Så vær omhyggelig med at tilføje en /boot partition"
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1009
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet på disken!"
-#: ../../diskdrake/interactive.pm_.c:1003
+#: ../../diskdrake/interactive.pm_.c:1013
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ændringerne"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1024
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1026
msgid "Formatting"
msgstr "Formaterer"
-#: ../../diskdrake/interactive.pm_.c:1017
+#: ../../diskdrake/interactive.pm_.c:1027
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:1018
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:459
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../diskdrake/interactive.pm_.c:1029
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2099,83 +2121,83 @@ msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../diskdrake/interactive.pm_.c:1051
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1045
+#: ../../diskdrake/interactive.pm_.c:1055
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1049
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1069
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: ../../diskdrake/interactive.pm_.c:1080
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gæt)\n"
-#: ../../diskdrake/interactive.pm_.c:1085
-#: ../../diskdrake/interactive.pm_.c:1093
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1107
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid "Size: %s"
msgstr "Størrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
msgstr "Formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1114
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1115
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1116
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1118
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2184,7 +2206,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2192,27 +2214,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gælder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1122
#, c-format
msgid "Chunk size %s\n"
msgstr "Enhedsstørrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1115
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1118
+#: ../../diskdrake/interactive.pm_.c:1128
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2224,7 +2246,7 @@ msgstr ""
"en driver-partition, du skal\n"
"sandsynligvis lade den være.\n"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../diskdrake/interactive.pm_.c:1131
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2236,58 +2258,62 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1150
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
msgid "Size: %s\n"
msgstr "Størrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1155
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1145
+#: ../../diskdrake/interactive.pm_.c:1156
#, c-format
msgid "on channel %d id %d\n"
msgstr "på kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1175
+#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
msgstr "Krypteringsnøgle for filsystem"
-#: ../../diskdrake/interactive.pm_.c:1176
+#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "Vælg din krypteringsnøgle for filsystemet"
-#: ../../diskdrake/interactive.pm_.c:1179
+#: ../../diskdrake/interactive.pm_.c:1190
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsnøgle er for nem at gætte (skal mindst være på %d tegn)"
-#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../diskdrake/interactive.pm_.c:1191
msgid "The encryption keys do not match"
msgstr "Krypteringsnøglerne stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1183
+#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
msgstr "Krypteringsnøgle"
-#: ../../diskdrake/interactive.pm_.c:1184
+#: ../../diskdrake/interactive.pm_.c:1195
msgid "Encryption key (again)"
msgstr "Krypteringsnøgle (igen)"
@@ -2320,10 +2346,10 @@ msgstr "Hvilket brugernavn"
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-"Intast venligst dit brugernavn, din adgangskode og dit domænenavn for at få "
+"Indtast venligst dit brugernavn, din adgangskode og dit domænenavn for at få "
"adgang til denne vært."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
msgid "Username"
msgstr "Brugernavn"
@@ -2335,23 +2361,23 @@ msgstr "Domæne"
msgid "Search servers"
msgstr "Søg efter servere"
-#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
-#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
+#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
+#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:615
+#: ../../fs.pm_.c:607
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
+#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2368,33 +2394,50 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Jeg kan ikke læse din partitionstabel, den er for ødelagt for mig :( Jeg kan "
+"forsøge fortsat at udblanke dårlige partitioner, ALLE DATA vil gå tabt. Den "
+"anden mulighed er at forbyde DrakX at ændre partitionstabellen. (fejlen er %"
+"s)\n"
+"\n"
+"Er du indforstået med at ødelægge alle partitionerne?\n"
+
+#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: ../../fsedit.pm_.c:473
+#: ../../fsedit.pm_.c:502
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:493
+#: ../../fsedit.pm_.c:522
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:497
+#: ../../fsedit.pm_.c:526
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../fsedit.pm_.c:499
+#: ../../fsedit.pm_.c:528
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bør ligge på rod-filsystemet"
-#: ../../fsedit.pm_.c:501
+#: ../../fsedit.pm_.c:530
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2402,103 +2445,140 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: ../../fsedit.pm_.c:503
+#: ../../fsedit.pm_.c:532
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../fsedit.pm_.c:570
+#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../fsedit.pm_.c:572
+#: ../../fsedit.pm_.c:601
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: ../../fsedit.pm_.c:665
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved åbning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:750
+#: ../../harddrake/sound.pm_.c:155
+msgid "No alternative driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:156
+#, c-format
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:158
+#, fuzzy
+msgid "Sound configuration"
+msgstr "CUPS-Konfiguration"
+
+#: ../../harddrake/sound.pm_.c:159
+#, c-format
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)"
msgstr ""
-"Der er opstået en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
-"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
-"til problemet"
-#: ../../fsedit.pm_.c:773
-msgid "You don't have any partitions!"
-msgstr "Du har ikke nogen partitioner!"
+#: ../../harddrake/sound.pm_.c:162
+#, fuzzy
+msgid "Driver:"
+msgstr "Drivprogram"
+
+#: ../../harddrake/sound.pm_.c:173
+msgid "No known driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:177
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Ukendt model"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/sound.pm_.c:178
+#, c-format
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:16
msgid "Model"
msgstr "Model"
-#: ../../harddrake/ui.pm_.c:15
+#: ../../harddrake/ui.pm_.c:16
msgid "hard disk model"
msgstr "Disk-model"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "Channel"
msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:16
+#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
msgstr "EIDE/SCSI-kanal"
-#: ../../harddrake/ui.pm_.c:18
+#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:19
+#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr "Dette er den fysiske bus som enheden er tilsuttet (fx PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:20
+#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "modulet i GNU/Linux-kernen som håndterer denne enhed"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
msgstr "Medieklasse"
-#: ../../harddrake/ui.pm_.c:21
+#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
msgstr "Klasse af maskinenhed"
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
+#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
msgstr "Beskrivelse"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
msgstr "Dette felt beskriver enheden"
-#: ../../harddrake/ui.pm_.c:24
+#: ../../harddrake/ui.pm_.c:25
msgid "Bus identification"
msgstr "Bus-identifikation"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:26
msgid ""
-"- PCI and USB devices : this list the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
"- PCI- og USB-enheder: dette viser producenten, enheden, underproducent og "
"underenhed PCI/USB id'er"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Plads på bussen"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:29
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2509,48 +2589,57 @@ msgstr ""
"- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
"- scsi-enheder: scsi-bussen og scsi enheds-id'er"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:32
msgid "Old device file"
msgstr "Gammel enhedsfil"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
msgstr "gammel statisk enhedsnavn brugt i dev-pakke"
-#: ../../harddrake/ui.pm_.c:33
+#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
msgstr "Ny devfs-enhed"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "Nyt dynamisk enhedsnavn genereret af den kørende kernes devfs"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
msgstr "Antal knapper"
-#: ../../harddrake/ui.pm_.c:36
+#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
msgstr "navnet på producenten af enheden"
-#: ../../harddrake/ui.pm_.c:60
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativ testside (A4)"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Afslut"
-#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
-#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
+#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hjælp"
-#: ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:65
msgid "/_Help..."
msgstr "/_Hjælp..."
-#: ../../harddrake/ui.pm_.c:63
+#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
msgstr "Harddrake hjælp"
-#: ../../harddrake/ui.pm_.c:64
+#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
@@ -2558,15 +2647,15 @@ msgstr ""
"Beskrivelse af felterne:\n"
"\n"
-#: ../../harddrake/ui.pm_.c:68
+#: ../../harddrake/ui.pm_.c:71
msgid "/_About..."
msgstr "/_Om..."
-#: ../../harddrake/ui.pm_.c:69
+#: ../../harddrake/ui.pm_.c:72
msgid "About Harddrake"
msgstr "Om Harddrake"
-#: ../../harddrake/ui.pm_.c:70
+#: ../../harddrake/ui.pm_.c:73
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2574,51 +2663,51 @@ msgstr ""
"Dette er HardDrake, et Mandrake-værktøj for konfigurering af maskinel.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:71
+#: ../../harddrake/ui.pm_.c:74
msgid "Author:"
msgstr "Forfatter:"
-#: ../../harddrake/ui.pm_.c:83
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 version "
-#: ../../harddrake/ui.pm_.c:91
+#: ../../harddrake/ui.pm_.c:103
msgid "Detected hardware"
msgstr "Fundet maskinel"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:105
+msgid "Information"
+msgstr "Informationer"
+
+#: ../../harddrake/ui.pm_.c:108
msgid "Configure module"
msgstr "Konfigurér modul"
-#: ../../harddrake/ui.pm_.c:92
-msgid "Informations"
-msgstr "Informationer"
-
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:109
msgid "Run config tool"
msgstr "Kør konfigurationsværktøj"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:113
msgid "Detection in progress"
msgstr "Søgning udføres"
-#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
+#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "Vent venligst"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "primary"
msgstr "primær"
-#: ../../harddrake/ui.pm_.c:139
+#: ../../harddrake/ui.pm_.c:156
msgid "secondary"
msgstr "sekundær"
-#: ../../harddrake/ui.pm_.c:176
+#: ../../harddrake/ui.pm_.c:197
msgid "You can configure each parameter of the module here."
msgstr "Du kan konfigurere hver parameter for modulet her."
-#: ../../harddrake/ui.pm_.c:192
+#: ../../harddrake/ui.pm_.c:213
#, c-format
msgid "Running \"%s\" ..."
msgstr "Kører \"%s\" ..."
@@ -2652,15 +2741,15 @@ msgstr ""
"korttyper her. Bare vælg dit tv-korts parametre om nødvendigt"
#: ../../harddrake/v4l.pm_.c:213
-msgid "Card model :"
+msgid "Card model:"
msgstr "Kortmodel:"
#: ../../harddrake/v4l.pm_.c:214
-msgid "Tuner type :"
+msgid "Tuner type:"
msgstr "Tuner-type:"
#: ../../harddrake/v4l.pm_.c:215
-msgid "Number of capture buffers :"
+msgid "Number of capture buffers:"
msgstr "Antal fangningsbuffere:"
#: ../../harddrake/v4l.pm_.c:215
@@ -2668,11 +2757,11 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr "Antal fangningsbuffere for mmap-fangning"
#: ../../harddrake/v4l.pm_.c:217
-msgid "PLL setting :"
+msgid "PLL setting:"
msgstr "PLL-opsætning:"
#: ../../harddrake/v4l.pm_.c:218
-msgid "Radio support :"
+msgid "Radio support:"
msgstr "Radio-understøttelse:"
#: ../../harddrake/v4l.pm_.c:218
@@ -2684,22 +2773,22 @@ msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
+"you add here will not be entitled to change anything except their own files\n"
+"and their own configuration. You will have to create at least one regular\n"
+"user for yourself. That account is where you should log in for routine use.\n"
+"Although it is very practical to log in as \"root\" everyday, it may also\n"
+"be very dangerous! The slightest mistake could mean that your system would\n"
+"not work any more. If you make a serious mistake as a regular user, you may\n"
+"only lose some information, but not the entire system.\n"
"\n"
"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"'\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
"\n"
"If you click on \"Accept user\", you can then add as many as you want. Add\n"
"a user for each one of your friends: your father or your sister, for\n"
@@ -2835,7 +2924,7 @@ msgid ""
"to have a graphical workstation!\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
+"text about that group. If you unselect all groups when performing a regular\n"
"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
@@ -2909,10 +2998,10 @@ msgstr ""
#: ../../help.pm_.c:128
msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right. When your selection is finished, click the \"Install\" button which\n"
@@ -2980,11 +3069,11 @@ msgstr ""
#: ../../help.pm_.c:164
msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
"simply click the \"Cancel\" button.\n"
"\n"
"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
@@ -3062,7 +3151,7 @@ msgstr ""
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
"hardware clock is the same as the system clock. This is useful when the\n"
"machine is hosting another operating system like Windows.\n"
"\n"
@@ -3105,7 +3194,9 @@ msgid ""
"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
"will proceed to the next step. If you cannot see the message, it simply\n"
"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
+"after 10 seconds, restoring the screen. Refer then to the Video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
"X (for X-vinduessystem) er hjertet af GNU/Linux' grafiske grænseflade, "
"hvilket alle de grafiske miljøer (KDE, Gnome, AfterStep, WindowMaker)...), "
@@ -3126,30 +3217,7 @@ msgstr ""
"simpelthen at konfigurationen var forkert, og testen vil automatisk "
"afsluttes efter 10 sekunder, og genfremvise skærmen."
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Måske er du ikke særligt tilfreds med det første forsøg med X konfigurering "
-"(skærmen for lille, flyttet til venstre eller højre...). Derfor vil DrakX "
-"spørge dig om konfigurationen passer dig, selvom X starter op korrekt. DrakX "
-"vil også foreslå ændringer ved at vise en liste af gyldige tilstande som den "
-"kunne finde, og så bede dig om at vælge én. \n"
-"Som en sidste udvej, hvis du stadig ikke kan få X til at virke, vælg da Ændr "
-"grafikkort, vælg Ukendt kort, og når du bliver spurgt om hvilken server du "
-"vil have, vælg da FBDev. Dette er en fejlsikker mulighed som virker med alle "
-"moderne grafikkort. Vælg derefter Test igen for at være sikker."
-
-#: ../../help.pm_.c:249
+#: ../../help.pm_.c:239
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
@@ -3163,7 +3231,8 @@ msgstr ""
"maskine skal bruges som server, eller hvis ikke lykkedes dig at få skærmen "
"konfigureret."
-#: ../../help.pm_.c:256
+#: ../../help.pm_.c:246
+#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3183,10 +3252,10 @@ msgid ""
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
"Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan få fat i "
"denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
@@ -3212,7 +3281,7 @@ msgstr ""
"ikke har brug for. Du behøver ikke formatere den, da drakX vil overskrive "
"hele disketten."
-#: ../../help.pm_.c:280
+#: ../../help.pm_.c:270
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -3245,7 +3314,9 @@ msgid ""
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
"\n"
" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
"is installed on your hard drive and takes all the space available on it,\n"
@@ -3278,7 +3349,9 @@ msgid ""
" * \"Expert mode\": choose this option if you want to manually partition\n"
"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing."
+"know what you are doing. To know how do use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
+"Guide''''"
msgstr ""
"Nu skal du vælge hvor på din harddisk du vil installere dit Mandrake Linux-"
"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
@@ -3344,7 +3417,7 @@ msgstr ""
"alle dine data. Så lad være med at vælge den løsning med mindre du véd hvad "
"du gør."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:341
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
@@ -3406,7 +3479,7 @@ msgstr ""
"(*) Du skal have en diskette formateret til FAT (denne oprettes i GNU/Linux "
"ved at skive \"mformat a:\")"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:372
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3457,7 +3530,7 @@ msgstr ""
"Klik på 'Avanceret' for at vælge partitioner som du ønsker at tjekke for "
"dårlige blokke."
-#: ../../help.pm_.c:404
+#: ../../help.pm_.c:398
msgid ""
"Your new Mandrake Linux operating system is currently being installed.\n"
"Depending on the number of packages you will be installing and the speed of\n"
@@ -3471,12 +3544,12 @@ msgstr ""
"kan dette tage fra nogen få minutter til en del længere tid. \n"
"Hav venligst tålmodighed med dette."
-#: ../../help.pm_.c:412
+#: ../../help.pm_.c:406
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bugs may have\n"
"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
+"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
@@ -3498,7 +3571,7 @@ msgstr ""
"valget og tryk 'Installér' for at modtage og installere den valgte pakke "
"eller 'Annullér'for at afbryde."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:419
msgid ""
"Before continuing, you should read carefully the terms of the license. It\n"
"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
@@ -3512,14 +3585,14 @@ msgstr ""
"afslutte installationen. For at fortsætte installationen skal du klikke på "
"'Acceptér'-knappen."
-#: ../../help.pm_.c:432
+#: ../../help.pm_.c:426
msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -3531,7 +3604,7 @@ msgstr ""
"\n"
"Hvis du ikke véd hvad du skal vælge, så behold den foreslåede mulighed."
-#: ../../help.pm_.c:442
+#: ../../help.pm_.c:436
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3548,26 +3621,26 @@ msgid ""
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive;\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions in free space of your hard drive;\n"
"\n"
-" * \"More\": gives access to additional features:\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery if necessary. It is strongly recommended\n"
+"to perform this step;\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
@@ -3595,7 +3668,7 @@ msgid ""
" * Ctrl-m to set the mount point.\n"
"\n"
"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"