package pkgs; # $Id$ use diagnostics; use strict; use vars qw(*LOG %preferred $limitMinTrans %compssListDesc); use MDK::Common::System; use common; use install_any; use run_program; use detect_devices; use log; use fs; use loopback; use c; my @preferred = qw(perl-GTK postfix gcc-cpp proftpd ghostscript-X vim-minimal kernel db1 db2 ispell-en Bastille-Curses-module nautilus); @preferred{@preferred} = (); #- lower bound on the left ( aka 90 means [90-100[ ) %compssListDesc = ( 5 => __("must have"), 4 => __("important"), 3 => __("very nice"), 2 => __("nice"), 1 => __("maybe"), ); #- constant for small transaction. $limitMinTrans = 8; #- constant for package accessor (via table). my $FILE = 0; my $FLAGS = 1; my $SIZE_DEPS = 2; my $MEDIUM = 3; my $PROVIDES = 4; my $VALUES = 5; my $HEADER = 6; my $INSTALLED_CUMUL_SIZE = 7; my $EPOCH = 8; #- constant for packing flags, see below. my $PKGS_SELECTED = 0x00ffffff; my $PKGS_FORCE = 0x01000000; my $PKGS_INSTALLED = 0x02000000; my $PKGS_BASE = 0x04000000; my $PKGS_UPGRADE = 0x20000000; #- package to ignore, typically in Application CD. my %ignoreBadPkg = ( 'civctp-demo' => 1, 'eus-demo' => 1, 'myth2-demo' => 1, 'heretic2-demo' => 1, 'heroes3-demo' => 1, 'rt2-demo' => 1, ); #- basic methods for extracting informations about packages. #- to save memory, (name, version, release) are no more stored, they #- are directly generated from (file). #- all flags are grouped together into (flags), these includes the #- following flags : selected, force, installed, base, skip. #- size and deps are grouped to save memory too and make a much #- simpler and faster depslist reader, this gets (sizeDeps). sub packageHeaderFile { $_[0] ? $_[0]->[$FILE] : die "invalid package from\n" . backtrace() } sub packageName { $_[0] && $_[0]->[$FILE] =~ /^([^:\s]*)-[^:\-\s]+-[^:\-\s]+\.[^:\.\-\s]*(?::.*)?/ ? $1 : die "invalid file `" . ($_[0] && $_[0]->[$FILE]) . "'\n" . backtrace() } sub packageVersion { $_[0] && $_[0]->[$FILE] =~ /^[^:\s]*-([^:\-\s]+)-[^:\-\s]+\.[^:\.\-\s]*(?::.*)?/ ? $1 : die "invalid file `" . ($_[0] && $_[0]->[$FILE]) . "'\n" . backtrace() } sub packageRelease { $_[0] && $_[0]->[$FILE] =~ /^[^:\s]*-[^:\-\s]+-([^:\-\s]+)\.[^:\.\-\s]*(?::.*)?/ ? $1 : die "invalid file `" . ($_[0] && $_[0]->[$FILE]) . "'\n" . backtrace() } sub packageArch { $_[0] && $_[0]->[$FILE] =~ /^[^:\s]*-[^:\-\s]+-[^:\-\s]+\.([^:\.\-\s]*)(?::.*)?/ ? $1 : die "invalid file `" . ($_[0] && $_[0]->[$FILE]) . "'\n" . backtrace() } sub packageFile { $_[0] && $_[0]->[$FILE] =~ /^([^:\s]*-[^:\-\s]+-[^:\-\s]+\.[^:\.\-\s]*)(?::(.*))?/ ? ($2 || $1) . ".rpm" : die "invalid file `" . ($_[0] && $_[0]->[$FILE]) . "'\n" . backtrace() } sub packageEpoch { $_[0] && $_[0]->[$EPOCH] || 0 } sub packageSize { to_int($_[0] && $_[0]->[$SIZE_DEPS]) } sub packageDepsId { split ' ', ($_[0] && ($_[0]->[$SIZE_DEPS] =~ /^\d*\s*(.*)/)[0]) } sub packageFlagSelected { $_[0] && $_[0]->[$FLAGS] & $PKGS_SELECTED } sub packageFlagForce { $_[0] && $_[0]->[$FLAGS] & $PKGS_FORCE } sub packageFlagInstalled { $_[0] && $_[0]->[$FLAGS] & $PKGS_INSTALLED } sub packageFlagBase { $_[0] && $_[0]->[$FLAGS] & $PKGS_BASE } sub packageFlagUpgrade { $_[0] && $_[0]->[$FLAGS] & $PKGS_UPGRADE } sub packageSetFlagSelected { $_[0]->[$FLAGS] &= ~$PKGS_SELECTED; $_[0]->[$FLAGS] |= $_[1] & $PKGS_SELECTED; } sub packageSetFlagForce { $_[0] or die "invalid package from\n" . backtrace(); $_[1] ? ($_[0]->[$FLAGS] |= $PKGS_FORCE) : ($_[0]->[$FLAGS] &= ~$PKGS_FORCE); } sub packageSetFlagInstalled { $_[0] or die "invalid package from\n" . backtrace(); $_[1] ? ($_[0]->[$FLAGS] |= $PKGS_INSTALLED) : ($_[0]->[$FLAGS] &= ~$PKGS_INSTALLED); } sub packageSetFlagBase { $_[0] or die "invalid package from\n" . backtrace(); $_[1] ? ($_[0]->[$FLAGS] |= $PKGS_BASE) : ($_[0]->[$FLAGS] &= ~$PKGS_BASE); } sub packageSetFlagUpgrade { $_[0] or die "invalid package from\n" . backtrace(); $_[1] ? ($_[0]->[$FLAGS] |= $PKGS_UPGRADE) : ($_[0]->[$FLAGS] &= ~$PKGS_UPGRADE); } sub packageMedium { my ($packages, $p) = @_; $p or die "invalid package from\n" . backtrace(); $packages->{mediums}{$p->[$MEDIUM]} } sub packageProvides { $_[1] or die "invalid package from\n" . backtrace(); map { $_[0]->{depslist}[$_] || die "unkown package id $_" } unpack "s*", $_[1]->[$PROVIDES] } sub packageRate { substr($_[0] && $_[0]->[$VALUES], 0, 1) } sub packageRateRFlags { my ($rate, @flags) = split "\t", $_[0] && $_[0]->[$VALUES]; ($rate, @flags) } sub packageSetRateRFlags { my ($pkg, $rate, @flags) = @_; $pkg or die "invalid package from\n" . backtrace(); $pkg->[$VALUES] = join("\t", $rate, @flags) } sub packageHeader { $_[0] && $_[0]->[$HEADER] } sub packageFreeHeader { $_[0] && c::headerFree(delete $_[0]->[$HEADER]) } sub packageSelectedOrInstalled { packageFlagSelected($_[0]) || packageFlagInstalled($_[0]) } sub packageId { my ($packages, $pkg) = @_; my $i = 0; foreach (@{$packages->{depslist}}) { return $i if $pkg == $packages->{depslist}[$i]; $i++ } return; } sub cleanHeaders { my ($prefix) = @_; rm_rf("$prefix/tmp/headers") if -e "$prefix/tmp/headers"; } #- get all headers from an hdlist file. sub extractHeaders { my ($prefix, $pkgs, $media) = @_; my %medium2pkgs; cleanHeaders($prefix); foreach (@$pkgs) { push @{$medium2pkgs{$_->[$MEDIUM]} ||= []}, $_; } foreach (values %medium2pkgs) { my $medium = $media->{$_->[0][$MEDIUM]}; #- the first one is a valid package pointing to right medium to use. eval { require packdrake; my $packer = new packdrake("/tmp/$medium->{hdlist}", quiet => 1); $packer->extract_archive("$prefix/tmp/headers", map { packageHeaderFile($_) } @$_); }; } foreach (@$pkgs) { my $f = "$prefix/tmp/headers/". packageHeaderFile($_); local *H; open H, $f or log::l("unable to open header file $f: $!"), next; $_->[$HEADER] = c::headerRead(fileno H, 1) or log::l("unable to read header of package ". packageHeaderFile($_)); } @$pkgs = grep { $_->[$HEADER] } @$pkgs; } #- size and correction size functions for packages. my $B = 1.20873; my $C = 4.98663; #- doesn't take hdlist's into account as getAvailableSpace will do it. sub correctSize { $B * $_[0] + $C } sub invCorrectSize { ($_[0] - $C) / $B } sub selectedSize { my ($packages) = @_; my $size = 0; foreach (values %{$packages->{names}}) { packageFlagSelected($_) && !packageFlagInstalled($_) and $size += packageSize($_) - ($_->[$INSTALLED_CUMUL_SIZE] || 0); } $size; } sub correctedSelectedSize { correctSize(selectedSize($_[0]) / sqr(1024)) } sub size2time { my ($x, $max) = @_; my $A = 7e-07; my $limit = min($max * 3 / 4, 9e8); if ($x < $limit) { $A * $x; } else { $x -= $limit; my $B = 6e-16; my $C = 15e-07; $B * $x ** 2 + $C * $x + $A * $limit; } } #- searching and grouping methods. #- package is a reference to list that contains #- a hash to search by name and #- a list to search by id. sub packageByName { my ($packages, $name) = @_; $packages->{names}{$name} or log::l("unknown package `$name'") && undef; } sub packageById { my ($packages, $id) = @_; my $l = $packages->{depslist}[$id]; #- do not log as id unsupported are still in depslist. $l && @$l && $l; } sub packagesOfMedium { my ($packages, $medium) = @_; grep { $_ && $_->[$MEDIUM] == $medium } @{$packages->{depslist}}; } sub packagesToInstall { my ($packages) = @_; grep { packageFlagSelected($_) && !packageFlagInstalled($_) && packageMedium($packages, $_)->{selected} } values %{$packages->{names}}; } sub allMediums { my ($packages) = @_; sort { $a <=> $b } keys %{$packages->{mediums}}; } sub mediumDescr { my ($packages, $medium) = @_; $packages->{mediums}{$medium}{descr}; } #- selection, unselection of package. sub selectPackage { #($$;$$$) my ($packages, $pkg, $base, $otherOnly, $check_recursion) = @_; #- check for medium selection, if the medium has not been #- selected, the package cannot be selected. #- check if the same or better version is installed, #- do not select in such case. $pkg && packageMedium($packages, $pkg)->{selected} && !packageFlagInstalled($pkg) or return; #- avoid infinite recursion (mainly against badly generated depslist.ordered). $check_recursion ||= {}; exists $check_recursion->{$pkg->[$FILE]} and return; $check_recursion->{$pkg->[$FILE]} = undef; #- make sure base package are set even if already selected. $base and packageSetFlagBase($pkg, 1); #- select package and dependancies, otherOnly may be a reference #- to a hash to indicate package that will strictly be selected #- when value is true, may be selected when value is false (this #- is only used for unselection, not selection) unless (packageFlagSelected($pkg)) { foreach (packageDepsId($pkg)) { if (/\|/) { #- choice deps should be reselected recursively as no #- closure on them is computed, this code is exactly the #- same as pixel's one. my $preferred; foreach (split '\|') { my $dep = packageById($packages, $_) or next; $preferred ||= $dep; packageFlagSelected($dep) and $preferred = $dep, last; packageName($dep) =~ /kernel-\d/ and $preferred = $dep; #- hard coded preference to simple kernel exists $preferred{packageName($dep)} and $preferred = $dep; } $preferred or die "unable to find a package for choice"; packageFlagSelected($preferred) or log::l("selecting default package as $preferred->[$FILE]"); selectPackage($packages, $preferred, $base, $otherOnly, $check_recursion); } else { #- deps have been closed except for choices, so no need to #- recursively apply selection, expand base on it. my $dep = packageById($packages, $_); $base and packageSetFlagBase($dep, 1); $otherOnly and !packageFlagSelected($dep) and $otherOnly->{packageName($dep)} = 1; $otherOnly or packageSetFlagSelected($dep, 1+packageFlagSelected($dep)); } } } $otherOnly and !packageFlagSelected($pkg) and $otherOnly->{packageName($pkg)} = 1; $otherOnly or packageSetFlagSelected($pkg, 1+packageFlagSelected($pkg)); 1; } sub unselectPackage($$;$) { my ($packages, $pkg, $otherOnly) = @_; #- base package are not unselectable, #- and already unselected package are no more unselectable. packageFlagBase($pkg) and return; packageFlagSelected($pkg) or return; #- dependancies may be used to propose package that may be not #- usefull for the user, since their counter is just one and #- they are not used any more by other packages. #- provides are closed and are taken into account to get possible #- unselection of package (value false on otherOnly) or strict #- unselection (value true on otherOnly). foreach my $provided ($pkg, packageProvides($packages, $pkg)) { packageFlagBase($provided) and die "a provided package cannot be a base package"; if (packageFlagSelected($provided)) { my $unselect_alone = 1; foreach (packageDepsId($provided)) { $unselect_alone = 0; if (/\|/) { #- this package use a choice of other package, so we have to check #- if our package is not included in the choice, if this is the #- case, if must be checked one of the other package are selected. foreach (split '\|') { my $dep = packageById($packages, $_) or next; $dep == $pkg and $unselect_alone |= 1 and next; packageFlagBase($dep) || packageFlagSelected($dep) and $unselect_alone |= 2; } } else { packageById($packages, $_) == $pkg and $unselect_alone = 1; } $unselect_alone == 1 and last; } #- if package has been found and nothing more selected, #- deselect the provided, or we can ignore it safely. $provided == $pkg || $unselect_alone == 1 or next; $otherOnly or packageSetFlagSelected($provided, 0); $otherOnly and $otherOnly->{packageName($provided)} = 1; } foreach (map { split '\|' } packageDepsId($provided)) { my $dep = packageById($packages, $_) or next; packageFlagBase($dep) and next; packageFlagSelected($dep) or next; for (packageFlagSelected($dep)) { $_ == 1 and do { $otherOnly and $otherOnly->{packageName($dep)} ||= 0; }; $_ > 1 and do { $otherOnly or packageSetFlagSelected($dep, $_-1); }; last; } } } 1; } sub togglePackageSelection($$;$) { my ($packages, $pkg, $otherOnly) = @_; packageFlagSelected($pkg) ? unselectPackage($packages, $pkg, $otherOnly) : selectPackage($packages, $pkg, 0, $otherOnly); } sub setPackageSelection($$$) { my ($packages, $pkg, $value) = @_; $value ? selectPackage($packages, $pkg) : unselectPackage($packages, $pkg); } sub unselectAllPackages($) { my ($packages) = @_; foreach (values %{$packages->{names}}) { unless (packageFlagBase($_) || packageFlagUpgrade($_)) { packageSetFlagSelected($_, 0); } } } sub unselectAllPackagesIncludingUpgradable($) { my ($packages, $removeUpgradeFlag) = @_; foreach (values %{$packages->{names}}) { unless (packageFlagBase($_)) { packageSetFlagSelected($_, 0); packageSetFlagUpgrade($_, 0); } } } sub psUpdateHdlistsDeps { my ($prefix, $method) = @_; my $listf = install_any::getFile('Mandrake/base/hdlists') or die "no hdlists found"; #- WARNING: this function should be kept in sync with functions #- psUsingHdlists and psUsingHdlist. #- it purpose it to update hdlist files on system to install. #- parse hdlist.list file. my $medium = 1; foreach (<$listf>) { chomp; s/\s*#.*$//; /^\s*$/ and next; m/^\s*(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or die "invalid hdlist description \"$_\" in hdlists file"; my ($hdlist, $rpmsdir, $descr) = ($1, $2, $3); #- copy hdlist file directly to $prefix/var/lib/urpmi, this will be used #- for getting header of package during installation or after by urpmi. my $fakemedium = "$descr ($method$medium)"; my $newf = "$prefix/var/lib/urpmi/hdlist.$fakemedium.cz" . ($hdlist =~ /\.cz2/ && "2"); -e $newf and do { unlink $newf or die "cannot remove $newf: $!"; }; install_any::getAndSaveFile("Mandrake/base/$hdlist", $newf) or die "no $hdlist found"; symlinkf $newf, "/tmp/$hdlist"; ++$medium; } #- this is necessary for urpmi. install_any::getAndSaveFile("Mandrake/base/$_", "$prefix/var/lib/urpmi/$_") foreach qw(depslist.ordered provides rpmsrate); } sub psUsingHdlists { my ($prefix, $method) = @_; my $listf = install_any::getFile('Mandrake/base/hdlists') or die "no hdlists found"; my %packages = ( names => {}, count => 0, depslist => [], mediums => {}); #- parse hdlists file. my $medium = 1; foreach (<$listf>) { chomp; s/\s*#.*$//; /^\s*$/ and next; m/^\s*(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or die "invalid hdlist description \"$_\" in hdlists file"; #- make sure the first medium is always selected! #- by default select all image. psUsingHdlist($prefix, $method, \%packages, $1, $medium, $2, $3, 1); ++$medium; } log::l("psUsingHdlists read " . scalar keys(%{$packages{names}}) . " headers on " . scalar keys(%{$packages{mediums}}) . " hdlists"); \%packages; } sub psUsingHdlist { my ($prefix, $method, $packages, $hdlist, $medium, $rpmsdir, $descr, $selected, $fhdlist) = @_; my $fakemedium = "$descr ($method$medium)"; my ($relocated, $ignored) = (0, 0); log::l("trying to read $hdlist for medium $medium"); #- if the medium already exist, use it. $packages->{mediums}{$medium} and return $packages->{mediums}{$medium}; my $m = $packages->{mediums}{$medium} = { hdlist => $hdlist, method => $method, medium => $medium, rpmsdir => $rpmsdir, #- where is RPMS directory. descr => $descr, fakemedium => $fakemedium, min => $packages->{count}, max => -1, #- will be updated after reading current hdlist. selected => $selected, #- default value is only CD1, it is really the minimal. }; #- copy hdlist file directly to $prefix/var/lib/urpmi, this will be used #- for getting header of package during installation or after by urpmi. my $newf = "$prefix/var/lib/urpmi/hdlist.$fakemedium.cz" . ($hdlist =~ /\.cz2/ && "2"); -e $newf and do { unlink $newf or die "cannot remove $newf: $!"; }; install_any::getAndSaveFile($fhdlist || "Mandrake/base/$hdlist", $newf) or die "no $hdlist found"; symlinkf $newf, "/tmp/$hdlist"; #- avoid using more than one medium if Cd is not ejectable. #- but keep all medium here so that urpmi has the whole set. $method eq 'cdrom' && $medium > 1 && !common::usingRamdisk() and return; #- extract filename from archive, this take advantage of verifying #- the archive too. eval { require packdrake; my $packer = new packdrake($newf, quiet => 1); foreach (@{$packer->{files}}) { $packer->{data}{$_}[0] eq 'f' or next; my $pkg = [ (undef) x 8 ]; $pkg->[$FILE] = $_; $pkg->[$MEDIUM] = $medium; my $specific_arch = packageArch($pkg); if (!$specific_arch || MDK::Common::System::compat_arch($specific_arch)) { my $old_pkg = $packages->{names}{packageName($pkg)}; if ($old_pkg) { my $epo_compare = 0; #- NO EPOCH AVAILABLE TODO packageEpoch($pkg) <=> packageEpoch($old_pkg); my $ver_compare = $epo_compare == 0 && versionCompare(packageVersion($pkg), packageVersion($old_pkg)); my $rel_compare = $ver_compare == 0 && versionCompare(packageRelease($pkg), packageRelease($old_pkg)); if ($epo_compare > 0 || $ver_compare > 0 || $rel_compare > 0 || $epo_compare == 0 && $ver_compare == 0 && $rel_compare == 0 && MDK::Common::System::better_arch($specific_arch, packageArch($old_pkg))) { log::l("replacing old package $old_pkg->[$FILE] with package $pkg->[$FILE]"); foreach ($FILE, $MEDIUM) { #- TODO KEEP OLD PARAMETER $old_pkg->[$_] = $pkg->[$_]; } packageFreeHeader($old_pkg); if (packageFlagInstalled($old_pkg)) { packageSetFlagInstalled($old_pkg, 0); selectPackage($packages, $old_pkg); } ++$relocated; } else { log::l("no need to replace previous package $old_pkg->[$FILE] with newer package $pkg->[$FILE]"); ++$ignored; } } else { $packages->{names}{packageName($pkg)} = $pkg; ++$packages->{count}; #- take care of this one, so that desplist will be clean with index of package. } } else { log::l("ignoring package $_ with incompatible arch: $specific_arch"); ++$ignored; } } }; #- update maximal index. $m->{max} = $packages->{count} - 1; $m->{max} >= $m->{min} or die "nothing found while parsing $newf"; $relocated > 0 and log::l("relocated $relocated headers in $hdlist"); $ignored > 0 and log::l("ignored $ignored headers in $hdlist"); log::l("read " . ($m->{max} - $m->{min} + 1) . " new headers in $hdlist"); $m; } sub getOtherDeps($$) { my ($packages, $f) = @_; #- this version of getDeps is customized for handling errors more easily and #- convert reference by name to deps id including closure computation. local $_; while (<$f>) { my ($name, $version, $release, $size, $deps) = /^(\S*)-([^-\s]+)-([^-\s]+)\s+(\d+)\s+(.*)/; my $pkg = $packages->{names}{$name}; $pkg or log::l("ignoring package $name-$version-$release in depslist is not in hdlist"), next; $version eq packageVersion($pkg) and $release eq packageRelease($pkg) or log::l("warning package $name-$version-$release in depslist mismatch version or release in hdlist ($version ne ", packageVersion($pkg), " or $release ne ", packageRelease($pkg), ")"), next; my $index = scalar @{$packages->{depslist}}; $index >= packageMedium($packages, $pkg)->{min} && $index <= packageMedium($packages, $pkg)->{max} or log::l("ignoring package $name-$version-$release in depslist outside of hdlist indexation"); #- here we have to translate referenced deps by name to id. #- this include a closure on deps too. my %closuredeps; @closuredeps{map { packageId($packages, $_), packageDepsId($_) } grep { $_ } map { packageByName($packages, $_) or do { log::l("unknown package $_ in depslist for closure"); undef } } split /\s+/, $deps} = (); $pkg->[$SIZE_DEPS] = join " ", $size, keys %closuredeps; push @{$packages->{depslist}}, $pkg; } #- check for same number of package in depslist and hdlists, avoid being to hard. scalar(keys %{$packages->{names}}) == scalar(@{$packages->{depslist}}) or log::l("other depslist has not same package as hdlist file"); } sub getDeps { my ($prefix, $packages) = @_; #- this is necessary for urpmi. install_any::getAndSaveFile('Mandrake/base/depslist.ordered', "$prefix/var/lib/urpmi/depslist.ordered"); install_any::getAndSaveFile('Mandrake/base/provides', "$prefix/var/lib/urpmi/provides"); #- beware of heavily mismatching depslist.ordered file against hdlist files. my $mismatch = 0; #- count the number of packages in deplist that are also in hdlist my $nb_deplist = 0; #- update dependencies list, provides attributes are updated later #- cross reference to be resolved on id (think of loop requires) #- provides should be updated after base flag has been set to save #- memory. local *F; open F, "$prefix/var/lib/urpmi/depslist.ordered" or die "can't find dependancies list"; local $_; while () { my ($name, $version, $release, $arch, $epoch, $sizeDeps) = /^([^:\s]*)-([^:\-\s]+)-([^:\-\s]+)\.([^:\.\-\s]*)(?::(\d+)\S*)?\s+(.*)/; my $pkg = $packages->{names}{$name}; #- these verification are necessary in case of error, but are no more fatal as #- in case of only one medium taken into account during install, there should be #- silent warning for package which are unknown at this point. $pkg or log::l("ignoring $name-$version-$release.$arch in depslist is not in hdlist"); $pkg && $version ne packageVersion($pkg) and log::l("ignoring $name-$version-$release.$arch in depslist mismatch version in hdlist"), $pkg = undef; $pkg && $release ne packageRelease($pkg) and log::l("ignoring $name-$version-$release.$arch in depslist mismatch release in hdlist"), $pkg = undef; $pkg && $arch ne packageArch($pkg) and log::l("ignoring $name-$version-$release.$arch in depslist mismatch arch in hdlist"), $pkg = undef; if ($pkg) { $nb_deplist++; $epoch && $epoch > 0 and $pkg->[$EPOCH] = $epoch; #- only 5% of the distribution use epoch (serial). $pkg->[$SIZE_DEPS] = $sizeDeps; #- check position of package in depslist according to precomputed #- limit by hdlist, very strict :-) #- above warning have chance to raise an exception here, but may help #- for debugging. my $i = scalar @{$packages->{depslist}}; $i >= packageMedium($packages, $pkg)->{min} && $i <= packageMedium($packages, $pkg)->{max} or log::l("inconsistency in position for $name-$version-$release.$arch in depslist and hdlist"), $mismatch = 1; } #- package are already sorted in depslist to enable small transaction and multiple medium. push @{$packages->{depslist}}, $pkg; } #- check for mismatching package, it should break with above die unless depslist has too many errors! $mismatch and die "depslist.ordered mismatch against hdlist files"; #- check for same number of package in depslist and hdlists. my $nb_hdlist = keys %{$packages->{names}}; $nb_hdlist == $nb_deplist or die "depslist.ordered has not same package as hdlist files ($nb_deplist != $nb_hdlist)"; } sub getProvides($) { my ($packages) = @_; #- update provides according to dependencies, here are stored #- reference to package directly and choice are included, this #- assume only 1 of the choice is selected, else on unselection #- the provided package will be deleted where other package still #- need it. #- base package are not updated because they cannot be unselected, #- this save certainly a lot of memory since most of them may be #- needed by a large number of package. #- now using a packed of signed short, this means no more than 32768 #- packages can be managed by DrakX (currently about 2000). my $i = 0; foreach my $pkg (@{$packages->{depslist}}) { $pkg or next; unless (packageFlagBase($pkg)) { foreach (map { split '\|' } grep { !/^NOTFOUND_/ } packageDepsId($pkg)) { my $provided = packageById($packages, $_) or next; packageFlagBase($provided) or $provided->[$PROVIDES] = pack "s*", (unpack "s*", $provided->[$PROVIDES]), $i; } } ++$i; } } sub read_rpmsrate { my ($packages, $f) = @_; my $line_nb = 0; my $fatal_error; my (@l); while (<$f>) { $line_nb++; /\t/ and die "tabulations not allowed at line $line_nb\n"; s/#.*//; # comments my ($indent, $data) = /(\s*)(.*)/; next if !$data; # skip empty lines @l = grep { $_->[0] < length $indent } @l; my @m = @l ? @{$l[$#l][1]} : (); my ($t, $flag, @l2); while ($data =~ /^(( [1-5] | (?: (?: !\s*)? [0-9A-Z_]+(?:".*?")?) (?: \s*\|\|\s* (?: !\s*)? [0-9A-Z_]+(?:".*?")?)* ) (?:\s+|$) )(.*)/x) { #@")) { ($t, $flag, $data) = ($1,$2,$3); while ($flag =~ s,^\s*(("[^"]*"|[^"\s]*)*)\s+,$1,) {} my $ok = 0; $flag = join('||', grep { if (my ($inv, $p) = /^(!)?HW"(.*)"/) { ($inv xor detect_devices::matching_desc($p)) and $ok = 1; 0; } else { 1; } } split '\|\|', $flag); push @m, $ok ? 'TRUE' : $flag || 'FALSE'; push @l2, [ length $indent, [ @m ] ]; $indent .= $t; } if ($data) { # has packages on same line my ($rate) = grep { /^\d$/ } @m or die sprintf qq(missing rate for "%s" at line %d (flags are %s)\n), $data, $line_nb, join('&&', @m); foreach (split ' ', $data) { if ($packages) { my $p = packageByName($packages, $_) or next; my @m2 = map { if_($_ && packageName($_) =~ /locales-(.*)/, qq(LOCALES"$1")) } map { packageById($packages, $_) } packageDepsId($p); my @m3 = ((grep { !/^\d$/ } @m), @m2); if (packageRate($p)) { next if @m3 == 1 && $m3[0] eq 'INSTALL'; my ($rate2, @m4) = packageRateRFlags($p); if (@m3 > 1 || @m4 > 1) { log::l("can't handle complicate flags for packages appearing twice ($_)"); $fatal_error++; } log::l("package $_ appearing twice with different rates ($rate != $rate2)") if $rate != $rate2; packageSetRateRFlags($p, $rate, "$m3[0]||$m4[0]"); } else { packageSetRateRFlags($p, $rate, @m3); } } else { print "$_ = ", join(" && ", @m), "\n"; } } push @l, @l2; } else { push @l, [ $l2[0][0], $l2[$#l2][1] ]; } } $fatal_error and die "$fatal_error fatal errors in rpmsrate"; } sub readCompssUsers { my ($meta_class) = @_; my (%compssUsers, @sorted, $l); my $file = 'Mandrake/base/compssUsers'; my $f = $meta_class && install_any::getFile("$file.$meta_class") || install_any::getFile($file) or die "can't find $file"; local $_; while (<$f>) { /^\s*$/ || /^#/ and next; s/#.*//; if (/^(\S.*)/) { my $verbatim = $_; my ($icon, $descr, $path); /^(.*?)\s*\[path=(.*?)\](.*)/ and $_ = "$1$3", $path = $2; /^(.*?)\s*\[icon=(.*?)\](.*)/ and $_ = "$1$3", $icon = $2; /^(.*?)\s*\[descr=(.*?)\](.*)/ and $_ = "$1$3", $descr = $2; $compssUsers{"$path|$_"} = { label => $_, verbatim => $verbatim, path => $path, icons => $icon, descr => $descr, flags => $l=[] }; push @sorted, "$path|$_"; } elsif (/^\s+(.*?)\s*$/) { push @$l, $1; } } \%compssUsers, \@sorted; } sub saveCompssUsers { my ($prefix, $packages, $compssUsers, $sorted) = @_; my $flat; foreach (@$sorted) { my @fl = @{$compssUsers->{$_}{flags}}; my %fl; $fl{$_} = 1 foreach @fl; $flat .= $compssUsers->{$_}{verbatim}; foreach my $p (values %{$packages->{names}}) { my ($rate, @flags) = packageRateRFlags($p); if ($rate && grep { grep { !/^!/ && $fl{$_} } split('\|\|') } @flags) { $flat .= sprintf "\t%d %s\n", $rate, packageName($p); } } } output "$prefix/var/lib/urpmi/compssUsers.flat", $flat; } sub setSelectedFromCompssList { my ($packages, $compssUsersChoice, $min_level, $max_size) = @_; $compssUsersChoice->{TRUE} = 1; #- ensure TRUE is set my $nb = selectedSize($packages); foreach my $p (sort { packageRate($b) <=> packageRate($a) } values %{$packages->{names}}) { my ($rate, @flags) = packageRateRFlags($p); next if !$rate || $rate < $min_level || grep { !grep { /^!(.*)/ ? !$compssUsersChoice->{$1} : $compssUsersChoice->{$_} } split('\|\|') } @flags; #- determine the packages that will be selected when #- selecting $p. the packages are not selected. my %newSelection; selectPackage($packages, $p, 0, \%newSelection); #- this enable an incremental total size. my $old_nb = $nb; foreach (grep { $newSelection{$_} } keys %newSelection) { $nb += packageSize($packages->{names}{$_}); } if ($max_size && $nb > $max_size) { $nb = $old_nb; $min_level = packageRate($p); last; } #- at this point the package can safely be selected. selectPackage($packages, $p); } log::l("setSelectedFromCompssList: reached size ", formatXiB($nb), ", up to indice $min_level (less than ", formatXiB($max_size), ")"); log::l("setSelectedFromCompssList: ", join(" ", sort map { packageName($_) } grep { packageFlagSelected($_) } @{$packages->{depslist}})); $min_level; } #- usefull to know the size it would take for a given min_level/max_size #- just saves the selected packages, call setSelectedFromCompssList and restores the selected packages sub saveSelected { my ($packages) = @_; my @l = values %{$packages->{names}}; my @flags = map { packageFlagSelected($_) } @l; [ $packages, \@l, \@flags ]; } sub restoreSelected { my ($packages, $l, $flags) = @{$_[0]}; mapn { packageSetFlagSelected(@_) } $l, $flags; } sub computeGroupSize { my ($packages, $min_level) = @_; sub inside { my ($l1, $l2) = @_; my $i = 0; return if @$l1 > @$l2; foreach (@$l1) { my $c; while ($c = $l2->[$i++] cmp $_ ) { return if $c == 1 || $i > @$l2; } } 1; } sub or_ify { my ($first, @other) = @_; my @l = split('\|\|', $first); foreach (@other) { @l = map { my $n = $_; map { "$_&&$n" } @l; } split('\|\|'); } #- HACK, remove LOCALES & CHARSET, too costly grep { !/LOCALES|CHARSET/ } @l; } sub or_clean { my (@l) = map { [ sort split('&&') ] } @_ or return ''; my @r; B: while (@l) { my $e = shift @l; foreach (@r, @l) { inside($e, $_) and next B; } push @r, $e; } join("\t", map { join('&&', @$_) } @r); } my (%group, %memo); foreach my $p (values %{$packages->{names}}) { my ($rate, @flags) = packageRateRFlags($p); next if !$rate || $rate < $min_level; my $flags = join("\t", @flags = or_ify(@flags)); $group{packageName($p)} = ($memo{$flags} ||= or_clean(@flags)); #- determine the packages that will be selected when selecting $p. the packages are not selected. my %newSelection; selectPackage($packages, $p, 0, \%newSelection); foreach (grep { $newSelection{$_} } keys %newSelection) { my $s = $group{$_} || do { $packages->{names}{$_}[$VALUES] =~ /\t(.*)/; join("\t", or_ify(split("\t", $1))); }; next if length($s) > 80; # HACK, truncated too complicated expressions, too costly my $m = "$flags\t$s"; $group{$_} = ($memo{$m} ||= or_clean(@flags, split("\t", $s))); } } my (%sizes, %pkgs); while (my ($k, $v) = each %group) { push @{$pkgs{$v}}, $k; $sizes{$v} += packageSize($packages->{names}{$k}); } log::l(sprintf "%s %dMB %s", $_, $sizes{$_} / sqr(1024), join(',', @{$pkgs{$_}})) foreach keys %sizes; \%sizes, \%pkgs; } sub init_db { my ($prefix) = @_; my $f = "$prefix/root/install.log"; open(LOG, ">> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); *LOG or *LOG = log::F() or *LOG = *STDERR; CORE::select((CORE::select(LOG), $| = 1)[0]); c::rpmErrorSetCallback(fileno LOG); #- c::rpmSetVeryVerbose(); log::l("reading /usr/lib/rpm/rpmrc"); c::rpmReadConfigFiles() or die "can't read rpm config files"; log::l("\tdone"); } sub rebuild_db_open_for_traversal { my ($packages, $prefix) = @_; log::l("reading /usr/lib/rpm/rpmrc"); c::rpmReadConfigFiles() or die "can't read rpm config files"; log::l("\tdone"); unless (exists $packages->{rebuild_db}) { if (my $pid = fork()) { waitpid $pid, 0; ($? & 0xff00) and die "rebuilding of rpm database failed"; } else { log::l("rebuilding rpm database"); my $rebuilddb_dir = "$prefix/var/lib/rpmrebuilddb.$$"; -d $rebuilddb_dir and log::l("removing stale directory $rebuilddb_dir"), rm_rf($rebuilddb_dir); c::rpmdbRebuild($prefix) or log::l("rebuilding of rpm database failed: ". c::rpmErrorString()), c::_exit(2); c::_exit(0); } $packages->{rebuild_db} = undef; } my $db = c::rpmdbOpenForTraversal($prefix) or die "unable to open $prefix/var/lib/rpm/Packages"; log::l("opened rpm database for examining existing packages"); $db; } sub clean_old_rpm_db { my ($prefix) = @_; my $failed; foreach (qw(Basenames Conflictname Group Name Packages Providename Requirename Triggername)) { -s "$prefix/var/lib/rpm/$_" or $failed = 'failed'; } #- rebuilding has been successfull, so remove old rpm database if any. #- once we have checked the rpm4 db file are present and not null, in case #- of doubt, avoid removing them... unless ($failed) { log::l("rebuilding rpm database completed successfully"); foreach (qw(conflictsindex.rpm fileindex.rpm groupindex.rpm nameindex.rpm packages.rpm providesindex.rpm requiredby.rpm triggerindex.rpm)) { -e "$prefix/var/lib/rpm/$_" or next; log::l("removing old rpm file $_"); rm_rf("$prefix/var/lib/rpm/$_"); } } } sub done_db { log::l("closing install.log file"); close LOG; } sub versionCompare($$) { goto &c::rpmvercmp; } #- old code using perl version, still broken on some case. #- my ($a, $b) = @_; #- local $_; #- #- while ($a || $b) { #- my ($sb, $sa) = map { $1 if $a =~ /^\W*\d/ ? s/^\W*0*(\d+)// : s/^\W*(\D*)// } ($b, $a); #- $_ = ($sa =~ /^\d/ || $sb =~ /^\d/) && length($sa) <=> length($sb) || $sa cmp $sb and return $_ || 0; #- $sa eq '' && $sb eq '' and return $a cmp $b || 0; #- } sub selectPackagesAlreadyInstalled { my ($packages, $prefix) = @_; #- avoid rebuilding the database if such case. $packages->{rebuild_db} = "oem does not need rebuilding the rpm db"; my $db = rebuild_db_open_for_traversal($packages, $prefix); #- this method has only one objectif, check the presence of packages #- already installed and avoid installing them again. this is to be used #- with oem installation, if the database exists, preselect the packages #- installed WHATEVER their version/release (log if a problem is perceived #- is enough). c::rpmdbTraverse($db, sub { my ($header) = @_; my $p = $packages->{names}{c::headerGetEntry($header, 'name')}; if ($p) { my $epoch_cmp = c::headerGetEntry($header, 'epoch') <=> packageEpoch($p); my $version_cmp = $epoch_cmp == 0 && versionCompare(c::headerGetEntry($header, 'version'), packageVersion($p)); my $version_rel_test = $epoch_cmp > 0 || $epoch_cmp == 0 && ($version_cmp > 0 || $version_cmp == 0 && versionCompare(c::headerGetEntry($header, 'release'), packageRelease($p)) >= 0); $version_rel_test or log::l("keeping an older package, avoiding selecting $p->[$FILE]"); packageSetFlagInstalled($p, 1); } }); #- close db, job finished ! c::rpmdbClose($db); log::l("done selecting packages to upgrade"); } sub selectPackagesToUpgrade($$$;$$) { my ($packages, $prefix, $base, $toRemove, $toSave) = @_; local $_; #- else perl complains on the map { ... } grep { ... } @...; local (*UPGRADE_INPUT, *UPGRADE_OUTPUT); pipe UPGRADE_INPUT, UPGRADE_OUTPUT; if (my $pid = fork()) { @{$toRemove || []} = (); #- reset this one. close UPGRADE_OUTPUT; while () { chomp; my ($action, $name) = /^([\w\d]*):(.*)/; for ($action) { /remove/ and do { push @$toRemove, $name; next }; /keepfiles/ and do { push @$toSave, $name; next }; my $p = $packages->{names}{$name} or die "unable to find package ($name)"; /^\d*$/ and do { $p->[$INSTALLED_CUMUL_SIZE] = $action; next }; /installed/ and do { packageSetFlagInstalled($p, 1); next }; /select/ and do { selectPackage($packages, $p); next }; die "unknown action ($action)"; } } close UPGRADE_INPUT; waitpid $pid, 0; } else { close UPGRADE_INPUT; my $db = rebuild_db_open_for_traversal($packages, $prefix); #- used for package that are not correctly updated. #- should only be used when nothing else can be done correctly. my %upgradeNeedRemove = ( 'libstdc++' => 1, 'compat-glibc' => 1, 'compat-libs' => 1, ); #- generel purpose for forcing upgrade of package whatever version is. my %packageNeedUpgrade = ( #'lilo' => 1, #- this package has been misnamed in 7.0. ); #- help removing package which may have different release numbering my %toRemove; map { $toRemove{$_} = 1 } @{$toRemove || []}; #- help searching package to upgrade in regard to already installed files. my %installedFilesForUpgrade; #- help keeping memory by this set of package that have been obsoleted. my %obsoletedPackages; #- make a subprocess here for reading filelist, this is important #- not to waste a lot of memory for the main program which will fork #- latter for each transaction. local (*INPUT, *OUTPUT_CHILD); pipe INPUT, OUTPUT_CHILD; local (*INPUT_CHILD, *OUTPUT); pipe INPUT_CHILD, OUTPUT; if (my $pid = fork()) { close INPUT_CHILD; close OUTPUT_CHILD; select((select(OUTPUT), $| = 1)[0]); #- internal reading from interactive mode of parsehdlist. #- takes a code to call with the line read, this avoid allocating #- memory for that. my $ask_child = sub { my ($name, $tag, $code) = @_; $code or die "no callback code for parsehdlist output"; print OUTPUT "$name:$tag\n"; local $_; while () { chomp; /^\s*$/ and last; $code->($_); } }; #- select packages which obseletes other package, obselete package are not removed, #- should we remove them ? this could be dangerous ! foreach my $p (values %{$packages->{names}}) { $ask_child->(packageName($p), "obsoletes", sub { #- take care of flags and version and release if present if ($_[0] =~ /^(\S*)\s*(\S*)\s*([^\s-]*)-?(\S*)/ && c::rpmdbNameTraverse($db, $1) > 0) { $3 and eval(versionCompare(packageVersion($p), $3) . $2 . 0) or next; $4 and eval(versionCompare(packageRelease($p), $4) . $2 . 0) or next; log::l("selecting " . packageName($p) . " by selection on obsoletes"); $obsoletedPackages{$1} = undef; selectPackage($packages, $p); } }); } #- mark all files which are not in /etc/rc.d/ for packages which are already installed but which #- are not in the packages list to upgrade. #- the 'installed' property will make a package unable to be selected, look at select. c::rpmdbTraverse($db, sub { my ($header) = @_; my $otherPackage = (c::headerGetEntry($header, 'release') !~ /mdk\w*$/ && (c::headerGetEntry($header, 'name'). '-' . c::headerGetEntry($header, 'version'). '-' . c::headerGetEntry($header, 'release'))); my $p = $packages->{names}{c::headerGetEntry($header, 'name')}; if ($p) { my $epoch_cmp = c::headerGetEntry($header, 'epoch') <=> packageEpoch($p); my $version_cmp = $epoch_cmp == 0 && versionCompare(c::headerGetEntry($header, 'version'), packageVersion($p)); my $version_rel_test = $epoch_cmp > 0 || $epoch_cmp == 0 && ($version_cmp > 0 || $version_cmp == 0 && versionCompare(c::headerGetEntry($header, 'release'), packageRelease($p)) >= 0); if ($packageNeedUpgrade{packageName($p)}) { log::l("package ". packageName($p) ." need to be upgraded"); } elsif ($version_rel_test) { #- by default, package are upgraded whatever version is ! if ($otherPackage && $version_cmp <= 0) { log::l("force upgrading $otherPackage since it will not be updated otherwise"); } else { #- let the parent known this installed package. print UPGRADE_OUTPUT "installed:" . packageName($p) . "\n"; packageSetFlagInstalled($p, 1); } } elsif ($upgradeNeedRemove{packageName($p)}) { my $otherPackage = (c::headerGetEntry($header, 'name'). '-' . c::headerGetEntry($header, 'version'). '-' . c::headerGetEntry($header, 'release')); log::l("removing $otherPackage since it will not upgrade correctly!"); $toRemove{$otherPackage} = 1; #- force removing for theses other packages, select our. } } else { if (! exists $obsoletedPackages{c::headerGetEntry($header, 'name')}) { my @files = c::headerGetEntry($header, 'filenames'); @installedFilesForUpgrade{grep { ($_ !~ m|^/dev/| && $_ !~ m|^/etc/rc.d/| && $_ !~ m|\.la$| && ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = (); } } }); #- find new packages to upgrade. foreach my $p (values %{$packages->{names}}) { my $skipThis = 0; my $count = c::rpmdbNameTraverse($db, packageName($p), sub { my ($header) = @_; $skipThis ||= packageFlagInstalled($p); }); #- skip if not installed (package not found in current install). $skipThis ||= ($count == 0); #- make sure to upgrade package that have to be upgraded. $packageNeedUpgrade{packageName($p)} and $skipThis = 0; #- select the package if it is already installed with a lower version or simply not installed. unless ($skipThis) { my $cumulSize; selectPackage($packages, $p); #- keep in mind installed files which are not being updated. doing this costs in #- execution time but use less memory, else hash all installed files and unhash #- all file for package marked for upgrade. c::rpmdbNameTraverse($db, packageName($p), sub { my ($header) = @_; $cumulSize += c::headerGetEntry($header, 'size'); my @files = c::headerGetEntry($header, 'filenames'); @installedFilesForUpgrade{grep { ($_ !~ m|^/dev/| && $_ !~ m|^/etc/rc.d/| && $_ !~ m|\.la$| && ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = (); }); $ask_child->(packageName($p), "files", sub { delete $installedFilesForUpgrade{$_[0]}; }); #- keep in mind the cumul size of installed package since they will be deleted #- on upgrade, only for package that are allowed to be upgraded. if (allowedToUpgrade(packageName($p))) { print UPGRADE_OUTPUT "$cumulSize:" . packageName($p) . "\n"; } } } #- unmark all files for all packages marked for upgrade. it may not have been done above #- since some packages may have been selected by depsList. foreach my $p (values %{$packages->{names}}) { if (packageFlagSelected($p)) { $ask_child->(packageName($p), "files", sub { delete $installedFilesForUpgrade{$_[0]}; }); } } #- select packages which contains marked files, then unmark on selection. #- a special case can be made here, the selection is done only for packages #- requiring locales if the locales are selected. #- another special case are for devel packages where fixes over the time has #- made some files moving between the normal package and its devel couterpart. #- if only one file is affected, no devel package is selected. foreach my $p (values %{$packages->{names}}) { unless (packageFlagSelected($p)) { my $toSelect = 0; $ask_child->(packageName($p), "files", sub { if ($_[0] !~ m|^/dev/| && $_[0] !~ m|^/etc/rc.d/| && $_ !~ m|\.la$| && exists $installedFilesForUpgrade{$_[0]}) { ++$toSelect if ! -d "$prefix/$_[0]" && ! -l "$prefix/$_[0]"; } delete $installedFilesForUpgrade{$_[0]}; }); if ($toSelect) { if ($toSelect <= 1 && packageName($p) =~ /-devel/) { log::l("avoid selecting " . packageName($p) . " as not enough files will be updated"); } else { #- default case is assumed to allow upgrade. my @deps = map { my $p = packageById($packages, $_); if_($p && packageName($p) =~ /locales-/, $p) } packageDepsId($p); if (@deps == 0 || @deps > 0 && (grep { !packageFlagSelected($_) } @deps) == 0) { log::l("selecting " . packageName($p) . " by selection on files"); selectPackage($packages, $p); } else { log::l("avoid selecting " . packageName($p) . " as its locales language is not already selected"); } } } } } #- clean memory... %installedFilesForUpgrade = (); #- no need to still use the child as this point, we can let him to terminate. close OUTPUT; close INPUT; waitpid $pid, 0; } else { close INPUT; close OUTPUT; open STDIN, "<&INPUT_CHILD"; open STDOUT, ">&OUTPUT_CHILD"; exec if_($ENV{LD_LOADER}, $ENV{LD_LOADER}), "parsehdlist", "--interactive", map { "/tmp/$_->{hdlist}" } values %{$packages->{mediums}} or c::_exit(1); } #- let the parent known about what we found here! foreach my $p (values %{$packages->{names}}) { print UPGRADE_OUTPUT "select:" . packageName($p) . "\n" if packageFlagSelected($p); } #- clean false value on toRemove. delete $toRemove{''}; #- get filenames that should be saved for packages to remove. #- typically config files, but it may broke for packages that #- are very old when compabilty has been broken. #- but new version may saved to .rpmnew so it not so hard ! if ($toSave && keys %toRemove) { c::rpmdbTraverse($db, sub { my ($header) = @_; my $otherPackage = (c::headerGetEntry($header, 'name'). '-' . c::headerGetEntry($header, 'version'). '-' . c::headerGetEntry($header, 'release')); if ($toRemove{$otherPackage}) { print UPGRADE_OUTPUT "remove:$otherPackage\n"; if (packageFlagBase($packages->{names}{c::headerGetEntry($header, 'name')})) { delete $toRemove{$otherPackage}; #- keep it selected, but force upgrade. } else { my @files = c::headerGetEntry($header, 'filenames'); my @flags = c::headerGetEntry($header, 'fileflags'); for my $i (0..$#flags) { if ($flags[$i] & c::RPMFILE_CONFIG()) { print UPGRADE_OUTPUT "keepfiles:$files[$i]\n" unless $files[$i] =~ /kdelnk/; } } } } }); } #- close db, job finished ! c::rpmdbClose($db); log::l("done selecting packages to upgrade"); close UPGRADE_OUTPUT; c::_exit(0); } #- keep a track of packages that are been selected for being upgraded, #- these packages should not be unselected (unless expertise) foreach my $p (values %{$packages->{names}}) { packageSetFlagUpgrade($p, 1) if packageFlagSelected($p); } } sub allowedToUpgrade { $_[0] !~ /^(kernel|kernel22|kernel2.2|kernel-secure|kernel-smp|kernel-linus|kernel-linus2.2|hackkernel|kernel-enterprise)$/ } sub installCallback { # my $msg = shift; # log::l($msg .": ". join(',', @_)); } sub install($$$;$$) { my ($prefix, $isUpgrade, $toInstall, $depOrder, $media) = @_; my %packages; return if $::g_auto_install || !scalar(@$toInstall); #- for root loopback'ed /boot my $loop_boot = loopback::prepare_boot($prefix); #- first stage to extract some important informations #- about the packages selected. this is used to select #- one or many transaction. my ($total, $nb); foreach my $pkg (@$toInstall) { $packages{packageName($pkg)} = $pkg; $nb++; $total += packageSize($pkg); } log::l("pkgs::install $prefix"); log::l("pkgs::install the following: ", join(" ", keys %packages)); eval { fs::mount("/proc", "$prefix/proc", "proc", 0) } unless -e "$prefix/proc/cpuinfo"; init_db($prefix); my $callbackOpen = sub { my $p = $packages{$_[0]} or log::l("unable to retrieve package of $_[0]"), return -1; my $f = packageFile($p); print LOG "$f $media->{$p->[$MEDIUM]}{descr}\n"; my $fd = install_any::getFile($f, $media->{$p->[$MEDIUM]}{descr}); $fd ? fileno $fd : -1; }; my $callbackClose = sub { packageSetFlagInstalled($packages{$_[0]}, 1) }; #- do not modify/translate the message used with installCallback since #- these are keys during progressing installation, or change in other #- place (install_steps_gtk.pm,...). installCallback("Starting installation", $nb, $total); my ($i, $min, $medium) = (0, 0, 1); do { my @transToInstall; if (!$depOrder || !$media) { @transToInstall = values %packages; $nb = 0; } else { do { #- change current media if needed. if ($i > $media->{$medium}{max}) { #- search for media that contains the desired package to install. foreach (keys %$media) { $i >= $media->{$_}{min} && $i <= $media->{$_}{max} and $medium = $_, last; } } $i >= $media->{$medium}{min} && $i <= $media->{$medium}{max} or die "unable to find right medium"; install_any::useMedium($medium); while ($i <= $media->{$medium}{max} && ($i < $min || scalar @transToInstall < $limitMinTrans)) { my $pkg = $depOrder->[$i++] or next; my $dep = $packages{packageName($pkg)} or next; if ($media->{$dep->[$MEDIUM]}{selected}) { push @transToInstall, $dep; foreach (map { split '\|' } packageDepsId($dep)) { $min < $_ and $min = $_; } } else { log::l("ignoring package $dep->[$FILE] as its medium is not selected"); } --$nb; #- make sure the package is not taken into account as its medium is not selected. } } while ($nb > 0 && scalar(@transToInstall) == 0); #- avoid null transaction, it a nop that cost a bit. } #- added to exit typically after last media unselected. if ($nb == 0 && scalar(@transToInstall) == 0) { cleanHeaders($prefix); loopback::save_boot($loop_boot); return; } #- extract headers for parent as they are used by callback. extractHeaders($prefix, \@transToInstall, $media); if ($media->{$medium}{method} eq 'cdrom') { #- extract packages to make sure the getFile below to force #- accessing medium will not be redirected to updates. my @origin = grep { $_->[$MEDIUM] == $media->{$medium} } @transToInstall; #- reset file descriptor open for main process but #- make sure error trying to change from hdlist are #- trown from main process too. @origin and install_any::getFile(packageFile($origin[0]), $media->{$origin[0][$MEDIUM]}{descr}); } #- and make sure there are no staling open file descriptor too (before forking)! install_any::getFile('XXX'); my ($retry_package, $retry_count); while ($retry_package || @transToInstall) { local (*INPUT, *OUTPUT); pipe INPUT, OUTPUT; if (my $pid = fork()) { close OUTPUT; my $error_msg = ''; local $_; while () { if (/^die:(.*)/) { $error_msg = $1; last; } else { chomp; my @params = split ":"; if ($params[0] eq 'close') { &$callbackClose($params[1]); } else { installCallback(@params); } } } $error_msg and $error_msg .= join('', ); waitpid $pid, 0; close INPUT; $error_msg and die $error_msg; } else { #- child process will run each transaction. $SIG{SEGV} = sub { log::l("segmentation fault on transactions"); c::_exit(0) }; my $db; eval { close INPUT; select((select(OUTPUT), $| = 1)[0]); $db = c::rpmdbOpen($prefix) or die "error opening RPM database: ", c::rpmErrorString(); my $trans = c::rpmtransCreateSet($db, $prefix); if ($retry_package) { log::l("opened rpm database for retry transaction of 1 package only"); c::rpmtransAddPackage($trans, $retry_package->[$HEADER], packageName($retry_package), $isUpgrade && allowedToUpgrade(packageName($retry_package))); } else { log::l("opened rpm database for transaction of ". scalar @transToInstall ." new packages, still $nb after that to do"); c::rpmtransAddPackage($trans, $_->[$HEADER], packageName($_), $isUpgrade && allowedToUpgrade(packageName($_))) foreach @transToInstall; } c::rpmdepOrder($trans) or die "error ordering package list: " . c::rpmErrorString(); c::rpmtransSetScriptFd($trans, fileno LOG); log::l("rpmRunTransactions start"); my @probs = c::rpmRunTransactions($trans, $callbackOpen, sub { #- callbackClose my $p = $packages{$_[0]} or return; my $check_installed; c::rpmdbNameTraverse($db, packageName($p), sub { my ($header) = @_; $check_installed ||= c::headerGetEntry($header, 'version') eq packageVersion($p) && c::headerGetEntry($header, 'release') eq packageRelease($p); }); $check_installed and print OUTPUT "close:$_[0]\n"; }, sub { #- installCallback print OUTPUT join(":", @_), "\n"; }, 1); log::l("rpmRunTransactions done, now trying to close still opened fd"); install_any::getFile('XXX'); #- close still opened fd. if (@probs) { my %parts; @probs = reverse grep { if (s/(installing package) .* (needs (?:.*) on the (.*) filesystem)/$1 $2/) { $parts{$3} ? 0 : ($parts{$3} = 1); } else { 1; } } reverse map { s|/mnt||; $_ } @probs; c::rpmdbClose($db); die "installation of rpms failed:\n ", join("\n ", @probs); } }; $@ and print OUTPUT "die:$@\n"; c::rpmdbClose($db); log::l("rpm database closed"); close OUTPUT; #- now search for child process which may be locking the cdrom, making it unable to be ejected. my (@killpid, %tree, $pid); local (*DIR, *F, $_); opendir DIR, "/proc"; while ($pid = readdir DIR) { $pid =~ /^\d+$/ or next; open F, "/proc/$pid/status"; while () { /^Pid:\s+(\d+)/ and $pid == $1 || die "incorrect pid reported for $pid (found $1)"; if (/^PPid:\s+(\d+)/) { $tree{$pid} and die "PPID already found for $pid, previously $tree{$pid}, now $1"; $tree{$pid} = $1; } } close F; } closedir DIR; foreach (keys %tree) { #- remove child of this process (which will terminate). $pid = $_; while ($pid = $tree{$pid}) { $pid == $$ and push @killpid, $_ } #- remove child of 1 direct that have a pid greater than current one. $_ > $$ && $tree{$_} == 1 and push @killpid, $_; } if (@killpid) { log::l("killing process ". join(", ", @killpid)); kill 15, @killpid; sleep 2; kill 9, @killpid; } c::_exit(0); } #- if we are using a retry mode, this means we have to split the transaction with only #- one package for each real transaction. unless ($retry_package) { my @badPackages; foreach (@transToInstall) { if (!packageFlagInstalled($_) && $media->{$_->[$MEDIUM]}{selected} && !exists($ignoreBadPkg{packageName($_)})) { push @badPackages, $_; log::l("bad package $_->[$FILE]"); } else { packageFreeHeader($_); } } @transToInstall = @badPackages; #- if we are in retry mode, we have to fetch only one package at a time. $retry_package = shift @transToInstall; $retry_count = 3; } else { if (!packageFlagInstalled($retry_package) && $media->{$retry_package->[$MEDIUM]}{selected} && !exists($ignoreBadPkg{packageName($retry_package)})) { if ($retry_count) { log::l("retrying installing package $retry_package->[$FILE] alone in a transaction"); --$retry_count; } else { log::l("bad package $retry_package->[$FILE] unable to be installed"); packageSetFlagSelected($retry_package, 0); cdie ("error installing package list: $retry_package->[$FILE]"); } } if (packageFlagInstalled($retry_package) || ! packageFlagSelected($retry_package)) { packageFreeHeader($retry_package); $retry_package = shift @transToInstall; $retry_count = 3; } } } cleanHeaders($prefix); } while ($nb > 0 && !$pkgs::cancel_install); done_db(); cleanHeaders($prefix); loopback::save_boot($loop_boot); } sub remove($$) { my ($prefix, $toRemove) = @_; return if $::g_auto_install || !@{$toRemove || []}; log::l("reading /usr/lib/rpm/rpmrc"); c::rpmReadConfigFiles() or die "can't read rpm config files"; log::l("\tdone"); my $db = c::rpmdbOpen($prefix) or die "error opening RPM database: ", c::rpmErrorString(); log::l("opened rpm database for removing old packages"); my $trans = c::rpmtransCreateSet($db, $prefix); foreach my $p (@$toRemove) { #- stuff remove all packages that matches $p, not a problem since $p has name-version-release format. c::rpmtransRemovePackages($db, $trans, $p) if allowedToUpgrade($p); } eval { fs::mount("/proc", "$prefix/proc", "proc", 0) } unless -e "$prefix/proc/cpuinfo"; my $callbackOpen = sub { log::l("trying to open file from $_[0] which should not happen"); }; my $callbackClose = sub { log::l("trying to close file from $_[0] which should not happen"); }; #- we are not checking depends since it should come when #- upgrading a system. although we may remove some functionalities ? #- do not modify/translate the message used with installCallback since #- these are keys during progressing installation, or change in other #- place (install_steps_gtk.pm,...). installCallback("Starting removing other packages", scalar @$toRemove); if (my @probs = c::rpmRunTransactions($trans, $callbackOpen, $callbackClose, \&installCallback, 1)) { die "removing of old rpms failed:\n ", join("\n ", @probs); } c::rpmtransFree($trans); c::rpmdbClose($db); log::l("rpm database closed"); #- keep in mind removing of these packages by cleaning $toRemove. @{$toRemove || []} = (); } sub selected_leaves { my ($packages) = @_; my %l; #- initialize l with all id, not couting base package. foreach my $id (0 .. $#{$packages->{depslist}}) { my $pkg = packageById($packages, $id) or next; packageSelectedOrInstalled($pkg) && !packageFlagBase($pkg) or next; $l{$id} = 1; } foreach my $id (keys %l) { #- when a package is in a choice, increase its value in hash l, because #- it has to be examined before when we will select them later. #- NB: this number may be computed before to save time. my $p = $packages->{depslist}[$id] or next; foreach (packageDepsId($p)) { if (/\|/) { foreach (split '\|') { exists $l{$_} or next; $l{$_} > 1 + $l{$id} or $l{$_} = 1 + $l{$id}; } } } } #- at this level, we can remove selected packages that are already #- required by other, but we have to sort according to choice usage. foreach my $id (sort { $l{$b} <=> $l{$a} || $b <=> $a } keys %l) { #- do not count already deleted id, else cycles will be removed. $l{$id} or next; my $p = $packages->{depslist}[$id] or next; foreach (packageDepsId($p)) { #- choices need no more to be examined, this has been done above. /\|/ and next; #- improve value of this one, so it will be selected before. $l{$id} < $l{$_} and $l{$id} = $l{$_}; $l{$_} = 0; } } #- now sort again according to decrementing value, and gives packages name. [ map { packageName($packages->{depslist}[$_]) } sort { $l{$b} <=> $l{$a} } grep { $l{$_} > 0 } keys %l ]; } sub naughtyServers { my ($packages) = @_; my @old = qw( freeswan jabber ); # boa ?? my @sure = qw( FreeWnn MySQL am-utils apache boa cfengine cups drakxtools-http finger-server imap leafnode lpr mon ntp openssh-server pidentd postfix postgresql-server proftpd rwall rwho squid webmin wu-ftpd ypbind ); # nfs-utils-clients portmap # X server my @new = qw( apache-mod_perl ftp-server-krb5 mcserv mysql samba telnet-server-krb5 vnc-server ypserv ); my @naughtyServers = (@new, @sure); grep { my $p = packageByName($packages, $_); $p && packageFlagSelected($p); } @naughtyServers; } 1; class='ctx'> msgid "Subnet Mask:"
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../security/l10n.pm:1
#, c-format
-msgid "LiLo and Bootsplash themes installation successfull"
+msgid "Set password expiration and account inactivation delays"
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "Set password expiration and account inactivation delays"
+msgid ""
+"_: load here is a noun, the load of the system\n"
+"Load"
msgstr ""
#: ../../Xconfig/monitor.pm:1
@@ -3656,6 +3686,11 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr ""
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Insert floppy"
+msgstr "Sit 'n skyf in aandrywer %s"
+
#: ../../diskdrake/dav.pm:1
#, c-format
msgid ""
@@ -3710,6 +3745,13 @@ msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
msgid "Do not include the browser cache"
msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
@@ -3765,6 +3807,11 @@ msgstr "GlidePoint"
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "No Mask"
+msgstr "Foutiewe pakket"
+
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Network interface already configured"
@@ -3790,6 +3837,11 @@ msgstr "Datbasis"
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Multi-function device on HP JetDirect"
+msgstr ""
+
#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Linux"
@@ -3800,11 +3852,6 @@ msgstr "Linux"
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "across Network"
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
@@ -3928,6 +3975,14 @@ msgid ""
"Please choose the minimal installation you want:"
msgstr ""
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"You need the Alcatel microcode.\n"
+"You can provide it now via a floppy or your windows partition,\n"
+"or skip and do it later."
+msgstr ""
+
#
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
@@ -3947,6 +4002,7 @@ msgid "Accept"
msgstr "Aanvaar "
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "Description"
msgstr "Beskrywing"
@@ -3972,11 +4028,6 @@ msgstr ""
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Bad Mask"
-msgstr "Foutiewe pakket"
-
#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
@@ -4082,6 +4133,11 @@ msgstr "Maak boom toe"
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Loading printer configuration... Please wait"
+msgstr "Opsoek na Gerbruikers en Groepe .... Net 'n oomblik asb"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
@@ -4137,11 +4193,6 @@ msgstr "Drukker"
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup system"
-msgstr "Stel lerstelsels op"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
@@ -4537,12 +4588,12 @@ msgstr "Tabel"
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Model"
msgstr "Muis"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "USB printer #%s"
msgstr "Geen drukker"
@@ -4626,6 +4677,11 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
+msgid "On Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
@@ -4737,16 +4793,16 @@ msgstr ""
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Read"
-msgstr "Herspeel"
-
#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Read"
+msgstr "Herspeel"
+
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
@@ -4792,6 +4848,13 @@ msgstr ""
msgid "Right Control key"
msgstr "Eksterne drukker"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
+
#: ../../lang.pm:1
#, c-format
msgid "Zambia"
@@ -4817,16 +4880,16 @@ msgstr "Romanies (QWERTY)"
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr ""
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Egypt"
msgstr "Leeg"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Czech Republic"
+msgstr ""
+
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
@@ -4946,6 +5009,11 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
+msgid "Backup System"
+msgstr "Stel lerstelsels op"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid "Build Backup"
msgstr "Korrupte rugsteunler"
@@ -4987,11 +5055,72 @@ msgstr ""
msgid "Kiribati"
msgstr ""
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
+msgstr "Logitech Muis (seriaal, ou C7 tipe)"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr ""
+#: ../../help.pm:1
+#, c-format
+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"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
+"\n"
+"You will be presented with a list of different parameters to change to get\n"
+"an optimal graphical display: Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
+msgstr ""
+
#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
@@ -5060,169 +5189,6 @@ msgid ""
"information from the server(s)."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"drakTermServ Overview\n"
-"\t\t\t \n"
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel.\n"
-"\n"
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:\n"
-" \t\t\n"
-"\t\t\t\thost curly {\n"
-"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
-"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t#type fat;\n"
-"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
-"nbi\";\n"
-"\t\t\t\t\t#hdw_config true;\n"
-"\t\t\t\t}\n"
-"\t\t\t\n"
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating seperate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login priviledges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing "
-"clients.\n"
-"\t\t\t\n"
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network.\n"
-" \t\t\n"
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file.\n"
-"\n"
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files.\n"
-"\n"
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured.\n"
-"\t\t\n"
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-" \t\t(\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs it's images.\n"
-"\n"
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
-" \n"
-"\n"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
@@ -5278,8 +5244,7 @@ msgstr "%s bespeur"
msgid "/Autodetect _printers"
msgstr "Gebruik outobespeuring"
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#: ../../interactive/newt.pm:1
+#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr ""
@@ -5336,7 +5301,7 @@ msgstr "Individuele pakketseleksie"
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Location"
msgstr "Ligging"
@@ -5346,6 +5311,11 @@ msgstr "Ligging"
msgid "USA (cable-hrc)"
msgstr ""
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guatemala"
+msgstr "Portaal"
+
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Journalised FS"
@@ -5356,11 +5326,6 @@ msgstr "Gejoernaliseer"
msgid "Ethernet cards promiscuity check"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Guatemala"
-msgstr "Portaal"
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "This machine"
@@ -5371,14 +5336,14 @@ msgstr "(op hierdie rekenaar)"
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../standalone/drakbackup:1
+#: ../../lang.pm:1
#, c-format
-msgid "Select the files or directories and click on 'OK'"
+msgid "Bahrain"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Bahrain"
+msgid "Select the files or directories and click on 'OK'"
msgstr ""
#: ../../standalone/drakfloppy:1
@@ -5425,6 +5390,11 @@ msgstr ""
msgid "Maltese (US)"
msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "The creation of the boot floppy has been successfully completed \n"
+msgstr ""
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -5471,14 +5441,12 @@ msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgid "Thursday"
+msgstr "Donderdag"
#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"For a mulitsession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
#: ../../standalone/drakgw:1
@@ -5567,6 +5535,11 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie klinte\n"
"af kan aanvaar."
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Server Name"
+msgstr "Bediener"
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
@@ -5589,6 +5562,30 @@ msgid ""
"On which drive are you booting?"
msgstr ""
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+"WAARSKUWING\n"
+"\n"
+"DrakX moet nou u WIndowspartisie se grootte verander. Hierdie operasie\n"
+"IS GEVAARLIK. Indien u nie alreeds so gemaak het nie, moet u hierdie "
+"installasie\n"
+"verlaat, scandisk onder Windows loop en dalk ook defrag. Dan kan u terugkeer "
+"na\n"
+"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
+"OK."
+
#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
@@ -5705,13 +5702,6 @@ msgstr ""
"Stoor en herstel die stelselentropiepoel vir ho kwaliteit,\n"
"lukraaknommergenerasie."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
-
#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
@@ -5799,6 +5789,12 @@ msgstr ""
msgid "Cpuid level"
msgstr "Sekuriteitsvlak word gestel."
+#
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Novell server \"%s\", printer \"%s\""
+msgstr "Netwerkdrukker (sok)"
+
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Mongolian (cyrillic)"
@@ -5863,6 +5859,11 @@ msgstr ""
msgid "Benin"
msgstr "Belgies"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "SMB/Windows server \"%s\", share \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Path selection"
@@ -5878,6 +5879,11 @@ msgstr ""
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Custom & system settings"
+msgstr "Gespesialiseerde skyfpartisionering"
+
#: ../../partition_table/raw.pm:1
#, fuzzy, c-format
msgid ""
@@ -5935,6 +5941,11 @@ msgstr "Gaan voort"
msgid "Custom Restore"
msgstr "Aangepaste"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Saturday"
+msgstr "Saterdag"
+
#: ../../help.pm:1
#, c-format
msgid ""
@@ -6005,6 +6016,11 @@ msgstr "Installeer/Opgradeer"
msgid "%d packages"
msgstr "%d pakkette"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Costa Rica"
+msgstr ""
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -6037,11 +6053,6 @@ msgid ""
"\n"
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr ""
-
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Use libsafe for servers"
@@ -6067,26 +6078,16 @@ msgid ""
" allowed for Drakbackup (MB)"
msgstr ""
-#: ../../my_gtk.pm:1
-#, fuzzy, c-format
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../loopback.pm:1
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr "Sirkulre heg %s\n"
#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo/grub mode"
msgstr "LILO/GRUB metode"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Output"
-msgstr "Uitset"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Sirkulre heg %s\n"
-
#: ../../lang.pm:1
#, c-format
msgid "Martinique"
@@ -6130,6 +6131,11 @@ msgid ""
"running"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Weekday"
+msgstr "Woensdag"
+
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
@@ -6162,6 +6168,24 @@ msgstr ""
msgid "Floppy"
msgstr "Stoor op floppie"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -6197,6 +6221,11 @@ msgstr "SMB-bedienernaam"
msgid "Name Servers:"
msgstr "NIS-bediener"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Minute"
+msgstr "1 minuut"
+
#: ../../install_messages.pm:1
#, c-format
msgid ""
@@ -6230,6 +6259,11 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/_Expert mode"
+msgstr "Kundige bedryfsvlak"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
@@ -6242,16 +6276,16 @@ msgid ""
"available server."
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Micronesia"
msgstr "Masedonies"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
+
#: ../../steps.pm:1
#, c-format
msgid "License"
@@ -6262,6 +6296,56 @@ msgstr ""
msgid "This may take a moment to generate the keys."
msgstr ""
+#: ../../standalone/draksec:1
+#, c-format
+msgid ""
+"Here, you can setup the security level and administrator of your machine.\n"
+"\n"
+"\n"
+"The Security Administrator is the one who will receive security alerts if "
+"the\n"
+"'Security Alerts' option is set. It can be a username or an email.\n"
+"\n"
+"\n"
+"The Security Level menu allows you to select one of the six preconfigured "
+"security levels\n"
+"provided with msec. These levels range from poor security and ease of use, "
+"to\n"
+"paranoid config, suitable for very sensitive server applications:\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
+"very\n"
+"easy to use security level. It should only be used for machines not "
+"connected to\n"
+"any network and that are not accessible to everybody.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
+"security\n"
+"recommended for a computer that will be used to connect to the Internet as "
+"a\n"
+"client.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">High</span>: There are already some\n"
+"restrictions, and more automatic checks are run every night.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
+"enough\n"
+"to use the system as a server which can accept connections from many "
+"clients. If\n"
+"your machine is only a client on the Internet, you should choose a lower "
+"level.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
+"previous\n"
+"level, but the system is entirely closed and security features are at their\n"
+"maximum"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
@@ -6307,10 +6391,10 @@ msgstr ""
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/_Add Printer"
+msgstr "Drukker"
#: ../../standalone/drakbackup:1
#, c-format
@@ -6559,16 +6643,16 @@ msgstr "Watter partisie se grootte wil u verander?"
msgid "United States Minor Outlying Islands"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Djibouti"
msgstr "Aborteer"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "A tool to monitor your logs"
+msgstr ""
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
@@ -6584,6 +6668,11 @@ msgstr "LPD"
msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/Set as _Default"
+msgstr " (Verstek)"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Accept icmp echo"
@@ -6594,6 +6683,11 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Logitech CC Series with Wheel emulation"
+msgstr "Logitech CC Reeks (seriaal)"
+
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Splash selection"
@@ -6683,6 +6777,11 @@ msgstr "Selekteer 'n videokaart"
msgid "Remove selected server"
msgstr "Verwyder tou"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using dhcp) usb"
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
@@ -6808,6 +6907,11 @@ msgstr "Grieks"
msgid "Saint Kitts and Nevis"
msgstr ""
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Generic 3 Button Mouse with Wheel emulation"
+msgstr "Generiese 3-knop muis"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -6853,6 +6957,11 @@ msgid ""
"Try to change some parameters"
msgstr ""
+#: ../../printer/main.pm:1
+#, c-format
+msgid "TCP/IP host \"%s\", port %s"
+msgstr ""
+
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "User :"
@@ -6955,6 +7064,11 @@ msgstr ""
msgid "Mounted\n"
msgstr "Geheg\n"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configure CUPS"
+msgstr "Stel X op"
+
#: ../../help.pm:1
#, fuzzy, c-format
msgid "Graphical Interface"
@@ -7039,11 +7153,6 @@ msgstr ""
msgid "Monaco"
msgstr "Monitor"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when uneeded"
-msgstr ""
-
#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
@@ -7059,6 +7168,11 @@ msgstr "%s formatering ban %s het gefaal"
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "Floppy creation completed"
+msgstr "Konneksiespoed"
+
#: ../../help.pm:1
#, fuzzy, c-format
msgid "Upgrade"
@@ -7083,6 +7197,11 @@ msgstr ""
msgid "Kyrgyzstan"
msgstr ""
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Multi-function device on USB"
+msgstr ""
+
#: ../../help.pm:1
#, fuzzy, c-format
msgid "With basic documentation"
@@ -7104,6 +7223,11 @@ msgstr ""
"Skep 'n partisie of kliek op 'n bestaande een.\n"
"Kies dan Hegpunt en stel dit dan '/'."
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
+msgstr ""
+
#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
@@ -7114,11 +7238,6 @@ msgstr "Instaanbediener moet begin met http://"
msgid "South Africa"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr ""
-
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Eject tape after the backup"
@@ -7162,6 +7281,11 @@ msgid ""
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "3 buttons with Wheel emulation"
+msgstr "Knoppie-emulasie"
+
#: ../../standalone/drakperm:1
#, c-format
msgid "Sticky-bit"
@@ -7235,6 +7359,11 @@ msgstr ""
msgid "local config: false"
msgstr "Plaaslike lers"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "System settings"
+msgstr "Gespesialiseerde skyfpartisionering"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please choose your type of mouse."
@@ -7262,16 +7391,16 @@ msgstr ""
msgid "running"
msgstr "aktief"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "verstek"
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Indonesia"
msgstr "niks"
+#: ../../standalone/draksec:1
+#, c-format
+msgid "default"
+msgstr "verstek"
+
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "France [SECAM]"
@@ -7311,6 +7440,11 @@ msgid ""
"other \"goodies\", are available on our e-store:"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "March"
+msgstr "Maart"
+
#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
@@ -7367,6 +7501,11 @@ msgstr "TV-kaaer"
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/_Configure CUPS"
+msgstr "Stel X op"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
@@ -7452,6 +7591,11 @@ msgid ""
"offering professional solutions compatible with Mandrake Linux"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Authors: "
+msgstr "Programeeerders: "
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing is now disabled."
@@ -7510,12 +7654,22 @@ msgstr "Klaar"
msgid "The entered IP is not correct.\n"
msgstr "Is dit korrek?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please be sure that the cron daemon is included in your services."
+msgstr "Kies die pakkette wat u wil installeer"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Ethernet Card"
msgstr "Ethernetkaart"
-#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Delete selected printer"
+msgstr "Verwyder tou"
+
+#: ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "Info"
@@ -7626,13 +7780,6 @@ msgstr "Plaaslike drukker"
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Kies die pakkette wat u wil installeer"
-
#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
@@ -7722,11 +7869,6 @@ msgstr "LILO/grub installasie"
msgid "Israeli"
msgstr "Israelies"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "load setting"
-msgstr "Formatering"
-
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
@@ -7817,13 +7959,13 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
-msgid "Andorra"
-msgstr "Herroep"
+msgid "Botswana"
+msgstr "Estoniaans"
#: ../../lang.pm:1
#, fuzzy, c-format
-msgid "Botswana"
-msgstr "Estoniaans"
+msgid "Andorra"
+msgstr "Herroep"
#: ../../standalone/draksec:1
#, fuzzy, c-format
@@ -7906,6 +8048,11 @@ msgstr ""
msgid "Automatic Steps Configuration"
msgstr "Outomatiese Stappe Konfigurasie"
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr ""
+
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
@@ -7913,11 +8060,6 @@ msgid ""
"involved in the Free Software world!"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr ""
-
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select data to backup..."
@@ -7960,6 +8102,11 @@ msgstr ""
msgid "High"
msgstr "Hoog"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Add a new printer to the system"
+msgstr "Voeg 'n gebruiker by die stelsel"
+
#: ../../any.pm:1
#, c-format
msgid "NoVideo"
@@ -7975,7 +8122,7 @@ msgstr ""
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local Printers"
msgstr "Plaaslike drukker"
@@ -8051,6 +8198,11 @@ msgstr "Verlaat"
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "December"
+msgstr "Desember"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "sub generation of the cpu"
@@ -8153,16 +8305,16 @@ msgstr "X met herlaai"
msgid "Chad"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "India"
msgstr "Iranies"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
+
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Slovakia"
@@ -8413,14 +8565,21 @@ msgstr ""
"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
" U kan inligting hieroorvind by %s"
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr ""
+
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Haiti"
+msgid ""
+"Custom allows you to specify your own day and time. The other options use "
+"run-parts in /etc/crontab."
msgstr ""
#: ../../standalone/harddrake2:1
@@ -8606,14 +8765,6 @@ msgstr ""
msgid "Looking for available packages..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This should be a comma-seperated list of local users or email addresses that "
-"you want the backup results sent to. You will need a functioning mail "
-"transfer agent setup on your system."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Init Message"
@@ -8624,16 +8775,16 @@ msgstr "Beginboodskap"
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "Konneksiespoed"
-
#: ../../lang.pm:1
#, c-format
msgid "Cyprus"
msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection complete."
+msgstr "Konneksiespoed"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
@@ -8655,6 +8806,11 @@ msgstr "Netwerkkonfigurasie-assistent"
msgid "ISDN connection"
msgstr "ISDN konneksie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD-R / DVD-R"
+msgstr ""
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "primary"
@@ -8719,6 +8875,11 @@ msgid ""
"per second)"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Mandrake Linux Printer Management Tool"
+msgstr "Mandrake Linux Users Management Tool"
+
#: ../../pkgs.pm:1
#, c-format
msgid "important"
@@ -8729,6 +8890,18 @@ msgstr "belangrik"
msgid "Total Progress"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -8768,16 +8941,16 @@ msgstr ""
"Windows-bedryfstelsel te bekom.\n"
"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Users"
-msgstr "Gebruikerskode"
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Aruba"
msgstr "Grub"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Users"
+msgstr "Gebruikerskode"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
@@ -8798,6 +8971,11 @@ msgstr "Die wagwoorde stem nie ooreen nie."
msgid "Examples for correct IPs:\n"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose the media for backup."
+msgstr "Kies asb. 'n taal om te gebruik."
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
@@ -8987,6 +9165,11 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD-R/DVD-R to backup"
+msgstr ""
+
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "the number of buttons the mouse has"
@@ -9125,6 +9308,12 @@ msgid ""
"Backup Sources: \n"
msgstr ""
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "custom"
+msgstr "Aangepaste"
+
#: ../../standalone/logdrake:1
#, c-format
msgid "Content of the file"
@@ -9181,6 +9370,7 @@ msgid "Theme name"
msgstr "Drukkernaam:"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Help"
msgstr "/_Help"
@@ -9190,6 +9380,11 @@ msgstr "/_Help"
msgid "Choosing an arbitrary driver"
msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr ""
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
@@ -9202,11 +9397,6 @@ msgstr ""
msgid "the width of the progress bar"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr ""
-
#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
@@ -9224,17 +9414,16 @@ msgstr ""
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../interactive/http.pm:1
-#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#: ../../standalone/drakfont:1 ../../standalone/drakgw:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
+#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/drakperm:1
+#: ../../standalone/draksec:1 ../../standalone/logdrake:1
+#: ../../standalone/mousedrake:1 ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
msgstr "Kanselleer"
@@ -9281,33 +9470,16 @@ msgstr "Verwyder drukker"
msgid "View Last Log"
msgstr ""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"WAARSKUWING\n"
-"\n"
-"DrakX moet nou u WIndowspartisie se grootte verander. Hierdie operasie\n"
-"IS GEVAARLIK. Indien u nie alreeds so gemaak het nie, moet u hierdie "
-"installasie\n"
-"verlaat, scandisk onder Windows loop en dalk ook defrag. Dan kan u terugkeer "
-"na\n"
-"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
-"OK."
-
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Connection Type"
+msgstr "Konneksietipe:"
+
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid ""
@@ -9377,11 +9549,6 @@ msgstr "Daar was 'n fout met die installasie van die pakkette:"
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finish)"
-msgstr ""
-
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Not installed"
@@ -9482,20 +9649,11 @@ msgstr ""
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "/_Quit"
msgstr "Verlaat"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
@@ -9623,11 +9781,6 @@ msgstr "Toets asb. die muis"
msgid "Printing"
msgstr "Druk"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Unkown driver"
-msgstr "Onbekende model"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -9738,6 +9891,11 @@ msgstr ""
msgid "Add a new rule at the end"
msgstr "Voeg drukker by"
+#: ../../standalone/drakboot:1
+#, c-format
+msgid "LiLo and Bootsplash themes installation successful"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -9766,6 +9924,11 @@ msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "On Hard Drive"
+msgstr ""
+
#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "Installing packages..."
@@ -9776,17 +9939,17 @@ msgstr "Installeer pakket %s"
msgid "Dutch"
msgstr "Nederlands"
+#: ../../lang.pm:1
+#, c-format
+msgid "Angola"
+msgstr ""
+
#
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Die volgende pakkette gaan installeer word"
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr ""
-
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "service setting"
@@ -9850,6 +10013,45 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
+"\\$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+"\t\t\tsubnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
+"Clients can either \n"
+"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
+"and allows local \n"
+"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
+"This is enabled \n"
+"\t\t\tby creating separate config files associated with the client's IP "
+"address and creating \n"
+"\t\t\tread/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+"\t\t\twith the configuration, you can remove root login privileges from the "
+"client.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing clients."
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -9890,17 +10092,17 @@ msgstr "Vertoon inligting"
msgid "No network card"
msgstr "geen netwerkkaart gevind nie"
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons"
+msgstr "3 knoppies"
+
#
#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, c-format
msgid "Which filesystem do you want?"
msgstr "Watter lerstelsel verlang u?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 knoppies"
-
#: ../../lang.pm:1
#, c-format
msgid "Malta"
@@ -9949,16 +10151,16 @@ msgstr "Videokaart"
msgid "Resizing Windows partition"
msgstr "Windowslerstelselgrense word bereken"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Voorsiener DNS 1 (opsioneel)"
-
#: ../../lang.pm:1
#, c-format
msgid "Cameroon"
msgstr ""
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "Voorsiener DNS 1 (opsioneel)"
+
#: ../../install_interactive.pm:1
#, c-format
msgid ""
@@ -9968,9 +10170,15 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Saami (swedish/finnish)"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "Close"
msgstr "Sluit af"
@@ -10011,6 +10219,11 @@ msgstr ""
msgid "Iceland"
msgstr "Yslandies"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Network & Internet Configuration"
+msgstr "Netwerkkonfigurasie"
+
#: ../../common.pm:1
#, c-format
msgid "consolehelper missing"
@@ -10031,7 +10244,7 @@ msgstr ""
msgid "Ext2"
msgstr "Ext2"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
msgstr "Maak boom oop"
@@ -10047,7 +10260,6 @@ msgid ""
msgstr ""
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
msgstr "Kundige bedryfsvlak"
@@ -10118,6 +10330,20 @@ msgstr "moontlik"
msgid "When"
msgstr "Wiel"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"You need the Alcatel microcode.\n"
+"Download it at:\n"
+"%s\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hour"
+msgstr ""
+
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Second DNS Server (optional)"
@@ -10166,11 +10392,6 @@ msgid ""
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../ugtk.pm:1
-#, c-format
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
#: ../../any.pm:1
#, c-format
msgid ""
@@ -10211,6 +10432,25 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -10255,11 +10495,6 @@ msgstr ""
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
#: ../../install_messages.pm:1
#, c-format
msgid ""
@@ -10297,6 +10532,16 @@ msgstr ""
msgid "paranoid"
msgstr "Paranoes"
+#: ../../security/l10n.pm:1
+#, c-format
+msgid "Do not send mails when unneeded"
+msgstr ""
+
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Your scanner(s) will not be available on the network."
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid "Send mail report after each backup to:"
@@ -10458,15 +10703,20 @@ msgstr "Rugsteun u data eers asb."
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?"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Eritrea"
+msgstr "Kundige area"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Boot ISO"
msgstr ""
-#: ../../lang.pm:1
+#: ../../network/adsl.pm:1
#, fuzzy, c-format
-msgid "Eritrea"
-msgstr "Kundige area"
+msgid "Firmware needed"
+msgstr "indien nodig"
#
#: ../../standalone/drakfont:1
@@ -10582,6 +10832,11 @@ msgstr ""
msgid "Add a scanner manually"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Refresh"
+msgstr "Herlaai"
+
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Reload partition table"
@@ -10612,6 +10867,11 @@ msgstr ""
msgid "Boot"
msgstr "Basis"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " and the CD is in the drive"
+msgstr ""
+
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Tuner type:"
@@ -10671,6 +10931,11 @@ msgstr "Eksterne lpd drukkeropsies"
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Firmware copy succeeded"
+msgstr ""
+
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
@@ -10710,6 +10975,11 @@ msgstr ""
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Actions"
+msgstr "/_Aksies"
+
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Remove the last item"
@@ -10774,16 +11044,16 @@ msgstr "Grootte: %s"
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Do you want to click on this button?"
-msgstr "Wil u aboot gebruik?"
-
#: ../../lang.pm:1
#, c-format
msgid "Bahamas"
msgstr ""
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Do you want to click on this button?"
+msgstr "Wil u aboot gebruik?"
+
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Manual configuration"
@@ -10896,9 +11166,24 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "Authorize TCP connections X Window"
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independent "
+"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
+"and limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
#: ../../install_steps_interactive.pm:1
@@ -10941,12 +11226,6 @@ msgid ""
"new/changed hardware."
msgstr ""
-#
-#: ../../printer/cups.pm:1 ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Remote Printers"
-msgstr "Eksterne drukker"
-
#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
@@ -11001,6 +11280,11 @@ msgstr ""
msgid "Unselected All"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printer Management \n"
+msgstr "Bestuur Gebruikers \n"
+
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Domain Name Resolver"
@@ -11041,6 +11325,17 @@ msgstr "Muis"
msgid "Welcome to %s"
msgstr "Welkom by %s"
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+" drakhelp 0.1\n"
+"Copyright (C) 2003 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"Usage: \n"
+msgstr ""
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
@@ -11110,16 +11405,21 @@ msgstr "Internetkonneksiedeling"
msgid "Cuba"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "Plaaslike drukker"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "October"
+msgstr "Oktober"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Belize"
msgstr "Verstel Grootte"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Searching for new printers..."
+msgstr "Plaaslike drukker"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid " (multi-session)"
@@ -11144,6 +11444,11 @@ msgstr ""
msgid " Activate/Disable daily security check."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-CD-R.\n"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable libsafe if libsafe is found on the system"
@@ -11173,6 +11478,11 @@ msgstr ""
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Use my Windows partition"
+msgstr "Windowslerstelselgrense word bereken"
+
#: ../../Xconfig/card.pm:1
#, c-format
msgid "8 MB"
@@ -11208,6 +11518,26 @@ msgid ""
"- System Files:\n"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \t\ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be turned\n"
+" back off, retaining the configuration files, once the client machine "
+"is configured."
+msgstr ""
+
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Standalone Tools"
@@ -11256,6 +11586,14 @@ msgstr ""
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
+#: ../../keyboard.pm:1
+#, c-format
+msgid ""
+"This setting will be activated after the installation.\n"
+"During installation, you will need to use the Right Control\n"
+"key to switch between the different keyboard layouts."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Christmas Island"
@@ -11276,6 +11614,11 @@ msgstr ""
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Verify that %s is the correct path"
+msgstr "Is dit korrek?"
+
#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
@@ -11336,8 +11679,13 @@ msgstr ""
msgid "Turks and Caicos Islands"
msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "No Ip"
+msgstr ""
+
#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "<- Previous"
@@ -11358,7 +11706,7 @@ msgstr ""
msgid "Internet Connection Sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
@@ -11392,6 +11740,11 @@ msgstr "Verander drukkerkonfigurasie"
msgid "Saint Helena"
msgstr ""
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Parallel port #%s"
+msgstr "Drukkerbedienernaam"
+
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Security Level"
@@ -11423,6 +11776,14 @@ msgstr "Pools (QWERTZ uitleg)"
msgid "Syria"
msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet 450, Sony IJP-V100), "
+"an HP PhotoSmart or an HP LaserJet 2200?"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
@@ -11480,6 +11841,11 @@ msgstr ""
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lergids moet altyd in die wortellerstelsel bly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Across Network"
+msgstr ""
+
#: ../../keyboard.pm:1
#, c-format
msgid "CapsLock key"
@@ -11553,7 +11919,7 @@ msgstr "Nuwe drukkernaam"
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../ugtk.pm:1 ../../standalone/logdrake:1
+#: ../../standalone/logdrake:1
#, c-format
msgid "logdrake"
msgstr ""
@@ -11672,11 +12038,6 @@ msgstr ""
msgid "Hungary"
msgstr "Hongaars"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Total progess"
-msgstr "Toetsbladsye"
-
#: ../../lang.pm:1
#, c-format
msgid "New Zealand"
@@ -11699,6 +12060,11 @@ msgstr ""
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Switching from ext2 to ext3"
@@ -11709,11 +12075,6 @@ msgstr "Oorskakeling van ext2 na ext3"
msgid "LPRng"
msgstr "LPRng"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr ""
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Browse to new restore repository."
@@ -11780,9 +12141,14 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
-msgid "on Hard Drive"
+msgid "Backups on unmountable media - Use Catalog to restore"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "January"
+msgstr "Januarie"
+
#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Password history length"
@@ -11881,6 +12247,16 @@ msgstr ""
msgid "Japan (broadcast)"
msgstr ""
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Mozambique"
@@ -11936,6 +12312,11 @@ msgstr ""
msgid "Local Printer"
msgstr "Plaaslike drukker"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "Waar wil u toestel %s heg?"
+
#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
@@ -11966,21 +12347,21 @@ msgstr "Kabelkonneksie bespeur"
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "/_Report Bug"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Verstel Grootte"
+msgstr "/_Raporteer 'n Fout"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Dominica"
msgstr "NIS-domein"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "Verstel Grootte"
+
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
@@ -12034,6 +12415,36 @@ msgstr "Muistoestel: %s\n"
msgid "Reselect correct fonts"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs its images."
+msgstr ""
+
#: ../../help.pm:1
#, c-format
msgid ""
@@ -12140,6 +12551,11 @@ msgid ""
"are directly connected to your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+#: ../../network/modem.pm:1
+#, c-format
+msgid "You don't have any winmodem"
+msgstr ""
+
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "type: %s"
@@ -12150,6 +12566,14 @@ msgstr "Tipe:"
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"This should be a comma-separated list of local users or email addresses that "
+"you want the backup results sent to. You will need a functioning mail "
+"transfer agent setup on your system."
+msgstr ""
+
#: ../../standalone/draksound:1
#, fuzzy, c-format
msgid "No Sound Card detected!"
@@ -12262,6 +12686,11 @@ msgstr ""
msgid "Comoros"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "May"
+msgstr "Mei"
+
#: ../../standalone/drakboot:1
#, c-format
msgid "Yaboot mode"
@@ -12383,6 +12812,11 @@ msgid ""
"development environments."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No devices found"
+msgstr "Plaaslike drukker"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Truly minimal install (especially no urpmi)"
@@ -12422,16 +12856,16 @@ msgstr ""
msgid "Where do you want to mount %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "Herstel vanaf ler"
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Algeria"
msgstr "seriaal"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Via Network"
+msgstr "Herstel vanaf ler"
+
#: ../../any.pm:1
#, c-format
msgid "Initrd-size"
@@ -12450,16 +12884,31 @@ msgstr ""
msgid "\tBackups use tar and gzip\n"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Set as default"
+msgstr "verstek"
+
#: ../../Xconfig/card.pm:1
#, c-format
msgid "2 MB"
msgstr "2 MB"
+#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configured on this machine"
+msgstr "(op hierdie rekenaar)"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Both Control keys simultaneously"
msgstr ""
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid " --help - display this help \n"
+msgstr ""
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -12548,15 +12997,6 @@ msgstr ""
msgid "Kenya"
msgstr "Sleutelbord"
-#: ../../share/advertising/04-configuration.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
-"tool to fully adapt your computer to the use you make of it. Configure and "
-"customize elements such as the security level, the peripherals (screen, "
-"mouse, keyboard...), the Internet connection and much more!"
-msgstr ""
-
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
@@ -12582,6 +13022,29 @@ msgstr "herlaaiskyfskepping"
msgid "Both Shift keys simultaneously"
msgstr ""
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+" --id <id_label> - load the html help page which refers to id_label\n"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
@@ -12741,23 +13204,23 @@ msgstr ""
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr ""
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakgw:1 ../../standalone/harddrake2:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Yes"
msgstr "Ja"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr ""
-
#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
@@ -12840,11 +13303,6 @@ msgstr "Kies die konneksie wat u wil konfigureer"
msgid "Please wait, setting security level..."
msgstr "Sekuriteitsvlak word gestel."
-#: ../../share/advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.1: the ultimate development platform"
-msgstr ""
-
#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
@@ -12940,7 +13398,7 @@ msgstr "Plaaslike drukker"
#: ../../install_messages.pm:1
#, c-format
-msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
msgstr ""
#: ../../security/help.pm:1
@@ -12958,62 +13416,6 @@ msgstr "Plaaslike drukker"
msgid "Empty"
msgstr "Leeg"
-#: ../../help.pm:1
-#, c-format
-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"
-"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
-"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If it is not the case, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the case that different servers are available for your card, with or\n"
-"without 3D acceleration, you are then asked to choose the server that best\n"
-"suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is correct, you can choose from\n"
-"this list the monitor you actually have connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"hardware. Choose the one that best suits your needs (you will be able to\n"
-"change that after installation though). A sample of the chosen\n"
-"configuration is shown in the monitor.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" the system will try to open a graphical screen at the desired\n"
-"resolution. If you can see the message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you cannot see the message, it\n"
-"means that some part of the autodetected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds, bringing you back to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-
#: ../../standalone/draksplash:1
#, c-format
msgid "text width"
@@ -13045,6 +13447,21 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images. To create the file \n"
+" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \t\tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Interface \"%s\""
@@ -13117,8 +13534,7 @@ msgstr "Stel muistoestel op"
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../help.pm:1 ../../ugtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakfont:1
+#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
#, c-format
msgid "OK"
msgstr "OK"
@@ -13133,6 +13549,11 @@ msgstr "Jugoslaavs (latynse uitleg)"
msgid "Installing"
msgstr "Besig met installasie"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Logitech MouseMan with Wheel emulation"
+msgstr "Logitech MouseMan"
+
#: ../../any.pm:1
#, c-format
msgid "Launch userdrake"
@@ -13237,14 +13658,14 @@ msgstr "Swak"
msgid "Report check result by mail"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../lang.pm:1
#, c-format
-msgid "The DHCP start range"
+msgid "Grenada"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Grenada"
+msgid "The DHCP start range"
msgstr ""
#: ../../any.pm:1
@@ -13258,20 +13679,12 @@ msgid ", %s sectors"
msgstr ", %s sektore"
#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "No"
msgstr "Nee"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
-"PhotoSmart or an HP LaserJet 2200?"
-msgstr ""
-
#: ../../lang.pm:1
#, c-format
msgid "Guadeloupe"
@@ -13339,16 +13752,16 @@ msgstr "NetWare drukkeropsies"
msgid "%s BootSplash (%s) preview"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "February"
+msgstr "Februarie"
+
#: ../../standalone/drakfloppy:1
#, c-format
msgid "General"
msgstr "Algemeen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing system: "
-msgstr "Drukkerstelsel:"
-
#: ../../security/l10n.pm:1
#, c-format
msgid "/etc/issue* exist"
@@ -13364,6 +13777,16 @@ msgstr "Voeg 'n gebruiker by"
msgid "Network configuration (%d adapters)"
msgstr "Netwerkkonfigurasie (%d toestelle)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "April"
+msgstr "April"
+
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Deactivate now"
+msgstr "deaktiveer nou dadelik"
+
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "Mandatory package %s is missing"
@@ -13374,7 +13797,7 @@ msgstr ""
msgid "Philippines"
msgstr ""
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
@@ -13386,6 +13809,11 @@ msgstr ""
msgid "Ok"
msgstr "OK"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "drakTermServ Overview"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print Queue Name"
@@ -13587,6 +14015,11 @@ msgstr "Gebruik vir teruglus"
msgid "Mandrake Bug Report Tool"
msgstr ""
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Apply filter"
+msgstr "Pas filter toe"
+
#: ../../network/adsl.pm:1
#, c-format
msgid "use pppoe"
@@ -13617,21 +14050,26 @@ msgstr "Oordrag"
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "More Options"
-msgstr "Module opsies:"
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Afghanistan"
msgstr "Albanies"
#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "More Options"
+msgstr "Module opsies:"
+
+#: ../../standalone/drakbackup:1
#, c-format
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
+msgstr ""
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -13646,11 +14084,6 @@ msgstr ""
"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
"konfigurasie."
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr ""
-
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Add Client -->"
@@ -13705,14 +14138,21 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Right \"Windows\" key"
+msgid ""
+"For a multisession CD, only the first session will erase the cdrw. Otherwise "
+"the cdrw is erased before each backup."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "USB printer"
+msgstr "Geen drukker"
+
+#: ../../keyboard.pm:1
#, c-format
-msgid "CDROM / DVDROM"
+msgid "Right \"Windows\" key"
msgstr ""
#: ../../security/help.pm:1
@@ -13792,6 +14232,11 @@ msgstr "TB"
msgid "FATAL"
msgstr "FAT"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Refresh the list"
+msgstr "Herlaai die lys"
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -13803,7 +14248,7 @@ msgid ""
msgstr ""
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Delete"
msgstr "Uitwis"
@@ -13858,6 +14303,11 @@ msgstr "Europese protokol"
msgid ", printer \"%s\" on server \"%s\""
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Note that currently all 'net' media also use the hard drive."
+msgstr ""
+
#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
@@ -13978,6 +14428,11 @@ msgstr "toestel"
msgid "Enter the directory to save to:"
msgstr "Toets asb. die muis"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greece"
+msgstr "Grieks"
+
#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "All"
@@ -13989,10 +14444,15 @@ msgstr "Alles"
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "July"
+msgstr "Julie"
+
+#: ../../printer/main.pm:1
#, fuzzy, c-format
-msgid "Greece"
-msgstr "Grieks"
+msgid "Prints into %s"
+msgstr "Fout in die skryf van %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -14066,6 +14526,11 @@ msgstr "Eksterne Netware-drukker"
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Friday"
+msgstr "Vrydag"
+
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnection from Internet complete."
@@ -14119,6 +14584,11 @@ msgstr "Kan nie %s oopmaak nie: %s\n"
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Could not install the packages needed to share your scanner(s)."
+msgstr ""
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "This will take a few minutes."
@@ -14129,6 +14599,11 @@ msgstr ""
msgid "Burkina Faso"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "June"
+msgstr "Junie"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use scanners on remote computers"
@@ -14185,6 +14660,15 @@ msgstr ""
msgid "Laos"
msgstr ""
+#: ../../share/advertising/04-configuration.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.2 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
+msgstr ""
+
#: ../../security/help.pm:1
#, c-format
msgid "Activate/Disable ethernet cards promiscuity check."
@@ -14247,6 +14731,11 @@ msgstr ""
msgid "Saint Pierre and Miquelon"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "September"
+msgstr "September"
+
#: ../../standalone/draksplash:1
#, c-format
msgid "saving Bootsplash theme..."
@@ -14365,7 +14854,7 @@ msgstr ""
msgid "Marshall Islands"
msgstr ""
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Is this correct?"
msgstr "Is dit korrek?"
@@ -14431,11 +14920,21 @@ msgstr "NCP-bedienernaam ontbreek!"
msgid "Suriname"
msgstr "Drukkernaam:"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Use a floppy"
+msgstr "Stoor op floppie"
+
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "Laat CD-herlaai toe?"
+#: ../../fs.pm:1
+#, c-format
+msgid "Give write access to ordinary users"
+msgstr ""
+
#: ../../help.pm:1
#, c-format
msgid "Graphical Environment"
@@ -14446,11 +14945,6 @@ msgstr "Grafiese omgewing"
msgid "Gibraltar"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "on Tape Device"
-msgstr ""
-
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Do nothing"
@@ -14491,6 +14985,7 @@ msgstr ""
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
+#: ../../standalone/drakperm:1 ../../standalone/draksec:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "Help"
@@ -14555,6 +15050,11 @@ msgstr ""
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "URI: %s"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid "Valid user list changed, rewriting config file."
@@ -14578,16 +15078,16 @@ msgstr ""
msgid "Protocol for the rest of the world"
msgstr "Protokol vir die res van die wreld"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digit and upcase letters"
-msgstr ""
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Activate now"
+msgstr "Aktiveer nou dadelik"
+
#: ../../Xconfig/card.pm:1
#, c-format
msgid "64 MB or more"
@@ -14688,6 +15188,11 @@ msgstr "Laai dit"
msgid "Add host/network"
msgstr ""
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Scannerdrake will not be started now."
+msgstr ""
+
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model name"
@@ -14698,11 +15203,6 @@ msgstr "Modulenaam"
msgid "Albania"
msgstr "Albanies"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CDR/DVDR in drive!"
-msgstr ""
-
#: ../../lang.pm:1
#, c-format
msgid "British Indian Ocean Territory"
@@ -14713,6 +15213,11 @@ msgstr ""
msgid "Normal Mode"
msgstr "Normale modus"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CD-R/DVD-R in drive!"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer connection type"
@@ -14823,6 +15328,11 @@ msgstr "Ander"
msgid "burner"
msgstr "Drukker"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " (Default is all users)"
+msgstr "Verstek drukker"
+
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "No remote machines"
@@ -14861,6 +15371,11 @@ msgstr ""
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_0"
@@ -14873,11 +15388,6 @@ msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "United Arab Emirates"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
msgid "Thailand"
msgstr ""
@@ -14886,6 +15396,11 @@ msgstr ""
msgid "Card IO_1"
msgstr "Kaart IO_1"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Search:"
+msgstr "Soek"
+
#: ../../lang.pm:1
#, c-format
msgid "Kazakhstan"
@@ -14911,74 +15426,29 @@ msgstr ""
msgid "Mandrake Linux Installation %s"
msgstr "Mandrake Linux Installasie %s"
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Unknown driver"
+msgstr "Onbekende model"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Opbelopsies"
-
#: ../../lang.pm:1
#, c-format
msgid "Bouvet Island"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm:1
#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
+msgid "Dialup options"
+msgstr "Opbelopsies"
-#: ../../standalone/draksec:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The Security Administrator is the one who will receive security alerts if "
-"the\n"
-"'Security Alerts' option is set. It can be a username or an email.\n"
-"\n"
-"\n"
-"The Security Level menu enable to select one of the six preconfigured "
-"security\n"
-"provided with msec. These levels range from poor security and ease of use, "
-"to\n"
-"paranoid config, suitable for very sensitive server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
+msgid "If no port is given, 631 will be taken as default."
msgstr ""
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
@@ -15011,6 +15481,11 @@ msgstr "Beheersentrum"
msgid "\t-Network by webdav.\n"
msgstr ""
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", multi-function device on a parallel port"
+msgstr "Drukkerbedienernaam"
+
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -15034,13 +15509,13 @@ msgstr "Plaaslike drukker"
#: ../../mouse.pm:1
#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Reeks (seriaal)"
+msgid "2 buttons"
+msgstr "2 knoppies"
#: ../../mouse.pm:1
#, c-format
-msgid "2 buttons"
-msgstr "2 knoppies"
+msgid "Logitech CC Series"
+msgstr "Logitech CC Reeks (seriaal)"
#: ../../network/isdn.pm:1
#, c-format
@@ -15062,6 +15537,11 @@ msgstr "Stoor op floppie"
msgid "Check open ports"
msgstr "Op poort %s bespeur"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Edit selected printer"
+msgstr "%s bespeur"
+
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer auto-detection"
@@ -15171,7 +15651,7 @@ msgid ""
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Next"
msgstr "Volgende ->"
@@ -15236,6 +15716,11 @@ msgstr ""
msgid "NIS Domain"
msgstr "NIS-domein"
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -15243,11 +15728,6 @@ msgid ""
"- User Files:\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr ""
-
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount options"
@@ -15321,6 +15801,11 @@ msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
msgid "Host name or IP."
msgstr "Rekenaarnaam"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Edit"
+msgstr "/_Redigeer"
+
#: ../../fsedit.pm:1
#, c-format
msgid "simple"
@@ -15336,21 +15821,26 @@ msgstr "Verwydeer almal"
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
#: ../../lang.pm:1
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
+
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Boot disk creation"
msgstr "herlaaiskyfskepping"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Monday"
+msgstr "Maandag"
+
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown model"
@@ -15373,6 +15863,7 @@ msgstr "Stel lerstelsels op"
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_File"
msgstr "/_Ler"
@@ -15389,6 +15880,11 @@ msgid ""
"up a firewall to protect your machine from network attacks."
msgstr ""
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Editable"
+msgstr "deaktiveer"
+
#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
@@ -15512,7 +16008,7 @@ msgstr ""
msgid "Kernel:"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "/_About..."
msgstr "/_Aangaande..."
@@ -15578,6 +16074,11 @@ msgstr ""
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Add Printer"
+msgstr "Drukker"
+
#: ../../security/help.pm:1
#, c-format
msgid ""
@@ -15604,16 +16105,16 @@ msgstr "Klaar"
msgid "Web Server"
msgstr "Bediener"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Chile"
msgstr "Sluit af"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -15802,6 +16303,11 @@ msgstr "Laai vanaf floppie"
msgid "The following printer was auto-detected. "
msgstr "Dei volgende pakkette gaan verwyder word"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Uses command %s"
+msgstr "Poort"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Boot Floppy"
@@ -15838,6 +16344,11 @@ msgid "Configure bootsplash picture"
msgstr "Konfigureer dienste"
#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Georgia"
+msgstr "Norweegs"
+
+#: ../../lang.pm:1
#, c-format
msgid "China"
msgstr ""
@@ -15847,11 +16358,6 @@ msgstr ""
msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Georgia"
-msgstr "Norweegs"
-
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Reading data of installed printers..."
@@ -15921,11 +16427,21 @@ msgstr ""
msgid "Zeroconf Host name"
msgstr "Rekenaarnaam"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Custom setup/crontab entry:"
+msgstr ""
+
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configure CUPS printing system"
+msgstr "Stel netwerk op"
+
#: ../../lang.pm:1
#, c-format
msgid "Ecuador"
@@ -15989,16 +16505,16 @@ msgstr "Azerbaidjani (latyns)"
msgid "Package not installed"
msgstr "Verlaay installasie"
-#: ../../share/advertising/12-mdkexpert.pl:1
-#, fuzzy, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Kundige"
-
#: ../../lang.pm:1
#, c-format
msgid "American Samoa"
msgstr ""
+#: ../../share/advertising/12-mdkexpert.pl:1
+#, fuzzy, c-format
+msgid "Become a MandrakeExpert"
+msgstr "Kundige"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Protocol"
@@ -16065,8 +16581,9 @@ msgstr ""
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../network/modem.pm:1 ../../standalone/drakfloppy:1
+#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
msgid "Warning"
msgstr "Waarskuwing"
@@ -16083,11 +16600,6 @@ msgstr ""
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
-
#: ../../any.pm:1
#, c-format
msgid "access to X programs"
@@ -16098,6 +16610,11 @@ msgstr ""
msgid "Computing the size of the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Refresh"
+msgstr "/_Herlaai"
+
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
@@ -16171,6 +16688,11 @@ msgstr ""
msgid "Left Alt key"
msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Load setting"
+msgstr "Formatering"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -16180,6 +16702,11 @@ msgid ""
"choose the correct model from the list."
msgstr ""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Set selected printer as the default printer"
+msgstr "Maak hierdie die verstekdrukker"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -16322,6 +16849,11 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr ""
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Firmware copy failed, file %s not found"
+msgstr ""
+
#: ../../raid.pm:1
#, c-format
msgid "Not enough partitions for RAID level %d\n"
@@ -16414,6 +16946,7 @@ msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Options"
msgstr "/_Opsies"
@@ -16698,6 +17231,11 @@ msgid ""
"at boot-time to maintain the system configuration."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "DVD-R device"
+msgstr "toestel"
+
#
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -16749,10 +17287,10 @@ msgid ""
"Firmware Delay expires."
msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No mouse"
-msgstr "Geen muis"
+msgid "Wednesday"
+msgstr "Woensdag"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -16764,6 +17302,11 @@ msgstr "Duitsland"
msgid "Austria"
msgstr "seriaal"
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "Geen muis"
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Choose your CD/DVD media size (MB)"
@@ -16779,7 +17322,7 @@ msgstr ""
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
msgstr "Maak boom toe"
@@ -16832,10 +17375,10 @@ msgstr ""
msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
-msgid "Level 1"
-msgstr "vlak"
+msgid "tape"
+msgstr "Tipe"
#: ../../standalone/drakconnect:1
#, c-format
@@ -16847,35 +17390,32 @@ msgstr "DHCP-klint"
msgid "List users on display managers (kdm and gdm)"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 2"
-msgstr "vlak"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Herstel van ler %s het gefaal: %s"
-
#: ../../mouse.pm:1
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 3"
-msgstr "vlak"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 4"
-msgstr "vlak"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Restoring from file %s failed: %s"
+msgstr "Herstel van ler %s het gefaal: %s"
-#: ../../standalone/drakperm:1
+#: ../../fsedit.pm:1
#, fuzzy, c-format
-msgid "Level 5"
-msgstr "vlak"
+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 lose 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"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -16907,11 +17447,6 @@ msgstr "Outotydsinkronisasie met NTP"
msgid "Backup files not found at %s."
msgstr ""
-#: ../../share/advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.1"
-msgstr ""
-
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (phonetic)"
@@ -16927,6 +17462,11 @@ msgstr "Kaartgeheue (DMA)"
msgid "Thin Client"
msgstr "DHCP-Klint"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.2"
+msgstr ""
+
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Start Server"
@@ -17076,6 +17616,17 @@ msgstr ""
msgid ", USB printer"
msgstr "Geen drukker"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid ""
+"Unable to properly close mkbootdisk:\n"
+"\n"
+"<span foreground=\"Red\"><tt>%s</tt></span>"
+msgstr ""
+"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+" %s \n"
+" %s"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -17093,6 +17644,11 @@ msgstr "Kies die partisies om te formatteer"
msgid "Configure X"
msgstr "Stel X op"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "hd"
+msgstr ""
+
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (traditional \"F\" model)"
@@ -17205,6 +17761,11 @@ msgstr ""
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Multi-function device"
+msgstr ""
+
#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
@@ -17213,16 +17774,6 @@ msgid ""
"Have a look at /etc/services for information."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is correct, you can choose from\n"
-"this list the monitor you actually have connected to your computer."
-msgstr ""
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "\t-Tape \n"
@@ -17292,6 +17843,11 @@ msgstr "Kies die pakkette wat u wil installeer"
msgid "Papua New Guinea"
msgstr ""
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Multi-function device on a parallel port"
+msgstr "Drukkerbedienernaam"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Serbian (cyrillic)"
@@ -17380,6 +17936,16 @@ msgstr ""
"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Irish"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Sunday"
+msgstr "Sondag"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Internet Connection Configuration"
@@ -17466,6 +18032,12 @@ msgstr "RAID-skywe %s\n"
msgid "Liberia"
msgstr "seriaal"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"Could not install the packages needed to set up a scanner with Scannerdrake."
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -17502,6 +18074,17 @@ msgstr "Drukkerdata word gelees..."
msgid "enable radio support"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \t\ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \t\tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing to hosts: "
@@ -17635,6 +18218,11 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
+#: ../../share/advertising/06-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.2: the ultimate development platform"
+msgstr ""
+
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Detected model: %s"
@@ -17658,11 +18246,6 @@ msgstr ""
msgid "if set to yes, run the daily security checks."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
-
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Azerbaijan"
@@ -17670,9 +18253,21 @@ msgstr "Albanies"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "Device name to use for backup"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "No tape in %s!"
msgstr ""
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+" --doc <link> - link to another web page ( for WM welcome "
+"frontend)\n"
+msgstr ""
+
#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (US)"
@@ -17892,6 +18487,65 @@ msgstr ""
"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (pine, mutt, tin) "
"en om ook die web deur te blaai."
+#, fuzzy
+#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#, fuzzy
+#~ msgid "Hostname configuration"
+#~ msgstr "Kleurkonfigurasie"
+
+#
+#, fuzzy
+#~ msgid "Hostname"
+#~ msgstr "Rekenaarnaam"
+
+#
+#, fuzzy
+#~ msgid "Remote Printers"
+#~ msgstr "Eksterne drukker"
+
+#~ msgid "Printing system: "
+#~ msgstr "Drukkerstelsel:"
+
+#, fuzzy
+#~ msgid "Level 1"
+#~ msgstr "vlak"
+
+#, fuzzy
+#~ msgid "Level 2"
+#~ msgstr "vlak"
+
+#, fuzzy
+#~ msgid "Level 3"
+#~ msgstr "vlak"
+
+#, fuzzy
+#~ msgid "Level 4"
+#~ msgstr "vlak"
+
+#, fuzzy
+#~ msgid "Level 5"
+#~ msgstr "vlak"
+
+#, fuzzy
+#~ msgid "Insert floppy and press %s"
+#~ msgstr "Sit 'n skyf in aandrywer %s"
+
+#, fuzzy
+#~ msgid "Load"
+#~ msgstr "Yslandies"
+
+#, fuzzy
+#~ msgid "Bad Ip"
+#~ msgstr "Kaart I/O"
+
+#~ msgid "Output"
+#~ msgstr "Uitset"
+
#~ msgid "Please relog into %s to activate the changes"
#~ msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 81979f7ca..4a158666b 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-08-13 03:40+0200\n"
-"PO-Revision-Date: 2003-06-16 21:11-0300\n"
+"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"PO-Revision-Date: 2003-08-19 14:36-0300\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -59,6 +59,11 @@ msgstr "منفذ طابعة الشبكة"
msgid "Please insert floppy disk:"
msgstr "فضلاً أدخل قرص مرن:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "DrakTermServ"
+msgstr ""
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "PCMCIA"
@@ -88,6 +93,11 @@ msgstr "ما نوع المدخل الذي تريد اضافته؟"
msgid "Restore partition table"
msgstr "استعادة جدول التقسيم"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure hostname..."
+msgstr "إعداد اسم المستضيف..."
+
#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
@@ -156,9 +166,9 @@ msgid "Gateway device"
msgstr "جهاز البوابة"
#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
+#, c-format
msgid "Advanced preferences"
-msgstr "خيارات متقدمة"
+msgstr "تفضيلات متقدمة"
#: ../../standalone/drakbackup:1
#, c-format
@@ -171,10 +181,11 @@ msgid "Ethernetcard"
msgstr "بطاقة ايثرنت"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-"if set, send the mail report to this email address else send it to root."
+"عند التعيين, أرسل التقرير بالبريد الى هذا العنوان أو قم بإرساله الى المستخدم "
+"الجذر"
#: ../../standalone/drakconnect:1
#, c-format
@@ -182,9 +193,9 @@ msgid "Parameters"
msgstr "Parameters"
#: ../../standalone/draksec:1
-#, fuzzy, c-format
+#, c-format
msgid "no"
-msgstr "المعلومات"
+msgstr "لا"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -201,11 +212,6 @@ msgstr "الواجهة:"
msgid "Select installation class"
msgstr "اختر نوع التثبيت"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "on CDROM"
-msgstr "على القرص المدمج"
-
#: ../../network/tools.pm:1
#, c-format
msgid ""
@@ -238,9 +244,9 @@ msgid "Error writing to file %s"
msgstr "خطأ أثناء الكتابة الى الملف %s"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Report check result to syslog"
-msgstr "if set to yes, report check result to syslog."
+msgstr "أرسل تقرير بنتيجة الاختبار الى syslog"
#: ../../services.pm:1
#, c-format
@@ -266,6 +272,11 @@ msgstr "سيتم تثبيت الحزم التالية"
msgid "CUPS configuration"
msgstr "CUPS تهيئة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Total progress"
+msgstr "اجمالي التقدم"
+
#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
@@ -293,7 +304,7 @@ msgstr ""
"\n"
#: ../../standalone/draksec:1
-#, fuzzy, c-format
+#, c-format
msgid "yes"
msgstr "نعم"
@@ -346,9 +357,9 @@ msgid "No CD device defined!"
msgstr "لم يتم تعريف جهاز قرص مدمج!"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "\tUse .backupignore files\n"
-msgstr "استخدم quota لملفات النسخ الإحتياطي."
+msgstr "\tاستخدم ملفات .backupignore\n"
#: ../../keyboard.pm:1
#, c-format
@@ -366,9 +377,9 @@ msgid "256 kB"
msgstr "256 كيلوبايت"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Don't rewind tape after backup"
-msgstr "استخم الشريط للنسخ الإحتياطي"
+msgstr "لا تقم بإرجاع الشريط بعد النسخ"
#: ../../any.pm:1
#, c-format
@@ -418,6 +429,11 @@ msgstr "تم عمل التغيير, هل تريد اعادة تشغيل خدمة
msgid "Swiss (French layout)"
msgstr "السويسرية (تصميم فرنسي)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "August"
+msgstr "أغسطس"
+
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
@@ -439,9 +455,14 @@ msgid "Soundcard"
msgstr "بطاقة الصوت"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
+msgid "Month"
+msgstr "الشهر"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "Search for files to restore"
-msgstr "اختر وسيط آخر للاستعادة منه"
+msgstr "ابحث عن الملفات المطلوب استعادتها"
#: ../../lang.pm:1
#, c-format
@@ -461,9 +482,9 @@ msgid "Level %s\n"
msgstr "المستوى %s\n"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Syriac (phonetic)"
-msgstr "الأرمينية (صوتي)"
+msgstr "السريانية (صوتي)"
#: ../../lang.pm:1
#, c-format
@@ -522,9 +543,9 @@ msgid "Search installed fonts"
msgstr "ابحث في الخطوط المثبتة"
#: ../../standalone/drakboot:1
-#, fuzzy, c-format
+#, c-format
msgid "Default desktop"
-msgstr "الإفتراضي"
+msgstr "سطح المكتب الإفتراضي"
#: ../../lang.pm:1
#, c-format
@@ -587,6 +608,11 @@ msgstr "اسم المستخدم"
msgid "Left \"Windows\" key"
msgstr "مفتاح \"Windows\" الأيسر"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr "غويانا"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Server Configuration"
@@ -601,16 +627,16 @@ msgstr ""
"يُستخدم للدليل:\n"
" يمكن فقط لمالك هذا الدليل أو الملف الغاؤه"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "غويانا"
-
#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " على خادم Novell \"%s\", الطابعة \"%s\""
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printer Name"
+msgstr "اسم صف الطابعة"
+
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Remove a module"
@@ -899,9 +925,9 @@ msgstr ""
"لأي سؤال حول هذه الوثيقة, فضلاً اتصل بـ MandrakeSoft S.A. \n"
#: ../../standalone/drakboot:1
-#, fuzzy, c-format
+#, c-format
msgid "Default user"
-msgstr "الطابعة الإفتراضية"
+msgstr "المستخدم الإفتراضي"
#: ../../standalone/draksplash:1
#, c-format
@@ -1050,20 +1076,15 @@ msgstr ""
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
-"\n"
-"Note that currently all 'net' media also use the hard drive."
-msgstr ""
-"تأكد من أن مراقب cron موجود ضمن خدمات النظام. \n"
-"\n"
-"لاحظ أن كل وسائط الشبكة تستخدم القرص الصلب."
+#, fuzzy, c-format
+msgid "Unable to find backups to restore...\n"
+msgstr "رجاء اختر تاريخ الإستعادة..."
#: ../../standalone/harddrake2:1
#, c-format
@@ -1139,9 +1160,9 @@ msgid "Interface"
msgstr "الواجهة"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Multisession CD"
-msgstr " (متعدد الجلسات)"
+msgstr "قرص مدمج متعدد الجلسات"
#: ../../modules/parameters.pm:1
#, c-format
@@ -1183,11 +1204,6 @@ msgstr "Model stepping"
msgid "Rwanda"
msgstr "رواندا"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "هل لديك أي واجهات %s؟"
-
#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
@@ -1198,10 +1214,15 @@ msgstr "السويسرية"
msgid "Brunei Darussalam"
msgstr "سلطنة بروناي"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "هل لديك أي واجهات %s؟"
+
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "You must be root to read configuration file. \n"
-msgstr "قم بالنسخ الآن من ملف التهيئة"
+msgstr "يجب أن تكون المستخدم الجذر لقراءة ملف التهيئة. \n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -1291,15 +1312,20 @@ msgstr ""
msgid "Configure Internet Access..."
msgstr "إعداد الدخول الى الإنترنت..."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please choose the time interval between each backup"
+msgstr "فضلا اختر الفترة ما بين كل عملية نسخ احتياطي"
+
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
msgstr "النرويج"
#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
+#, c-format
msgid "Delete profile"
-msgstr "احذف التشكيل..."
+msgstr "احذف التشكيل"
#: ../../keyboard.pm:1
#, c-format
@@ -1338,20 +1364,25 @@ msgstr ""
"الحالي و سيطلب منك أن تدخل قرصاً مختلفا كما هو مطلوب."
#: ../../standalone/drakperm:1
-#, fuzzy, c-format
+#, c-format
msgid "When checked, owner and group won't be changed"
msgstr "عند التأشير لن يتم تغيير المالك و المجموعة"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "المعالجات"
-
#: ../../lang.pm:1
#, c-format
msgid "Bulgaria"
msgstr "بلغاريا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Tuesday"
+msgstr "الثلاثاء"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Processors"
+msgstr "المعالجات"
+
#: ../../lang.pm:1
#, c-format
msgid "Svalbard and Jan Mayen Islands"
@@ -1383,16 +1414,16 @@ msgstr "التجزئة %s معروفة الآن بالإسم %s"
msgid "Backup Other files..."
msgstr "انسخ ملفات أخرى..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP خادم SMB"
-
#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
msgstr "الكونغو كينشاسا"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "IP خادم SMB"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
@@ -1429,15 +1460,13 @@ msgstr ""
"%s"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
" DrakBackup Daemon Report\n"
msgstr ""
"\n"
" تقرير مراقب DrakBackup\n"
-"\n"
-"\n"
#: ../../keyboard.pm:1
#, c-format
@@ -1494,11 +1523,6 @@ msgstr "استخدم يونيكود افتراضياً"
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr "وحدة نواة Linux التي تتعامل مع هذا الجهاز"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDR device"
-msgstr "وحدة"
-
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
@@ -1510,12 +1534,9 @@ msgid "Option %s must be an integer number!"
msgstr "الخيار %s يجب أن يكون رقما صحيحاً!"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Use password to authenticate users"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Use password to authenticate users."
+msgstr "استخدم كلمة المرور للمصادقة على المستخدمين"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -1565,13 +1586,13 @@ msgid "Resizing"
msgstr "جاري تغيير الحجم"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Enter the maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
"فضلاً أدخل الحجم الأقصى\n"
-" المسموح به لـDrakbackup"
+" المسموح به لـDrakbackup (ميغابايت)"
#: ../../network/netconnect.pm:1
#, c-format
@@ -1583,23 +1604,6 @@ msgstr "وصلة كيبل"
msgid "User"
msgstr "المستخدم"
-#: ../../fsedit.pm:1
-#, 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 ""
-"لا يمكنني قراءة جدول التجزئات للجهاز %s, يبدو أنه مخرّب :(\n"
-"يمكنني أن أحاول المتابعة مع ازالة التجزئات السيئة (ستضيع كل البيانات!).\n"
-"الحل الآخر هو أن تمنع DrakX من تعديل جدول التقسيمات.\n"
-"(الخطأ هو %s)\n"
-"\n"
-"هل أنت موافق على خسارة كل التجزئات؟\n"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
@@ -1621,9 +1625,9 @@ msgid "Button 3 Emulation"
msgstr "محاكاة الزر 3"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Check additions/removals of sgid files"
-msgstr "if set to yes, check additions/removals of sgid files."
+msgstr "تحقق من اضافات/حذف ملفات sgid"
#: ../../standalone/drakbackup:1
#, c-format
@@ -1670,15 +1674,6 @@ msgstr "اسم الطابعة, وصف, المكان"
msgid "USA (broadcast)"
msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"رجاء اختر\n"
-"وسيط النسخ الاحتياطي"
-
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
@@ -1689,22 +1684,16 @@ msgstr "استخدام امتداد Xinerama"
msgid "Loopback"
msgstr "Loopback"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk: \n"
-" %s \n"
-" %s"
-msgstr ""
-"تعذر غلق mkbootdisk: \n"
-" %s \n"
-" %s"
-
#: ../../standalone/drakxtv:1
#, c-format
msgid "West Europe"
msgstr "أوروبّا الغربيّة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "On CD-R"
+msgstr "على القرص المدمج"
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -1728,15 +1717,20 @@ msgid "Harddrake2 version %s"
msgstr "Harddrake2 الإصدار %s"
#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
+#, c-format
msgid "Preferences"
-msgstr "التفضيل: "
+msgstr "تفضيلات"
#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "سوازيلاند"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
+msgstr "جمهورية الدومينيكان"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
@@ -1747,15 +1741,10 @@ msgstr "جاري نسخ %s"
msgid "Choose color"
msgstr "إختر اللون"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "جمهورية الدومينيكان"
-
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Syriac"
-msgstr "سورية"
+msgstr "السريانية"
#: ../../standalone/drakperm:1
#, c-format
@@ -1850,12 +1839,9 @@ msgid "There is already a partition with mount point %s\n"
msgstr "هناك تجزئة مع نقطة التحميل %s مسبقاً\n"
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enable/Disable msec hourly security check."
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable msec hourly security check."
+msgstr "تمكين/تعطيل اختبارات msec الأمنية كل ساعة"
#: ../../help.pm:1
#, c-format
@@ -2101,7 +2087,7 @@ msgid "Autoprobe"
msgstr "تحقق آلي"
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"if set to yes, check for :\n"
"\n"
@@ -2111,8 +2097,13 @@ msgid ""
"\n"
"- for users with the 0 id other than root."
msgstr ""
-"if set to yes, check for empty passwords, for no password in /etc/shadow and "
-"for users with the 0 id other than root."
+"اذا كانت القيمة نعم, تحقق من :\n"
+"\n"
+"- كلمات المرور الفارغة,\n"
+"\n"
+"- عدم وجود كلمة مرور في /etc/shadow\n"
+"\n"
+"- وجود مستخدمين برقم معرف 0 غير المستخدم الجذر."
#: ../../standalone/drakbackup:1
#, c-format
@@ -2151,6 +2142,11 @@ msgstr ""
"\n"
"اترك الحقل فارغاً اذا لم تكن تريد اعاد وضع التثبيت الالي.\n"
+#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configured on other machines"
+msgstr "قم بإعداد الإتصال"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
@@ -2441,6 +2437,11 @@ msgstr ""
msgid "Netmask:"
msgstr "Netmask:"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Do it later"
+msgstr ""
+
#: ../../any.pm:1
#, c-format
msgid "Append"
@@ -2479,41 +2480,6 @@ msgstr ""
"اذا كانت بعض هذه الإجراءات قد تسببت بمشاكل لك, عطّل هذا الخيار, لكن في هذه "
"الحال عليك الإنتباه لهذه النقاط."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
-msgstr ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
-
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -2567,12 +2533,9 @@ msgid "Terminal-based"
msgstr "Terminal-based"
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enable/Disable IP spoofing protection."
-msgstr ""
-"Arguments: (arg, alert=1)\n"
-"\n"
-"Enable/Disable IP spoofing protection."
+msgstr "تمكين/تعطيل حماية IP spoofing"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -2623,6 +2586,11 @@ msgstr "الصومال"
msgid "No open source driver"
msgstr "لا يوجد مشغل مفتوح المصدر"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Def."
+msgstr ""
+
#: ../../security/level.pm:1
#, c-format
msgid ""
@@ -2647,6 +2615,11 @@ msgstr "نيوكاليدونيا"
msgid "European protocol (EDSS1)"
msgstr "البروتوكول الأوروبي (EDSS1)"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Delete"
+msgstr "/_حذف"
+
#: ../../any.pm:1
#, c-format
msgid "Video mode"
@@ -2788,7 +2761,7 @@ msgid "Tokelau"
msgstr "توكلاو"
#: ../../standalone/logdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Matching"
msgstr "الموائمة"
@@ -2964,9 +2937,9 @@ msgid "CUPS"
msgstr "CUPS"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Erase tape before backup"
-msgstr "استخم الشريط للنسخ الإحتياطي"
+msgstr "امسح الشريط قبل النسخ الاحتياطي"
#: ../../standalone/harddrake2:1
#, c-format
@@ -3007,6 +2980,11 @@ msgstr ""
msgid "Saint Lucia"
msgstr "سانت لوسيا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "November"
+msgstr "نوفمبر"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Disconnect..."
@@ -3040,11 +3018,13 @@ msgid "Package Group Selection"
msgstr "اختيار مجموعات الحزم"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Allow local hardware\n"
"configuration."
-msgstr "اعداة تهيئة آلية"
+msgstr ""
+"اسمح بالتهيئة المحلية\n"
+"للعتاد"
#: ../../standalone/drakbackup:1
#, c-format
@@ -3187,6 +3167,11 @@ msgstr ""
msgid "All primary partitions are used"
msgstr "كل التجزئات الرئيسية مستخدمة"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "LPD server \"%s\", printer \"%s\""
+msgstr "على خادم LPD \"%s\", الطابعة \"%s\""
+
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
@@ -3243,13 +3228,13 @@ msgstr "المستضيف %s"
#: ../../lang.pm:1
#, c-format
-msgid "Armenia"
-msgstr "أرمينيا"
+msgid "Fiji"
+msgstr "فيجي"
#: ../../lang.pm:1
#, c-format
-msgid "Fiji"
-msgstr "فيجي"
+msgid "Armenia"
+msgstr "أرمينيا"
#: ../../any.pm:1
#, c-format
@@ -3261,6 +3246,11 @@ msgstr "سواقة القرص المرن الثانية"
msgid "About Harddrake"
msgstr "حول HardDrake"
+#: ../../security/l10n.pm:1
+#, c-format
+msgid "Authorize TCP connections to X Window"
+msgstr ""
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
@@ -3334,6 +3324,11 @@ msgstr ""
"%s\n"
"متوفرة لنظامك.\n"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Multi-function device on parallel port #%s"
+msgstr ", جهاز متعدد الوظائف على المنفذ المتوازي #%s"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -3461,20 +3456,20 @@ msgid "Romania"
msgstr "رومانيا"
#: ../../standalone/drakperm:1
-#, fuzzy, c-format
+#, c-format
msgid "Group"
msgstr "المجموعة"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "اختر الجهاز "
-
#: ../../lang.pm:1
#, c-format
msgid "Canada"
msgstr "كندا"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "choose device"
+msgstr "اختر الجهاز "
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
@@ -3491,7 +3486,7 @@ msgid "German"
msgstr "الألمانية"
#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Next ->"
@@ -3538,10 +3533,10 @@ msgstr "غينيا-بيساو"
msgid "Horizontal refresh rate"
msgstr "نسبة الإنعاش الأفقي"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
+#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#, c-format
msgid "Edit"
-msgstr "خروج"
+msgstr "تحرير"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -3659,6 +3654,11 @@ msgstr ""
msgid "Re-generating list of configured scanners ..."
msgstr "جاري اعادة توليد قائمة الماسحات الضوئية المعدّة ..."
+#: ../../modules/interactive.pm:1
+#, fuzzy, c-format
+msgid "Module configuration"
+msgstr "تهيئة يدوية"
+
#: ../../harddrake/data.pm:1
#, c-format
msgid "Scanner"
@@ -3669,11 +3669,6 @@ msgstr "الماسح الضوئي"
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Bad Ip"
-msgstr "IP سيئ"
-
#: ../../any.pm:1
#, c-format
msgid ""
@@ -3715,16 +3710,16 @@ msgstr "إنهاء"
msgid "No password prompt on %s at port %s"
msgstr "لا يوجد طلب كلمة سر في %s على المنفذ %s"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Kensington Thinking Mouse with Wheel emulation"
+msgstr "Kensington Thinking Mouse"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Usage of remote scanners"
msgstr "استخدام الماسحات الضوئية البعيدة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CDROM.\n"
-msgstr "\t-القرص المدمج.\n"
-
#: ../../install_interactive.pm:1
#, c-format
msgid ""
@@ -3746,7 +3741,7 @@ msgstr "Dvorak (نرويجيةّ)"
msgid "Hard Disk Backup Progress..."
msgstr "التقدم في نسخ القرص الصلب..."
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
msgstr "تعذر تنفيذ: %s"
@@ -3979,6 +3974,11 @@ msgstr "استعادة من الشريط"
msgid "Choose the profile to configure"
msgstr "اختر التشكيل الذي تريد تهيئته"
+#: ../../security/l10n.pm:1
+#, c-format
+msgid "Password minimum length and number of digits and upcase letters"
+msgstr ""
+
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
@@ -4012,6 +4012,11 @@ msgstr "جاري اعادة تشغيل نظام الطباعة..."
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Day"
+msgstr "اليوم"
+
#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
@@ -4063,16 +4068,18 @@ msgstr ""
msgid "Subnet Mask:"
msgstr "Subnet Mask:"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successfull"
-msgstr "تم تثبيت سمات LiLo و Bootsplash بنجاح"
-
#: ../../security/l10n.pm:1
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"_: load here is a noun, the load of the system\n"
+"Load"
+msgstr ""
+
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid ""
@@ -4117,6 +4124,11 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr "يُحتاج الى اسم المستضيف و اسم المستخدم و كلمة المرور!"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Insert floppy"
+msgstr "أدخل قرص مرن في %s"
+
#: ../../diskdrake/dav.pm:1
#, c-format
msgid ""
@@ -4175,6 +4187,15 @@ msgstr "تحتاج الى اعداة التثبيت لتفعيل التعديل
msgid "Do not include the browser cache"
msgstr "لا تستخدم ذاكرة المتصفح المخبئية"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"تعذر التأكد من صحة نظام المفات %s. هل تريد تصحيح الأخطاء (كن حذراً, يمكن أن "
+"تخسر بيانات)"
+
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
@@ -4230,6 +4251,11 @@ msgstr "GlidePoint"
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "No Mask"
+msgstr "لا قناع"
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface already configured"
@@ -4255,6 +4281,11 @@ msgstr "خادم بريد"
msgid "Please click on a partition"
msgstr "فضلا اضغط على تجزئة"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Multi-function device on HP JetDirect"
+msgstr ", جهاز متعدد الوظائف على HP JetDirect"
+
#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Linux"
@@ -4265,11 +4296,6 @@ msgstr "Linux"
msgid "Have a nice day!"
msgstr "نتمنى لك يوماً سعيداً!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "across Network"
-msgstr "عبر الشّبكة"
-
#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
@@ -4354,9 +4380,9 @@ msgid "Mount points must begin with a leading /"
msgstr "يجب أن تبدأ نقاط التحميل بالعلامة /"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Choose your CD/DVD device"
-msgstr "فضلاً اختر مساحة وسيط CD/DVD (بالميغابايت)"
+msgstr "فضلاً اختر جهاز CD/DVD"
#: ../../standalone/logdrake:1
#, c-format
@@ -4397,6 +4423,14 @@ msgstr ""
"لم تختر أي مجموعة من الحزم.\n"
"فضلاً اختر التثبيت المصغر الذي تريده:"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"You need the Alcatel microcode.\n"
+"You can provide it now via a floppy or your windows partition,\n"
+"or skip and do it later."
+msgstr ""
+
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
@@ -4414,6 +4448,7 @@ msgid "Accept"
msgstr "اقبل"
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "Description"
msgstr "الوصف"
@@ -4438,11 +4473,6 @@ msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلا
msgid "Choose a monitor"
msgstr "إختر شاشة"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Bad Mask"
-msgstr "حزمة سيئة"
-
#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
@@ -4548,6 +4578,11 @@ msgstr "كيب فيردي"
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr "اذا كان المعالج لديه Cyrix 6x86 Coma bug"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Loading printer configuration... Please wait"
+msgstr "جاري تحميل المستخدمين و المجموعات... رجاء الانتظار"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
@@ -4603,20 +4638,15 @@ msgstr "Userdrake"
msgid "Which partition do you want to use for Linux4Win?"
msgstr "أي تجزئة تريد استخدامها من أجل Linux4Win"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system"
-msgstr "نظام المساعد"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
msgstr "صفحات اختبارية"
#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Logical volume name "
-msgstr "اجراء محلي"
+msgstr "Logical volume name "
#: ../../standalone/drakbackup:1
#, c-format
@@ -4643,9 +4673,9 @@ msgid "Card mem (DMA)"
msgstr "Card mem (DMA)"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Disconnecting from Internet "
-msgstr "جاري قطع الإتصال بالإنترنت"
+msgstr "اقطع الإتصال بالإنترنت"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
@@ -4722,9 +4752,9 @@ msgid "United States"
msgstr "الولايات المتحدة"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "User umask"
-msgstr "المستخدمون"
+msgstr "User umask"
#: ../../any.pm:1
#, c-format
@@ -4758,12 +4788,9 @@ msgid "NTP Server"
msgstr "خادم NTP"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Sulogin(8) in single user level"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-" Enable/Disable sulogin(8) in single user level."
+msgstr "Sulogin(8) في مستوى المستخدم الوحيد"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -4821,9 +4848,9 @@ msgid "Advanced Options"
msgstr "خيارات متقدمة"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "View Configuration"
-msgstr "أدوات الإعدادات"
+msgstr "اعرض الإعدادات"
#: ../../standalone/harddrake2:1
#, c-format
@@ -4973,7 +5000,7 @@ msgid "Slovenian"
msgstr "السلوفينية"
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Authorize:\n"
"\n"
@@ -4987,13 +5014,17 @@ msgid ""
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
-"Arguments: (arg)\n"
+"تمكين الصلاحية:\n"
+"\n"
+"- لكل الخدمات التي يتم التحكم بها عن طريق tcp_wrappers (انظر صقحة دليل hosts."
+"deny(5) )اذا تم التعيين الى \"ALL\",\n"
"\n"
-"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
-"\\fIarg\\fP = ALL. Only local ones\n"
-"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
-"services you need, use /etc/hosts.allow\n"
-"(see hosts.allow(5))."
+"- الملفات المحلية فقط اذا تم التعيين الى \"LOCAL\"\n"
+"\n"
+"- لا شئ اذا تم التعيين الى \"NONE\".\n"
+"\n"
+"لتمكين صالحية الخدمات التي تريدها, استخدم ملف /etc/hosts.allow (انظر hosts."
+"allow(5))."
#: ../../lang.pm:1
#, c-format
@@ -5029,12 +5060,12 @@ msgstr "الجدول"
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "Model"
msgstr "الطراز"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer #%s"
msgstr "طابعة USB #%s"
@@ -5104,9 +5135,9 @@ msgstr ""
"الإنترنت:"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "No password aging for"
-msgstr "لا كلمة مرور"
+msgstr "لا تقاد لكلمة المرور لـ"
#: ../../standalone/draksec:1
#, c-format
@@ -5129,6 +5160,11 @@ msgstr "تيمور الشرقية"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "On Tape Device"
+msgstr "على الشريط"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
@@ -5137,14 +5173,14 @@ msgstr ""
"- احفظ الى الشريط على الجهاز: %s"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Login name"
-msgstr "اسم النطاق"
+msgstr "اسم الدخول"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Report unowned files"
-msgstr "if set to yes, report unowned files."
+msgstr "قم بتقرير الملفات الغير مملوكة"
#: ../../standalone/drakconnect:1
#, c-format
@@ -5212,9 +5248,9 @@ msgid "Removing %s"
msgstr "جاري ازالة %s"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "%s not found...\n"
-msgstr "%s لا يستجيب"
+msgstr "تعذر ايجاد %s...\n"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -5238,16 +5274,16 @@ msgstr "كلمات المرور ممكّنة الآن, لكن الاستخدام
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Read"
-msgstr "للقراءة فقط"
-
#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr "الكونغو برازافيل"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Read"
+msgstr "قراءة"
+
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
@@ -5302,6 +5338,13 @@ msgstr ""
msgid "Right Control key"
msgstr "مفتاح Control الأيمن"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr "أدخل قرص مرن مجهز على نظام ملفات FAT في السواقة %s"
+
#: ../../lang.pm:1
#, c-format
msgid "Zambia"
@@ -5327,16 +5370,16 @@ msgstr "الرومانية (qwertz)"
msgid "Under Devel ... please wait."
msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "جمهورية التشيك"
-
#: ../../lang.pm:1
#, c-format
msgid "Egypt"
msgstr "مصر"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Czech Republic"
+msgstr "جمهورية التشيك"
+
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
@@ -5400,12 +5443,9 @@ msgid "Network Options"
msgstr "خيارات شبكة"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enable msec hourly security check"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable msec hourly security check."
+msgstr "تمكين اختبارات msec الأمنية كل ساعة"
#: ../../standalone/drakboot:1
#, c-format
@@ -5465,6 +5505,11 @@ msgstr "غينيا الإستوائية"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "Backup System"
+msgstr "نظام المساعد"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "Build Backup"
msgstr "ابني النسخة الإحتياطية"
@@ -5506,12 +5551,71 @@ msgstr ""
msgid "Kiribati"
msgstr "كيريباتي"
-#: ../../standalone/drakbackup:1
+#: ../../mouse.pm:1
#, fuzzy, c-format
+msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
+msgstr "Logitech Mouse (serial, old C7 type)"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "Other (not drakbackup) keys in place already"
+msgstr "مفاتيح أخرى (غير drakbackup) موجودة مسبقاً"
+
+#: ../../help.pm:1
+#, c-format
+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"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
+"\n"
+"You will be presented with a list of different parameters to change to get\n"
+"an optimal graphical display: Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-"مفاتيح أخرى\n"
-"(غير drakbackup) موجودة مسبقاً"
#: ../../standalone/draksplash:1
#, c-format
@@ -5587,301 +5691,6 @@ msgstr ""
"تقوم بإدخال عناوين IP و أرقام المنافذ (اختياري) للحصول على معلومات الطابعات "
"من الخادمات."
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid ""
-"drakTermServ Overview\n"
-"\t\t\t \n"
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel.\n"
-"\n"
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:\n"
-" \t\t\n"
-"\t\t\t\thost curly {\n"
-"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
-"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t#type fat;\n"
-"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
-"nbi\";\n"
-"\t\t\t\t\t#hdw_config true;\n"
-"\t\t\t\t}\n"
-"\t\t\t\n"
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating seperate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login priviledges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing "
-"clients.\n"
-"\t\t\t\n"
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network.\n"
-" \t\t\n"
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file.\n"
-"\n"
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files.\n"
-"\n"
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured.\n"
-"\t\t\n"
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-" \t\t(\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs it's images.\n"
-"\n"
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
-" \n"
-"\n"
-msgstr ""
-"drakTermServ Overview\n"
-"\t\t\t \n"
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images.\n"
-"\n"
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:\n"
-" \t\t\n"
-"\t\t\t\thost curly {\n"
-"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
-"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t#type fat;\n"
-"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
-"nbi\";\n"
-"\t\t\t\t}\n"
-"\t\t\t\n"
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be \"thin\"\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run most\n"
-"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
-"$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are modified\n"
-"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
-"issues in using xdmcp,\n"
-"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
-"subnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing "
-"clients.\n"
-"\t\t\t\n"
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network.\n"
-" \t\t\n"
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file.\n"
-"\n"
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. In the future drakTermServ "
-"will help create these\n"
-" \t\tfiles.\n"
-"\n"
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. In the future, "
-"drakTermServ can help create files\n"
-" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-"keyboard on a per-client\n"
-" \t\tbasis.\n"
-"\n"
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-" \t\t(\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs it's images.\n"
-"\n"
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
-" \n"
-"\n"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
@@ -5937,8 +5746,7 @@ msgstr "تم التحقق من %s"
msgid "/Autodetect _printers"
msgstr "/تحقق آلي من ال_طابعات"
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#: ../../interactive/newt.pm:1
+#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "إنتهاء"
@@ -5995,7 +5803,7 @@ msgstr "اختيار مفرد للحزم"
msgid "This partition is not resizeable"
msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Location"
msgstr "المكان"
@@ -6005,6 +5813,11 @@ msgstr "المكان"
msgid "USA (cable-hrc)"
msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guatemala"
+msgstr "غواتيمالا"
+
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
@@ -6018,11 +5831,6 @@ msgstr ""
"\n"
"Activate/Disable ethernet cards promiscuity check."
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "غواتيمالا"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "This machine"
@@ -6033,16 +5841,16 @@ msgstr "هذه الماكينة"
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "اختر الملفات أو الأدلة ثم انقر 'أضف'"
-
#: ../../lang.pm:1
#, c-format
msgid "Bahrain"
msgstr "البحرين"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select the files or directories and click on 'OK'"
+msgstr "اختر الملفات أو الأدلة ثم انقر 'أضف'"
+
#: ../../standalone/drakfloppy:1
#, c-format
msgid "omit scsi modules"
@@ -6066,9 +5874,9 @@ msgstr ""
"و الشبكة.\n"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Run the daily security checks"
-msgstr "if set to yes, run the daily security checks"
+msgstr "شغّل الاختبارات الأمنية اليومية"
#: ../../Xconfig/various.pm:1
#, c-format
@@ -6089,6 +5897,11 @@ msgstr ""
msgid "Maltese (US)"
msgstr "المالطية (أمريكا)"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "The creation of the boot floppy has been successfully completed \n"
+msgstr ""
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -6099,9 +5912,9 @@ msgstr ""
"الشبكة المحلية/Windows) و NCP (NetWare)."
#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
+#, c-format
msgid "Launch the wizard"
-msgstr "انقر هنا لتشغيل المعالج ->"
+msgstr "شغّل المعالج"
#: ../../harddrake/data.pm:1
#, c-format
@@ -6135,15 +5948,13 @@ msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "علامة الشريط ليست العلامة الصحيحة. علامة الشريط هي %s."
+msgid "Thursday"
+msgstr "الخميس"
#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"For a mulitsession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "علامة الشريط ليست العلامة الصحيحة. علامة الشريط هي %s."
#: ../../standalone/drakgw:1
#, c-format
@@ -6233,6 +6044,11 @@ msgstr ""
"اتصالات من عملاء كثيرين. ملحوظة: اذا كانت ماكينتك مجرد عميل على الإنترنت "
"فالأجدر بك اختيار مستوى أمني أقل."
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Server Name"
+msgstr "اسم الخادم:"
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
@@ -6260,6 +6076,29 @@ msgstr ""
"\n"
"على أي قرص تقوم بالإقلاع؟"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+"تحذير!\n"
+"\n"
+"DrakX سيقوم الآن بتغيير حجم تجزئة Windows. كن حذراً:\n"
+"هذه العملية خطرة. فإذا لم تكن فعلت ذلك,\n"
+"يجب عليك أولاً الخروج من التثبيت, ثم شغّل scandisk\n"
+"في Windows (و اختيارياً defrag), ثم أعد\n"
+"التثبيت. يجب عليك كذلك عمل نسخة احتياطية من بياناتك.\n"
+"عندما تكون متأكداً, انقر موافق."
+
#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
@@ -6393,24 +6232,15 @@ msgstr ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
-"تعذر التأكد من صحة نظام المفات %s. هل تريد تصحيح الأخطاء (كن حذراً, يمكن أن "
-"تخسر بيانات)"
-
#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
msgstr "اجعل جهازك خادماً يعتمد عليه"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Check empty password in /etc/shadow"
-msgstr "if set to yes, check empty password in /etc/shadow."
+msgstr "تحقق من وجود كلمة مرور فارغة في /etc/shadow."
#: ../../network/network.pm:1
#, c-format
@@ -6468,9 +6298,9 @@ msgstr ""
"هل تريد المتابعة؟"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Telugu"
-msgstr "توكلاو"
+msgstr "التيلوغو"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -6490,7 +6320,7 @@ msgid "Post Uninstall"
msgstr "ما بعد ازالة التثبيت"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connecting to Internet "
msgstr "جاري الإتصال بالإنترنت"
@@ -6504,6 +6334,11 @@ msgstr " ("
msgid "Cpuid level"
msgstr "مستوى هوية المعالج"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Novell server \"%s\", printer \"%s\""
+msgstr " على خادم Novell \"%s\", الطابعة \"%s\""
+
#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
@@ -6558,12 +6393,9 @@ msgstr ""
"drakconnect قبل المتابعة."
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Accept broadcasted icmp echo"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-" Accept/Refuse broadcasted icmp echo."
+msgstr "اقبل broadcasted icmp echo"
#: ../../lang.pm:1
#, c-format
@@ -6575,6 +6407,11 @@ msgstr "أوروغواي"
msgid "Benin"
msgstr "بنين"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "SMB/Windows server \"%s\", share \"%s\""
+msgstr "على خادم SMB/Windows \"%s\", المشاركة \"%s\""
+
#: ../../standalone/drakperm:1
#, c-format
msgid "Path selection"
@@ -6590,6 +6427,11 @@ msgstr "عنوان IP/اسم المستضيف:"
msgid "Monitor: %s\n"
msgstr "الشاشة: %s\n"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Custom & system settings"
+msgstr "اعدادات مخصصة"
+
#: ../../partition_table/raw.pm:1
#, c-format
msgid ""
@@ -6647,6 +6489,11 @@ msgstr "تابع"
msgid "Custom Restore"
msgstr "استعادة مخصصة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Saturday"
+msgstr "السبت"
+
#: ../../help.pm:1
#, c-format
msgid ""
@@ -6661,12 +6508,9 @@ msgstr ""
"آخر."
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Set the root umask."
-msgstr ""
-"Arguments: (umask)\n"
-"\n"
-"Set the root umask."
+msgstr "عين umask الخاص بالمستخدم الجذر"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -6724,6 +6568,11 @@ msgstr "تثبيت/ترقية"
msgid "%d packages"
msgstr "%d حزم"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Costa Rica"
+msgstr "كوستاريكا"
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -6773,11 +6622,6 @@ msgstr ""
"\t- مايكل براون <mbrown\\@fensystems.co.uk>\n"
"\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "كوستاريكا"
-
#: ../../security/level.pm:1
#, c-format
msgid "Use libsafe for servers"
@@ -6800,34 +6644,24 @@ msgstr ""
"testing] [-v|--version] "
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
"فضلاً أدخل الحجم الأقصى\n"
-" المسموح به لـDrakbackup"
+" المسموح به لـDrakbackup (ميغابايت)"
-#: ../../my_gtk.pm:1
+#: ../../loopback.pm:1
#, c-format
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgid "Circular mounts %s\n"
+msgstr "Circular mounts %s\n"
#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo/grub mode"
msgstr "وضع Lilo/grub"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Output"
-msgstr "الناتج"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Circular mounts %s\n"
-
#: ../../lang.pm:1
#, c-format
msgid "Martinique"
@@ -6839,11 +6673,9 @@ msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Old user list:\n"
-msgstr ""
-"\n"
-"-ملفّات المستخدم:\n"
+msgstr "قائمة بالمستخدمين المتقادمين:\n"
#: ../../standalone/drakbackup:1
#, c-format
@@ -6873,6 +6705,11 @@ msgid ""
"running"
msgstr "سوف تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Weekday"
+msgstr "يوم الأسبوع"
+
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
@@ -6906,6 +6743,24 @@ msgstr ""
msgid "Floppy"
msgstr "القرص المرن"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -6941,6 +6796,11 @@ msgstr "مستضيف خادم SMB"
msgid "Name Servers:"
msgstr "خادمات الإسم:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Minute"
+msgstr "دقيقة"
+
#: ../../install_messages.pm:1
#, c-format
msgid ""
@@ -7002,6 +6862,11 @@ msgstr ""
"المدمج التالي مملوكة لأصحابها و محمية بموجب قوانين الملكية \n"
"الفكرية المنطبقة على البرمجيات.\n"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/_Expert mode"
+msgstr "وضعية الخبير"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
@@ -7016,16 +6881,16 @@ msgstr ""
"Linux Virtual Server, يستخدم لعمل خادم عالي الأداء\n"
"و يعتمد عليه."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون (32 بت)"
-
#: ../../lang.pm:1
#, c-format
msgid "Micronesia"
msgstr "ميكرونيزيا"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
+
#: ../../steps.pm:1
#, c-format
msgid "License"
@@ -7036,6 +6901,56 @@ msgstr "الترخيص"
msgid "This may take a moment to generate the keys."
msgstr "قد يستغرق هذا بعض الوقت لتوليد المفاتيح."
+#: ../../standalone/draksec:1
+#, c-format
+msgid ""
+"Here, you can setup the security level and administrator of your machine.\n"
+"\n"
+"\n"
+"The Security Administrator is the one who will receive security alerts if "
+"the\n"
+"'Security Alerts' option is set. It can be a username or an email.\n"
+"\n"
+"\n"
+"The Security Level menu allows you to select one of the six preconfigured "
+"security levels\n"
+"provided with msec. These levels range from poor security and ease of use, "
+"to\n"
+"paranoid config, suitable for very sensitive server applications:\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
+"very\n"
+"easy to use security level. It should only be used for machines not "
+"connected to\n"
+"any network and that are not accessible to everybody.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
+"security\n"
+"recommended for a computer that will be used to connect to the Internet as "
+"a\n"
+"client.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">High</span>: There are already some\n"
+"restrictions, and more automatic checks are run every night.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
+"enough\n"
+"to use the system as a server which can accept connections from many "
+"clients. If\n"
+"your machine is only a client on the Internet, you should choose a lower "
+"level.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
+"previous\n"
+"level, but the system is entirely closed and security features are at their\n"
+"maximum"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
@@ -7080,10 +6995,10 @@ msgstr "حل مشاكل الصوت"
msgid "Polish (qwerty layout)"
msgstr "البولندية (qwerty layout)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "activate now"
-msgstr "قم بالتنشيط الآن"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/_Add Printer"
+msgstr "طابعة"
#: ../../standalone/drakbackup:1
#, c-format
@@ -7180,12 +7095,9 @@ msgid ""
msgstr "انقر على جهاز في السلسلة اليسرى لعرض معلوماته هنا."
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Allow/Forbid autologin."
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid autologin."
+msgstr "اسمح/امنع الدخول التلقائي"
#: ../../standalone/drakxtv:1
#, c-format
@@ -7203,12 +7115,9 @@ msgid "old static device name used in dev package"
msgstr "اسم الجهاز القديم الساكن المستخدم في حزمة dev"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enable the logging of IPv4 strange packets"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable the logging of IPv4 strange packets."
+msgstr "تمكين تسجيل حزم IPv4 الغريبة"
#: ../../any.pm:1
#, c-format
@@ -7313,11 +7222,11 @@ msgstr ""
"اكتمال التثبيت و اعداة تشغيل النظام."
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Directory (or module) to put the backup on this host."
msgstr ""
-"فضلاً أدخل الدليل (أو الوحدة) التي سيتم فيها وضع\n"
-" النسخة الإحتياطية على هذا المستضيف."
+"فضلاً أدخل الدليل (أو الوحدة) التي سيتم فيها وضع النسخة الإحتياطية على هذا "
+"المستضيف."
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -7380,16 +7289,16 @@ msgstr "أي تجزئة تريد تغيير حجمها؟"
msgid "United States Minor Outlying Islands"
msgstr "جزر الولايات المتحدة"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "أداة لمراقبة سجلات نظامك"
-
#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
msgstr "جيبوتي"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "A tool to monitor your logs"
+msgstr "أداة لمراقبة سجلات نظامك"
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
@@ -7405,6 +7314,11 @@ msgstr "LPD"
msgid "Graphics card: %s\n"
msgstr "بطاقة الشاشة: %s\n"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/Set as _Default"
+msgstr " (افتراضي)"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Accept icmp echo"
@@ -7415,6 +7329,11 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Logitech CC Series with Wheel emulation"
+msgstr "Logitech CC Series"
+
#: ../../standalone/drakboot:1
#, c-format
msgid "Splash selection"
@@ -7509,6 +7428,11 @@ msgstr "اختر جهازاً!"
msgid "Remove selected server"
msgstr "احذف الخادم المختار"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using dhcp) usb"
+msgstr "Sagem (using dhcp) usb"
+
#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
@@ -7613,7 +7537,7 @@ msgid "Network interface"
msgstr "واجهة الشبكة "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Disconnection from Internet failed."
msgstr "فشل قطع الإتصال بالإنترنت"
@@ -7642,6 +7566,11 @@ msgstr "اليونانية"
msgid "Saint Kitts and Nevis"
msgstr "سانت كيتس و نيفيس"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Generic 3 Button Mouse with Wheel emulation"
+msgstr "Generic 3 Button Mouse"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -7670,11 +7599,9 @@ msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Erase your RW media (1st Session)"
-msgstr ""
-"فضلا قم بالتأشير هنا اذا كنت تريد مسح الوسيط القابل لإعادة الكتابة (الجلسة "
-"الأولى)"
+msgstr "امسح الوسيط القابل لإعادة الكتابة (الجلسة الأولى)"
#: ../../Xconfig/various.pm:1
#, c-format
@@ -7698,8 +7625,13 @@ msgstr ""
"%s\n"
"حاول تغيير بعض المعاملات"
-#: ../../standalone/drakperm:1
+#: ../../printer/main.pm:1
#, fuzzy, c-format
+msgid "TCP/IP host \"%s\", port %s"
+msgstr ", مستضيف TCP/IP \"%s\", المنفذ \"%s\""
+
+#: ../../standalone/drakperm:1
+#, c-format
msgid "User :"
msgstr "المستخدم :"
@@ -7807,6 +7739,11 @@ msgstr "منغوليا"
msgid "Mounted\n"
msgstr "محمل\n"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configure CUPS"
+msgstr "تهيئة X"
+
#: ../../help.pm:1
#, c-format
msgid "Graphical Interface"
@@ -7894,11 +7831,6 @@ msgstr ", المستضيف \"%s\", المنفذ %s"
msgid "Monaco"
msgstr "موناكو"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when uneeded"
-msgstr ""
-
#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
@@ -7914,6 +7846,11 @@ msgstr "%s تجهيز %s قد فشل"
msgid "Canada (cable)"
msgstr "كندة (cable)"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Floppy creation completed"
+msgstr "اكتمل انشاء القرص المرن"
+
#: ../../help.pm:1
#, c-format
msgid "Upgrade"
@@ -7938,6 +7875,11 @@ msgstr ""
msgid "Kyrgyzstan"
msgstr "قيرغيزستان"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Multi-function device on USB"
+msgstr ", جهاز متعدد الوظائف على منفذ USB"
+
#: ../../help.pm:1
#, c-format
msgid "With basic documentation"
@@ -7959,6 +7901,11 @@ msgstr ""
"لهذا الغرض انشئ تجزئة (أو انقر على تجزئة موجودة).\n"
"ثم اختر ``نقطة التحميل'' و اجعلها `/'"
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
+msgstr "الصحراء الغربية"
+
#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
@@ -7969,15 +7916,10 @@ msgstr "البروكسي يجب أن يكون http://..."
msgid "South Africa"
msgstr "جنوب أفريقيا "
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "الصحراء الغربية"
-
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Eject tape after the backup"
-msgstr "استخم الشريط للنسخ الإحتياطي"
+msgstr "أخرج الشريط بعد النسخ الاحتياطي"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -8016,10 +7958,15 @@ msgid ""
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../mouse.pm:1
#, fuzzy, c-format
+msgid "3 buttons with Wheel emulation"
+msgstr "محاكاة الأزرار"
+
+#: ../../standalone/drakperm:1
+#, c-format
msgid "Sticky-bit"
-msgstr "sticky-bit"
+msgstr "Sticky-bit"
#: ../../standalone/drakbackup:1
#, c-format
@@ -8083,9 +8030,14 @@ msgid "Malawi"
msgstr "مالاوي"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "local config: false"
-msgstr "ملفات محلية"
+msgstr "local config: false"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "System settings"
+msgstr "اعدادات مخصصة"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -8115,16 +8067,16 @@ msgstr "المملكة المتحدة"
msgid "running"
msgstr "تعمل"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "المرجع"
-
#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "اندونيسيا"
+#: ../../standalone/draksec:1
+#, c-format
+msgid "default"
+msgstr "المرجع"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "France [SECAM]"
@@ -8168,6 +8120,11 @@ msgstr ""
"خياراتنا الكثير من حلول نظام Linux بالإضافة الى العروض الخاصة و المنتجات "
"الأخرىى متوفرة في متجرنا الألكتروني:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "March"
+msgstr "مارس"
+
#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
@@ -8208,9 +8165,9 @@ msgid "Swap"
msgstr "التبديل"
#: ../../standalone/drakperm:1
-#, fuzzy, c-format
+#, c-format
msgid "Custom settings"
-msgstr "تجزئة مخصصة"
+msgstr "اعدادات مخصصة"
#: ../../standalone/drakbackup:1
#, c-format
@@ -8227,6 +8184,11 @@ msgstr "بطاقة التلفاز"
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "طابعة على خادم SMB/Windows 95/98/NT"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "/_Configure CUPS"
+msgstr "تهيئة X"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
@@ -8246,9 +8208,9 @@ msgstr ""
"Postfix هو عميل لنقل البريد, أي البرنامج الذي ينقل البريد من جهاز الى آخر."
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Uzbek (cyrillic)"
-msgstr "الصربية (سيريلي)"
+msgstr "الأوزبكية (سيريلي)"
#: ../../keyboard.pm:1
#, c-format
@@ -8318,6 +8280,11 @@ msgstr ""
"حسّن أداء أجهزتك بمساعدة اختياراتنا من الشركاء الذين يوفرون حلولاً احترافية "
"متوافقة مع Mandrake Linux"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Authors: "
+msgstr "المؤلفون: "
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing is now disabled."
@@ -8376,12 +8343,22 @@ msgstr "ولا شئ"
msgid "The entered IP is not correct.\n"
msgstr "عنوان IP المدُخل غير صحيح.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please be sure that the cron daemon is included in your services."
+msgstr "تأكد من أن مراقب cron موجود ضمن خدمات النظام."
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Ethernet Card"
msgstr "Ethernet Card"
-#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Delete selected printer"
+msgstr "احذف القاعدة المختارة"
+
+#: ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "المعلومات"
@@ -8502,15 +8479,6 @@ msgstr "البحث عن ماسحات ضوئية جديدة..."
msgid "Disabling servers..."
msgstr "جاري تعطيل الخوادم..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"فضلا اختر الفترة \n"
-"ما بين كل عملية نسخ احتياطي"
-
#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
@@ -8571,7 +8539,7 @@ msgid ""
msgstr "بدلاً من ذلك, يمكنك تحديد اسم جهاز/اسم ملف في حقا الإدخال"
#: ../../security/help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
@@ -8582,16 +8550,14 @@ msgid ""
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
-"Arguments: ()\n"
+"اذا كان SERVER_LEVEL (أو SECURE_LEVEL في حال عدم وجود الأول)\n"
+"أكبر من 3 في /etc/security/msec/security.conf, و ينشئ\n"
+"الاختصار /etc/security/msec/server لتشير\n"
+"الى /etc/security/msec/sever.<SERVER_LEVEL>.\n"
"\n"
-"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
-"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
-"server\n"
-"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
-"server\n"
-"is used by chkconfig --add to decide to add a service if it is present in "
-"the file\n"
-"during the installation of packages."
+"ملف /etc/security/msec/server يتم استخدامه عن طريق أمر chkconfig --add "
+"لتقرير اضافة خدمة اذا كانت موجودة في في الملف أثناء تثبيت\n"
+"الحزم."
#: ../../keyboard.pm:1
#, c-format
@@ -8618,11 +8584,6 @@ msgstr "تثبيت LILO/grub"
msgid "Israeli"
msgstr "العبرية"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "load setting"
-msgstr "حمل الإعدادات"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on server \"%s\""
@@ -8713,13 +8674,13 @@ msgstr "سيراليون"
#: ../../lang.pm:1
#, c-format
-msgid "Andorra"
-msgstr "أندورا"
+msgid "Botswana"
+msgstr "بوتسوانا"
#: ../../lang.pm:1
#, c-format
-msgid "Botswana"
-msgstr "بوتسوانا"
+msgid "Andorra"
+msgstr "أندورا"
#: ../../standalone/draksec:1
#, c-format
@@ -8813,6 +8774,11 @@ msgstr ""
msgid "Automatic Steps Configuration"
msgstr "تهيئة آلية للخطوات"
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr "باربادوس"
+
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
@@ -8822,11 +8788,6 @@ msgstr ""
"هل تريد معرفة المزيد عن مجتمع المصادر المفتوحة؟ كن جزءاً من عالم البرمجيات "
"الحرة"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "باربادوس"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to backup..."
@@ -8874,6 +8835,11 @@ msgstr "IP Range End:"
msgid "High"
msgstr "مرتفع"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Add a new printer to the system"
+msgstr "اضافة مستخدم الى النظام"
+
#: ../../any.pm:1
#, c-format
msgid "NoVideo"
@@ -8889,7 +8855,7 @@ msgstr "هذا الحقل يصف الجهاز"
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "جاري اضافة الطابعة الى Star Office/OpenOffice.org/GIMP"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "الطابعات المحلية"
@@ -8964,6 +8930,11 @@ msgstr "الكويت"
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "December"
+msgstr "ديسمبر"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "sub generation of the cpu"
@@ -8999,9 +8970,9 @@ msgid "please wait, parsing file: %s"
msgstr "يرجى الإنتظار, جاري تحليل الملف: %s"
#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Importance: "
-msgstr "الأهمية: %s\n"
+msgstr "الأهمية:"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9071,16 +9042,16 @@ msgstr "الواجهة الرسومية"
msgid "Chad"
msgstr "تشاد"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-
#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "الهند"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
+
#: ../../lang.pm:1
#, c-format
msgid "Slovakia"
@@ -9348,15 +9319,22 @@ msgstr ""
"بعض العتاد الموجود على جهازك يحتاج الى مشغلات ``تجارية'' كي تعمل.\n"
"يمكنك ايجاد مزيد من المعلومات عنها في: %s"
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr "هايتي"
+
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "جاري التحقق من الأجهزة..."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Haiti"
-msgstr "هايتي"
+msgid ""
+"Custom allows you to specify your own day and time. The other options use "
+"run-parts in /etc/crontab."
+msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
@@ -9368,9 +9346,9 @@ msgstr ""
"\n"
#: ../../standalone/draksec:1
-#, fuzzy, c-format
+#, c-format
msgid "Basic options"
-msgstr "خيارات DrakSec الأساسية"
+msgstr "الخيارات الأساسية"
#: ../../standalone/harddrake2:1
#, c-format
@@ -9378,12 +9356,9 @@ msgid "the name of the CPU"
msgstr "اسم المعالج"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Accept bogus IPv4 error messages"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Accept/Refuse bogus IPv4 error messages."
+msgstr "اقبل رسائل خطأ IPv4 الوهمية"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9551,14 +9526,6 @@ msgstr "if set to yes, check if the network devices are in promiscuous mode."
msgid "Looking for available packages..."
msgstr "جاري العثور على الحزم المتوفرة..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This should be a comma-seperated list of local users or email addresses that "
-"you want the backup results sent to. You will need a functioning mail "
-"transfer agent setup on your system."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Init Message"
@@ -9569,16 +9536,16 @@ msgstr "رسالة Init"
msgid "Rescue partition table"
msgstr "إنقاذ جدول التقسيم"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "تم الإتصال."
-
#: ../../lang.pm:1
#, c-format
msgid "Cyprus"
msgstr "قبرص"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Connection complete."
+msgstr "تم الإتصال."
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
@@ -9599,6 +9566,11 @@ msgstr "معالجات التهيئة"
msgid "ISDN connection"
msgstr "وصلة ISDN"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD-R / DVD-R"
+msgstr "CDROM / DVDROM"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "primary"
@@ -9674,6 +9646,11 @@ msgstr ""
"تردد المعالج بالميغاهيرتز (الميغاهيرتز تشير الى العدد التقريبي من التعليمات "
"التي يستطيع المعالج تنفيذها في الثانية الواحدة)"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Mandrake Linux Printer Management Tool"
+msgstr "أداة Mandrake Linux لإدارة المستخدمين"
+
#: ../../pkgs.pm:1
#, c-format
msgid "important"
@@ -9684,6 +9661,18 @@ msgstr "مهم"
msgid "Total Progress"
msgstr "اجمالي التقدم"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../help.pm:1
#, c-format
msgid ""
@@ -9720,16 +9709,16 @@ msgstr ""
"اذا تعذر على DrakX التحقق من الخيارات آلياً ستحتاج\n"
"الى تهيئة المشغل يدوياً."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "المستخدمون"
-
#: ../../lang.pm:1
#, c-format
msgid "Aruba"
msgstr "أروبا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Users"
+msgstr "المستخدمون"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
@@ -9750,6 +9739,11 @@ msgstr "كلمات المرور غير متطابقة"
msgid "Examples for correct IPs:\n"
msgstr "أمثلة لعناوين IP صحيحة:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please choose the media for backup."
+msgstr "فضلاً اختر وسيط النسخ الاحتياطي."
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
@@ -9854,7 +9848,7 @@ msgid ""
msgstr "Apache هو خادم ويب. و يُستخدم لخدمة ملفات HTML و CGI."
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9945,6 +9939,11 @@ msgstr ""
"تم توليد القرص المرن بنجاح.\n"
"يمكنك الآن اعادة التثبيت."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD-R/DVD-R to backup"
+msgstr "استخدم CD/DVDROM للنسخ الإحتياطي"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of buttons the mouse has"
@@ -9986,9 +9985,9 @@ msgid "32 MB"
msgstr "32 ميغابايت"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "type: thin"
-msgstr "النوع: %s"
+msgstr "النوع: رفيع"
#: ../../keyboard.pm:1
#, c-format
@@ -10113,6 +10112,11 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "custom"
+msgstr "مخصص"
+
#: ../../standalone/logdrake:1
#, c-format
msgid "Content of the file"
@@ -10169,6 +10173,7 @@ msgid "Theme name"
msgstr "اسم السمة"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Help"
msgstr "/_مساعدة"
@@ -10178,6 +10183,11 @@ msgstr "/_مساعدة"
msgid "Choosing an arbitrary driver"
msgstr "جاري اختيار مشغل عام"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr "جزر الكوك"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
@@ -10192,11 +10202,6 @@ msgstr ""
msgid "the width of the progress bar"
msgstr "عرض شريط التقدم"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "جزر الكوك"
-
#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
@@ -10214,17 +10219,16 @@ msgstr "احذف اختيار الخطوط المثبتة"
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../interactive/http.pm:1
-#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#: ../../standalone/drakfont:1 ../../standalone/drakgw:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
+#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/drakperm:1
+#: ../../standalone/draksec:1 ../../standalone/logdrake:1
+#: ../../standalone/mousedrake:1 ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
msgstr "الغاء"
@@ -10269,32 +10273,16 @@ msgstr "احذف الطابعة"
msgid "View Last Log"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"تحذير!\n"
-"\n"
-"DrakX سيقوم الآن بتغيير حجم تجزئة Windows. كن حذراً:\n"
-"هذه العملية خطرة. فإذا لم تكن فعلت ذلك,\n"
-"يجب عليك أولاً الخروج من التثبيت, ثم شغّل scandisk\n"
-"في Windows (و اختيارياً defrag), ثم أعد\n"
-"التثبيت. يجب عليك كذلك عمل نسخة احتياطية من بياناتك.\n"
-"عندما تكون متأكداً, انقر موافق."
-
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr "أي خدمة تريد السماح للإنترنت أن تتصل بها؟"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Connection Type"
+msgstr "نوع الإتصال"
+
#: ../../standalone/logdrake:1
#, c-format
msgid ""
@@ -10324,9 +10312,9 @@ msgid "Button 2 Emulation"
msgstr "محاكاة الزر 2"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Run chkrootkit checks"
-msgstr "if set to yes, run chkrootkit checks."
+msgstr "شغّل اختبارات chkrootkit"
#: ../../standalone/drakfont:1
#, c-format
@@ -10363,11 +10351,6 @@ msgstr "كان هناك خطأ أثناء ضبط قنوات التلفاز"
msgid "US keyboard (international)"
msgstr "لوحة مفاتيح أمريكية (دولي)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finish)"
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Not installed"
@@ -10468,33 +10451,20 @@ msgid "\t-Network by FTP.\n"
msgstr "\t-الشبكة عن طريق FTP.\n"
#: ../../security/l10n.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Reports check result to tty"
-msgstr "if set to yes, reports check result to tty."
+msgstr "يقوم بتقرير نتيجة الاختبار الى الطرفية"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must enter a device or file name!"
msgstr "يجب عليك ادخال جهاز أو اسم ملف!"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "/_Quit"
msgstr "/_خروج"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"تحتاج الى alcatel microcode.\n"
-"قم بتنزيلها على\n"
-"http://www.speedtouchdsl.com/dvreg_lx.htm\n"
-"و انسخ الملف mgmt.o الى /usr/share/speedtouch"
-
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
@@ -10631,7 +10601,7 @@ msgid "Removable media automounting"
msgstr "التحميل الآلي للوسائط القابلة للإزالة"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Enter the directory to save:"
msgstr "اختر الدليل الذي سيتم حفظه:"
@@ -10640,11 +10610,6 @@ msgstr "اختر الدليل الذي سيتم حفظه:"
msgid "Printing"
msgstr "الطباعة"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unkown driver"
-msgstr "مشغل غير معروف"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -10747,15 +10712,20 @@ msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Oriya"
-msgstr "سورية"
+msgstr "أوريا"
#: ../../standalone/drakperm:1
#, c-format
msgid "Add a new rule at the end"
msgstr "أضف قاعدة جديدة في النهاية"
+#: ../../standalone/drakboot:1
+#, c-format
+msgid "LiLo and Bootsplash themes installation successful"
+msgstr "تم تثبيت سمات LiLo و Bootsplash بنجاح"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -10786,6 +10756,11 @@ msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "On Hard Drive"
+msgstr "على القرص الصّلب"
+
#: ../../standalone.pm:1
#, c-format
msgid "Installing packages..."
@@ -10796,16 +10771,16 @@ msgstr "جاري تركيب الجزم..."
msgid "Dutch"
msgstr "الهولندية"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "يجب تثبيت الحزم التالية:\n"
-
#: ../../lang.pm:1
#, c-format
msgid "Angola"
msgstr "أنغولا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "The following packages need to be installed:\n"
+msgstr "يجب تثبيت الحزم التالية:\n"
+
#: ../../standalone/logdrake:1
#, c-format
msgid "service setting"
@@ -10881,6 +10856,45 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
+"\\$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+"\t\t\tsubnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
+"Clients can either \n"
+"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
+"and allows local \n"
+"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
+"This is enabled \n"
+"\t\t\tby creating separate config files associated with the client's IP "
+"address and creating \n"
+"\t\t\tread/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+"\t\t\twith the configuration, you can remove root login privileges from the "
+"client.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing clients."
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -10921,16 +10935,16 @@ msgstr "معلومات"
msgid "No network card"
msgstr "لا توجد بطاقة شبكة"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "أي نظام ملفات تريد؟"
-
#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
msgstr "3 أزرار"
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Which filesystem do you want?"
+msgstr "أي نظام ملفات تريد؟"
+
#: ../../lang.pm:1
#, c-format
msgid "Malta"
@@ -10984,16 +10998,16 @@ msgstr "بطاقة الشاشة"
msgid "Resizing Windows partition"
msgstr "جاري تغيير حجم تجزئة Windows"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS الأول للموفر (اختياري)"
-
#: ../../lang.pm:1
#, c-format
msgid "Cameroon"
msgstr "الكاميرون"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "DNS الأول للموفر (اختياري)"
+
#: ../../install_interactive.pm:1
#, c-format
msgid ""
@@ -11003,9 +11017,15 @@ msgstr ""
"يمكنك الآن تجزئة %s.\n"
"عندما تنتهي لا تنسى الحفظ باستخدام `w'"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Saami (swedish/finnish)"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "Close"
msgstr "إغلاق"
@@ -11051,6 +11071,11 @@ msgstr ""
msgid "Iceland"
msgstr "آيسلندا"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Network & Internet Configuration"
+msgstr "اعدادات الشبكة"
+
#: ../../common.pm:1
#, c-format
msgid "consolehelper missing"
@@ -11071,7 +11096,7 @@ msgstr "اذا كان الـFPU لديه متجه IRQ"
msgid "Ext2"
msgstr "Ext2"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
msgstr "Expand Tree"
@@ -11092,7 +11117,6 @@ msgstr ""
"مشغل \"%s\" الجديد سيتم استخدامه عند تشغيل الجهاز في المرة القادمة."
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
msgstr "وضعية الخبير"
@@ -11173,6 +11197,24 @@ msgstr "زيمبابوي"
msgid "When"
msgstr "متى "
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"You need the Alcatel microcode.\n"
+"Download it at:\n"
+"%s\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
+msgstr ""
+"تحتاج الى alcatel microcode.\n"
+"قم بتنزيلها على\n"
+"%s\n"
+"و انسخ الملف mgmt.o الى /usr/share/speedtouch"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hour"
+msgstr "هندوراس"
+
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Second DNS Server (optional)"
@@ -11227,11 +11269,6 @@ msgstr ""
"الملاك و المستخدمين باستخدام msec.\n"
"يمكنك كذلك تحرير قواعدك الخاصة التي ستُكتَب فوق القواهد الإفتراضية."
-#: ../../ugtk.pm:1
-#, c-format
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
#: ../../any.pm:1
#, c-format
msgid ""
@@ -11274,6 +11311,25 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -11318,11 +11374,6 @@ msgstr ", طابعة USB #%s"
msgid "SILO Installation"
msgstr "تثبيت SILO"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD/DVDROM to backup"
-msgstr "استخدم CD/DVDROM للنسخ الإحتياطي"
-
#: ../../install_messages.pm:1
#, c-format
msgid ""
@@ -11360,6 +11411,16 @@ msgstr ""
msgid "paranoid"
msgstr "مرتفع بجنون"
+#: ../../security/l10n.pm:1
+#, c-format
+msgid "Do not send mails when unneeded"
+msgstr ""
+
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Your scanner(s) will not be available on the network."
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid "Send mail report after each backup to:"
@@ -11443,7 +11504,7 @@ msgid ""
"And, of course, push multimedia to its limits with the very latest software "
"to play videos, audio files and to handle your images or photos."
msgstr ""
-"Mandrake Linux 9.1 يمكّنك من استخدام آخر اصدارات البرامج لتشغيل الملفات "
+"Mandrake Linux 9.2 يمكّنك من استخدام آخر اصدارات البرامج لتشغيل الملفات "
"الصوتية, و تحرير الصور, و تشغيل ملفات الفيديو"
#: ../../printer/printerdrake.pm:1
@@ -11535,15 +11596,20 @@ msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أ
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "لديك أكثر من قرص صلب, في أيهم تريد تثبيت Linux؟"
+#: ../../lang.pm:1
+#, c-format
+msgid "Eritrea"
+msgstr "اريتريا"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Boot ISO"
msgstr "ملف ISO الإقلاع"
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "اريتريا"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Firmware needed"
+msgstr "اذا احتجته"
#: ../../standalone/drakfont:1
#, c-format
@@ -11673,6 +11739,11 @@ msgstr ""
msgid "Add a scanner manually"
msgstr "أضف ماسح ضوئي يدوياً"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Refresh"
+msgstr "تحديث"
+
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Reload partition table"
@@ -11705,6 +11776,11 @@ msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج
msgid "Boot"
msgstr "الإقلاع"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " and the CD is in the drive"
+msgstr ""
+
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Tuner type:"
@@ -11795,6 +11871,11 @@ msgstr ""
"\n"
"Set the shell timeout. A value of zero means no timeout."
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Firmware copy succeeded"
+msgstr ""
+
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
@@ -11836,6 +11917,11 @@ msgstr "تم حذف الطابعة \"%s\" من Star Office/OpenOffice.org/GIMP
msgid "Save packages selection"
msgstr "احفظ اختيار الحزم"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Actions"
+msgstr "/_أحداث"
+
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Remove the last item"
@@ -11891,25 +11977,25 @@ msgstr ""
"ظهر الخطأ التالي: %s"
#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Size: "
-msgstr "الحجم: %s"
+msgstr "الحجم: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
msgstr "أي قطاع تريد نقله؟"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Do you want to click on this button?"
-
#: ../../lang.pm:1
#, c-format
msgid "Bahamas"
msgstr "جزر الباهاما"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Do you want to click on this button?"
+msgstr "Do you want to click on this button?"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Manual configuration"
@@ -12031,10 +12117,40 @@ msgstr ""
"\n"
"ملحوظة: تحتاج الى موائم شبكة مخصص لإعداد الشبكة المحلية (LAN)."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections X Window"
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independent "
+"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
+"and limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
+"and limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -12077,11 +12193,6 @@ msgstr ""
"HardDrake يقوم بالتحقق من العتاد, و يقوم بتهيئة العتاد\n"
"الجديد/المتغير بشكل اختياري."
-#: ../../printer/cups.pm:1 ../../printer/main.pm:1
-#, c-format
-msgid "Remote Printers"
-msgstr "الطابعات البعيدة"
-
#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
@@ -12145,6 +12256,11 @@ msgstr "استخدم الماسحات الضوئية على المستضيفات
msgid "Unselected All"
msgstr "تم ازالة اختيار الكل"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printer Management \n"
+msgstr "ادارة المستخدمين \n"
+
#: ../../standalone/logdrake:1
#, c-format
msgid "Domain Name Resolver"
@@ -12185,6 +12301,17 @@ msgstr "المودم"
msgid "Welcome to %s"
msgstr "أهلا بكم في %s"
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+" drakhelp 0.1\n"
+"Copyright (C) 2003 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"Usage: \n"
+msgstr ""
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
@@ -12268,16 +12395,21 @@ msgstr ""
msgid "Cuba"
msgstr "كوبا"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Searching for new printers..."
-msgstr "جاري البحث عن طابعات جديدة..."
+msgid "October"
+msgstr "أكتوبر"
#: ../../lang.pm:1
#, c-format
msgid "Belize"
msgstr "بيليز"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Searching for new printers..."
+msgstr "جاري البحث عن طابعات جديدة..."
+
#: ../../standalone/drakbackup:1
#, c-format
msgid " (multi-session)"
@@ -12306,6 +12438,11 @@ msgstr ""
"\n"
" Activate/Disable daily security check."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-CD-R.\n"
+msgstr "\t-القرص المدمج.\n"
+
#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Enable libsafe if libsafe is found on the system"
@@ -12338,6 +12475,11 @@ msgstr ""
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Use my Windows partition"
+msgstr "جاري تغيير حجم تجزئة Windows"
+
#: ../../Xconfig/card.pm:1
#, c-format
msgid "8 MB"
@@ -12375,6 +12517,26 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \t\ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be turned\n"
+" back off, retaining the configuration files, once the client machine "
+"is configured."
+msgstr ""
+
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -12422,6 +12584,14 @@ msgstr "مفاتح التشفير"
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
+#: ../../keyboard.pm:1
+#, c-format
+msgid ""
+"This setting will be activated after the installation.\n"
+"During installation, you will need to use the Right Control\n"
+"key to switch between the different keyboard layouts."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Christmas Island"
@@ -12442,6 +12612,11 @@ msgstr "قناة EIDE/SCSI"
msgid "Set this printer as the default"
msgstr "عيّن هذه الطابعة كطابعة افتراضية"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Verify that %s is the correct path"
+msgstr "هل هذا هو الإعداد الصحيح؟"
+
#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
@@ -12503,8 +12678,13 @@ msgstr "سرعة الإستقبال"
msgid "Turks and Caicos Islands"
msgstr "جزر الترك و الكايكوس"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "No Ip"
+msgstr ""
+
#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "<- Previous"
@@ -12530,7 +12710,7 @@ msgstr ""
msgid "Internet Connection Sharing configuration"
msgstr "إعدادات مشاركة إتصال الإنترنت"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Toggle between flat and group sorted"
@@ -12564,6 +12744,11 @@ msgstr "إعداد OKI WinPrinter"
msgid "Saint Helena"
msgstr "سانت هيلانة"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Parallel port #%s"
+msgstr " على المنفذ المتوازي #%s"
+
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Security Level"
@@ -12595,6 +12780,17 @@ msgstr "البولندية (qwertz layout)"
msgid "Syria"
msgstr "سورية"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet 450, Sony IJP-V100), "
+"an HP PhotoSmart or an HP LaserJet 2200?"
+msgstr ""
+"اذا كانت طابعتك جهازاً متعدد الوظائف من HP أو Sony (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 مع ماسح ضوئي, Sony IPJ-V100) أو جهاز HP PhotoSmart "
+"أو HP LaserJet 2200؟"
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm:1
#, c-format
@@ -12646,6 +12842,11 @@ msgstr "نيوزيلندا "
msgid "This directory should remain within the root filesystem"
msgstr "هذا الدليل يجب أن يكون في نظام الملفات الجذري"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Across Network"
+msgstr "عبر الشّبكة"
+
#: ../../keyboard.pm:1
#, c-format
msgid "CapsLock key"
@@ -12733,7 +12934,7 @@ msgstr "اسم النطاق الداخلي"
msgid "Card IRQ"
msgstr "Card IRQ"
-#: ../../ugtk.pm:1 ../../standalone/logdrake:1
+#: ../../standalone/logdrake:1
#, c-format
msgid "logdrake"
msgstr "logdrake"
@@ -12869,11 +13070,6 @@ msgstr "Open Firmware Delay"
msgid "Hungary"
msgstr "المجر"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progess"
-msgstr "اجمالي التقدم"
-
#: ../../lang.pm:1
#, c-format
msgid "New Zealand"
@@ -12897,6 +13093,11 @@ msgstr ""
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
+msgstr "أنتيل هولندا"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Switching from ext2 to ext3"
@@ -12907,11 +13108,6 @@ msgstr "جاري التغيير من ext2 الى ext3"
msgid "LPRng"
msgstr "LPRng"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "أنتيل هولندا"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Browse to new restore repository."
@@ -12989,8 +13185,13 @@ msgstr " enter `void' for void entry"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "on Hard Drive"
-msgstr "على القرص الصّلب"
+msgid "Backups on unmountable media - Use Catalog to restore"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "January"
+msgstr "يناير"
#: ../../security/l10n.pm:1
#, fuzzy, c-format
@@ -13113,6 +13314,21 @@ msgstr "جوجيا الجنوبية و جزر ساندويتش الجنوبية"
msgid "Japan (broadcast)"
msgstr "اليابان (broadcast)"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer."
+msgstr ""
+"الشاشة\n"
+"\n"
+" يمكن لبرنامج التثبيت اكتشاف و تهيئة الشاشة المتصلة بماكينتك\n"
+"آلياً. ان لم يصل ذلك, يمكنك اختيار الشاشة التي لديك\n"
+"من القائمة."
+
#: ../../lang.pm:1
#, c-format
msgid "Mozambique"
@@ -13168,6 +13384,11 @@ msgstr "شارك في بناء مستقبل Linux!"
msgid "Local Printer"
msgstr "طابعة محلية"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "أين تريد تحميل الجهاز %s؟"
+
#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
@@ -13198,21 +13419,21 @@ msgstr "تم اكتشاف وصلة كيبل"
msgid "Permission denied transferring %s to %s"
msgstr "تم رفض لاتصريح بنقل %s الى %s"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "/_Report Bug"
msgstr "/_تقرير خطأ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "تغيير الحجم"
-
#: ../../lang.pm:1
#, c-format
msgid "Dominica"
msgstr "دومينيكا"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "تغيير الحجم"
+
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
@@ -13268,6 +13489,36 @@ msgstr "جهاز الفأرة: %s\n"
msgid "Reselect correct fonts"
msgstr "أعد اختيار الخطوط الصحيحة"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs its images."
+msgstr ""
+
#: ../../help.pm:1
#, c-format
msgid ""
@@ -13384,6 +13635,11 @@ msgstr ""
"%s%s\n"
"متصلة مباشرةً بنظامك"
+#: ../../network/modem.pm:1
+#, c-format
+msgid "You don't have any winmodem"
+msgstr ""
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "type: %s"
@@ -13394,6 +13650,14 @@ msgstr "النوع: %s"
msgid "Slovakian (QWERTY)"
msgstr "السلوفاكية (QWERTY)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"This should be a comma-separated list of local users or email addresses that "
+"you want the backup results sent to. You will need a functioning mail "
+"transfer agent setup on your system."
+msgstr ""
+
#: ../../standalone/draksound:1
#, c-format
msgid "No Sound Card detected!"
@@ -13508,6 +13772,11 @@ msgstr ""
msgid "Comoros"
msgstr "جزر القمر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "May"
+msgstr "مايو"
+
#: ../../standalone/drakboot:1
#, c-format
msgid "Yaboot mode"
@@ -13633,6 +13902,12 @@ msgstr ""
"تعديل و انشاء البرامج بلغات مختلفة مثل Perl, Python, C و ++ِِC أسهل من ذي قبل "
"بفضل GNU gcc 3 و أفضل بيئات التطوير مفتوحة المصدر."
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No devices found"
+msgstr "تعذر ايجاد صورة"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Truly minimal install (especially no urpmi)"
@@ -13675,16 +13950,16 @@ msgstr ""
msgid "Where do you want to mount %s?"
msgstr "أين تريد تحميل الجهاز %s؟"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "استعادة عن طريق الشبكة"
-
#: ../../lang.pm:1
#, c-format
msgid "Algeria"
msgstr "الجزائر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Via Network"
+msgstr "استعادة عن طريق الشبكة"
+
#: ../../any.pm:1
#, c-format
msgid "Initrd-size"
@@ -13706,16 +13981,31 @@ msgstr ""
msgid "\tBackups use tar and gzip\n"
msgstr "\tالنسخ الإحتياطية تستخدم tar و gzip\n"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Set as default"
+msgstr "المرجع"
+
#: ../../Xconfig/card.pm:1
#, c-format
msgid "2 MB"
msgstr "2 ميغابايت"
+#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configured on this machine"
+msgstr "(على هذا الجهاز)"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Both Control keys simultaneously"
msgstr "مفتاحيّ Control في نفس الوقت"
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid " --help - display this help \n"
+msgstr ""
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -13820,18 +14110,6 @@ msgstr ""
msgid "Kenya"
msgstr "كينيا"
-#: ../../share/advertising/04-configuration.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
-"tool to fully adapt your computer to the use you make of it. Configure and "
-"customize elements such as the security level, the peripherals (screen, "
-"mouse, keyboard...), the Internet connection and much more!"
-msgstr ""
-"يوفر Mandrake Linux 9.1 لك مركز تحكم Mandrake, و وهو أداة قوية لتعديل حاسوبك "
-"ليناسب احتياجاتك و لتهيئة و تخصيص عناصر مثل مستوى الأمن و الأجهزة الملحقة "
-"(الشاشة, الفأرة لوحة المفاتيح...), وصلة الإنترنت و غير ذلك الكثير!"
-
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
@@ -13857,6 +14135,29 @@ msgstr "انشاء الخطوة الأولى"
msgid "Both Shift keys simultaneously"
msgstr "مفتاحيّ Shift في نفس الوقت"
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+" --id <id_label> - load the html help page which refers to id_label\n"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
@@ -14054,23 +14355,23 @@ msgstr "utopia 25"
msgid "Pipe job into a command"
msgstr "حوّل الوظيفة الى الأمر"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr "كوت ديفوار"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "new dynamic device name generated by core kernel devfs"
msgstr "اس مالجهاز الديناميكي الجديد الذي يتم توليده من devfs"
#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakgw:1 ../../standalone/harddrake2:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Yes"
msgstr "نعم"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "كوت ديفوار"
-
#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
@@ -14157,11 +14458,6 @@ msgstr "اختر الوصلة التي تريد تهيئتها"
msgid "Please wait, setting security level..."
msgstr "انتظر من فضلك, جاري تعيين مستوى الأمن.."
-#: ../../share/advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.1: the ultimate development platform"
-msgstr "Mandrake Linux 9.1 هي البيئة الأمثل لتطوير البرامج"
-
#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
@@ -14262,8 +14558,8 @@ msgstr "مشاركة الطابعات المحلية"
#: ../../install_messages.pm:1
#, c-format
-msgid "http://www.mandrakelinux.com/en/91errata.php3"
-msgstr "http://www.mandrakelinux.com/en/91errata.php3"
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/92errata.php3"
#: ../../security/help.pm:1
#, fuzzy, c-format
@@ -14283,62 +14579,6 @@ msgstr "الطابعات المتوفرة"
msgid "Empty"
msgstr "فارغ"
-#: ../../help.pm:1
-#, c-format
-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"
-"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
-"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If it is not the case, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the case that different servers are available for your card, with or\n"
-"without 3D acceleration, you are then asked to choose the server that best\n"
-"suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is correct, you can choose from\n"
-"this list the monitor you actually have connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"hardware. Choose the one that best suits your needs (you will be able to\n"
-"change that after installation though). A sample of the chosen\n"
-"configuration is shown in the monitor.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" the system will try to open a graphical screen at the desired\n"
-"resolution. If you can see the message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you cannot see the message, it\n"
-"means that some part of the autodetected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds, bringing you back to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-
#: ../../standalone/draksplash:1
#, c-format
msgid "text width"
@@ -14369,6 +14609,21 @@ msgstr ""
"\n"
"اضغط موافق للمتابعة."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images. To create the file \n"
+" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \t\tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -14443,8 +14698,7 @@ msgstr "إعداد الفأرة"
msgid "Choose the mount points"
msgstr "اختر نقاط التحميل"
-#: ../../help.pm:1 ../../ugtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakfont:1
+#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
#, c-format
msgid "OK"
msgstr "موافق"
@@ -14459,6 +14713,11 @@ msgstr "اليوغوسلافية (لاتيني)"
msgid "Installing"
msgstr "جاري التثبيت"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Logitech MouseMan with Wheel emulation"
+msgstr "Logitech MouseMan"
+
#: ../../any.pm:1
#, c-format
msgid "Launch userdrake"
@@ -14582,16 +14841,16 @@ msgstr "فقير"
msgid "Report check result by mail"
msgstr "if set to yes, report check result by mail."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "حدود DHCP start"
-
#: ../../lang.pm:1
#, c-format
msgid "Grenada"
msgstr "عرينادا"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP start range"
+msgstr "حدود DHCP start"
+
#: ../../any.pm:1
#, c-format
msgid "Unsafe"
@@ -14603,23 +14862,12 @@ msgid ", %s sectors"
msgstr ", %s قطاع"
#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "No"
msgstr "لا"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
-"PhotoSmart or an HP LaserJet 2200?"
-msgstr ""
-"اذا كانت طابعتك جهازاً متعدد الوظائف من HP أو Sony (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 مع ماسح ضوئي, Sony IPJ-V100) أو جهاز HP PhotoSmart "
-"أو HP LaserJet 2200؟"
-
#: ../../lang.pm:1
#, c-format
msgid "Guadeloupe"
@@ -14685,16 +14933,16 @@ msgstr "خيارات طابعة NetWare"
msgid "%s BootSplash (%s) preview"
msgstr "%s BootSplash (%s) معاينة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "February"
+msgstr "فبراير"
+
#: ../../standalone/drakfloppy:1
#, c-format
msgid "General"
msgstr "عام"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing system: "
-msgstr "نظام الطباعة: "
-
#: ../../security/l10n.pm:1
#, c-format
msgid "/etc/issue* exist"
@@ -14710,6 +14958,16 @@ msgstr "أضف مستخدم"
msgid "Network configuration (%d adapters)"
msgstr "اعدادات الشبكة (%d موائمات)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "April"
+msgstr "أبريل"
+
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
+
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "Mandatory package %s is missing"
@@ -14720,7 +14978,7 @@ msgstr "الحزمة الضرورية %s مفقودة"
msgid "Philippines"
msgstr "الفيليبين"
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
@@ -14732,6 +14990,11 @@ msgstr "الفيليبين"
msgid "Ok"
msgstr "موافق"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "drakTermServ Overview"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print Queue Name"
@@ -14953,6 +15216,11 @@ msgstr "استخدم لـloopback"
msgid "Mandrake Bug Report Tool"
msgstr "أداة تقرير العيوب في Mandrake"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Apply filter"
+msgstr "طبّق المرشّح"
+
#: ../../network/adsl.pm:1
#, c-format
msgid "use pppoe"
@@ -14983,11 +15251,6 @@ msgstr "انقل"
msgid "Dvorak (Swedish)"
msgstr "Dvorak (سويدية)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "خيارات أكثر"
-
#: ../../lang.pm:1
#, c-format
msgid "Afghanistan"
@@ -14995,9 +15258,19 @@ msgstr "أفغانستان"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "More Options"
+msgstr "خيارات أكثر"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "الغ ملفات tar الخلصة بالقرص تاصلب بعد النسخ الى وسيط آخر."
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
+msgstr "بوروندي"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -15010,11 +15283,6 @@ msgstr ""
"عند أدوقات محددة دورياً. vixie cron يضيف عدداً من المزايا الى UNIX\n"
"cron الأساسي, بما فيها حماية أمنية أفضل, و خيارات تهيئة أقوى."
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "بوروندي"
-
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Add Client -->"
@@ -15071,16 +15339,23 @@ msgstr "Set-GID"
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"For a multisession CD, only the first session will erase the cdrw. Otherwise "
+"the cdrw is erased before each backup."
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "USB printer"
+msgstr ", طابعة USB"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Right \"Windows\" key"
msgstr "مفتاح \"Windows\" الأيمن"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
@@ -15165,6 +15440,11 @@ msgstr "تيرابايت"
msgid "FATAL"
msgstr "FATAL"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Refresh the list"
+msgstr "تحديث القائمة"
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -15181,7 +15461,7 @@ msgstr ""
"\n"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Delete"
msgstr "إلغاء"
@@ -15236,6 +15516,14 @@ msgstr "البروتوكول الأوروبي"
msgid ", printer \"%s\" on server \"%s\""
msgstr ", الطابعة \"%s\" على الخادم \"%s\""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Note that currently all 'net' media also use the hard drive."
+msgstr ""
+"تأكد من أن مراقب cron موجود ضمن خدمات النظام. \n"
+"\n"
+"لاحظ أن كل وسائط الشبكة تستخدم القرص الصلب."
+
#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
@@ -15358,6 +15646,11 @@ msgstr "وحدة"
msgid "Enter the directory to save to:"
msgstr "فضلاً اختر الدليل الذي سيتم الحفظ فيه:"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Greece"
+msgstr "اليونان"
+
#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "All"
@@ -15368,10 +15661,15 @@ msgstr "الكل"
msgid "Which printing system (spooler) do you want to use?"
msgstr "أي نظام طباعة تريد أن تستخدم؟"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Greece"
-msgstr "اليونان"
+msgid "July"
+msgstr "يوليو"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Prints into %s"
+msgstr ", جاري الطباعة الى %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -15454,6 +15752,11 @@ msgstr "طابعة على خادم NetWare"
msgid "Give the ram size in MB"
msgstr "اكتب حجم الذاكرة بالميغابايت"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Friday"
+msgstr "الجمعة"
+
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnection from Internet complete."
@@ -15515,6 +15818,11 @@ msgstr "تعذر ايجاد %s على %s"
msgid "Japanese 106 keys"
msgstr "اليابانية 106 مفاتيح"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Could not install the packages needed to share your scanner(s)."
+msgstr ""
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "This will take a few minutes."
@@ -15525,6 +15833,11 @@ msgstr "سيستغرق هذا بضع دقائق."
msgid "Burkina Faso"
msgstr "بوركينافاسو"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "June"
+msgstr "يونيو"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use scanners on remote computers"
@@ -15561,9 +15874,9 @@ msgid "1 minute"
msgstr "دقيقة واحدة"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "type: fat"
-msgstr "النوع: %s"
+msgstr "النوع: سميك"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -15580,6 +15893,18 @@ msgstr ", جهاز متعدد الوظائف"
msgid "Laos"
msgstr "لاوس"
+#: ../../share/advertising/04-configuration.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.2 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
+msgstr ""
+"يوفر Mandrake Linux 9.2 لك مركز تحكم Mandrake, و وهو أداة قوية لتعديل حاسوبك "
+"ليناسب احتياجاتك و لتهيئة و تخصيص عناصر مثل مستوى الأمن و الأجهزة الملحقة "
+"(الشاشة, الفأرة لوحة المفاتيح...), وصلة الإنترنت و غير ذلك الكثير!"
+
#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Activate/Disable ethernet cards promiscuity check."
@@ -15647,6 +15972,11 @@ msgstr ""
msgid "Saint Pierre and Miquelon"
msgstr "سانت بيير و ميكيلون"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "September"
+msgstr "سبتمبر"
+
#: ../../standalone/draksplash:1
#, c-format
msgid "saving Bootsplash theme..."
@@ -15766,7 +16096,7 @@ msgstr "ابني NIC واحدة -->"
msgid "Marshall Islands"
msgstr "جزر مارشال"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Is this correct?"
msgstr "هل هذا صحيح ؟ "
@@ -15822,9 +16152,9 @@ msgstr ""
"هل تريد المتابعة على أي حال؟"
#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Version: "
-msgstr "الإصدار: %s\n"
+msgstr "الإصدار:"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -15836,11 +16166,21 @@ msgstr "IP الخادم مفقود!"
msgid "Suriname"
msgstr "سورينام"
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Use a floppy"
+msgstr "احفظ على قرص مرن"
+
#: ../../any.pm:1
#, c-format
msgid "Enable ACPI"
msgstr "تمكين ACPI"
+#: ../../fs.pm:1
+#, c-format
+msgid "Give write access to ordinary users"
+msgstr ""
+
#: ../../help.pm:1
#, c-format
msgid "Graphical Environment"
@@ -15851,11 +16191,6 @@ msgstr "بيئات رسومية"
msgid "Gibraltar"
msgstr "جبل طارق"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "on Tape Device"
-msgstr "على الشريط"
-
#: ../../network/modem.pm:1
#, c-format
msgid "Do nothing"
@@ -15896,6 +16231,7 @@ msgstr "حسّن مستوى الأمن"
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
+#: ../../standalone/drakperm:1 ../../standalone/draksec:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "Help"
@@ -15975,6 +16311,11 @@ msgstr ""
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "خيارات طابعة SMB (Windows 9x/NT)"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "URI: %s"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid "Valid user list changed, rewriting config file."
@@ -15999,16 +16340,16 @@ msgstr ""
msgid "Protocol for the rest of the world"
msgstr "بروتوكول لبقية العالم"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digit and upcase letters"
-msgstr ""
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print test pages"
msgstr "اطبع صفحات اختبارية"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Activate now"
+msgstr "قم بالتنشيط الآن"
+
#: ../../Xconfig/card.pm:1
#, c-format
msgid "64 MB or more"
@@ -16111,6 +16452,11 @@ msgstr "أعد تشغيل XFS"
msgid "Add host/network"
msgstr "أضف مستضيف/شبكة"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Scannerdrake will not be started now."
+msgstr ""
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "Model name"
@@ -16121,11 +16467,6 @@ msgstr "اسم الطراز"
msgid "Albania"
msgstr "ألبانيا"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CDR/DVDR in drive!"
-msgstr "لا يوجد قرص CD-R/DVD-R في السواقة"
-
#: ../../lang.pm:1
#, c-format
msgid "British Indian Ocean Territory"
@@ -16136,6 +16477,11 @@ msgstr "منطقة جزر المحيط الهادي البريطانية"
msgid "Normal Mode"
msgstr "وضع عادي"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CD-R/DVD-R in drive!"
+msgstr "لا يوجد قرص CD-R/DVD-R في السواقة"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer connection type"
@@ -16256,6 +16602,11 @@ msgstr "أجهز وسائط متعددة أخرى"
msgid "burner"
msgstr "ناسخ أقراص"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " (Default is all users)"
+msgstr "المستخدم الإفتراضي"
+
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid "No remote machines"
@@ -16303,6 +16654,11 @@ msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قا
msgid "Internet Connection Sharing currently enabled"
msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
+msgstr "الإمارات العربية المتحدة"
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_0"
@@ -16315,11 +16671,6 @@ msgstr ""
#: ../../lang.pm:1
#, c-format
-msgid "United Arab Emirates"
-msgstr "الإمارات العربية المتحدة"
-
-#: ../../lang.pm:1
-#, c-format
msgid "Thailand"
msgstr "تايلاند"
@@ -16328,6 +16679,11 @@ msgstr "تايلاند"
msgid "Card IO_1"
msgstr "Card IO_1"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Search:"
+msgstr "ابحث:"
+
#: ../../lang.pm:1
#, c-format
msgid "Kazakhstan"
@@ -16353,76 +16709,31 @@ msgstr "اعرض كل طابعات CUPS البعيدة المتوفرة"
msgid "Mandrake Linux Installation %s"
msgstr "تثبيت Mandrake Linux %s"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Unknown driver"
+msgstr "مشغل غير معروف"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Thai keyboard"
msgstr "لوحة المفاتيح التايلاندية"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "خيارات الإتصال"
-
#: ../../lang.pm:1
#, c-format
msgid "Bouvet Island"
msgstr "جزيرة بوفيه"
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Dialup options"
+msgstr "خيارات الإتصال"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "If no port is given, 631 will be taken as default."
msgstr "اذا لم يتم اعطاء منفذ, سيتم اتخاذ 631 كمنفذ افتراضي."
-#: ../../standalone/draksec:1
-#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The Security Administrator is the one who will receive security alerts if "
-"the\n"
-"'Security Alerts' option is set. It can be a username or an email.\n"
-"\n"
-"\n"
-"The Security Level menu enable to select one of the six preconfigured "
-"security\n"
-"provided with msec. These levels range from poor security and ease of use, "
-"to\n"
-"paranoid config, suitable for very sensitive server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
-"very\n"
-"easy to use security level. It should only be used for machines not "
-"connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
-"security\n"
-"recommended for a computer that will be used to connect to the Internet as "
-"a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
-"enough\n"
-"to use the system as a server which can accept connections from many "
-"clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower "
-"level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -16452,6 +16763,11 @@ msgstr "Mandrake Online"
msgid "\t-Network by webdav.\n"
msgstr "\t-الشبكة عن طريق webdav.\n"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", multi-function device on a parallel port"
+msgstr ", جهاز متعدد الوظائف على المنفذ المتوازي #%s"
+
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -16474,13 +16790,13 @@ msgstr "نعذر ايجاد أقراص صلبة"
#: ../../mouse.pm:1
#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
+msgid "2 buttons"
+msgstr "زرّين"
#: ../../mouse.pm:1
#, c-format
-msgid "2 buttons"
-msgstr "زرّين"
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
#: ../../network/isdn.pm:1
#, c-format
@@ -16502,6 +16818,11 @@ msgstr "احفظ على قرص مرن"
msgid "Check open ports"
msgstr "تم اكتشافه على المنفذ %s"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Edit selected printer"
+msgstr "حرر الخادم المختار"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection"
@@ -16615,7 +16936,7 @@ msgstr ""
" (المنافذ المتوازية: /dev/lp0, /dev/lp1, ..., مماشل لـ LPT1:, LPT2:, ..., "
"طابعة USB الأولي: /dev/usb/lp0, طابعة USB الثانية: /dev/usb/lp1, ...)"
-#: ../../network/netconnect.pm:1
+#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Next"
msgstr "التالي"
@@ -16690,6 +17011,11 @@ msgstr "أنغويلا"
msgid "NIS Domain"
msgstr "نطاق NIS"
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
+msgstr "القطب الجنوبي"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -16699,11 +17025,6 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "القطب الجنوبي"
-
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount options"
@@ -16778,6 +17099,11 @@ msgstr "LPD و LPRng لا تدعم طابعات IPP.\n"
msgid "Host name or IP."
msgstr "اسم المستضيف"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Edit"
+msgstr "/_تحرير"
+
#: ../../fsedit.pm:1
#, c-format
msgid "simple"
@@ -16793,21 +17119,26 @@ msgstr "أمسح الكل"
msgid "No test pages"
msgstr "لا صفحات اختبارية"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
#: ../../lang.pm:1
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "جزر فوكلاند"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
+
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Boot disk creation"
msgstr "صنع قرص مرن لبدء النظام"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Monday"
+msgstr "الاثنين"
+
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown model"
@@ -16830,6 +17161,7 @@ msgstr "قم بالنسخ الإحتياطي الآن"
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_File"
msgstr "/_ملف"
@@ -16848,6 +17180,11 @@ msgstr ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Editable"
+msgstr "تعطيل"
+
#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
@@ -16952,9 +17289,9 @@ msgstr ""
"لا يوجد مشغل مفتوح المصدر لبطاقة الصوت (%s), لكن هناك مشغل تجاري في \"%s\"."
#: ../../standalone/drakperm:1
-#, fuzzy, c-format
+#, c-format
msgid "Group :"
-msgstr "مجموعة :"
+msgstr "المجموعة :"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -16984,7 +17321,7 @@ msgstr "جاري ضبط قنوات التلفاز"
msgid "Kernel:"
msgstr "النواة:"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "/_About..."
msgstr "/_حول..."
@@ -17049,6 +17386,11 @@ msgstr "اسم الطابعة يجب أن يحتوي فقط على حروف و
msgid "Show current interface configuration"
msgstr "أظهر تهيئة الواجهة الحالية"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Add Printer"
+msgstr "طابعة"
+
#: ../../security/help.pm:1
#, fuzzy, c-format
msgid ""
@@ -17079,16 +17421,16 @@ msgstr "انتهى"
msgid "Web Server"
msgstr "خادم الويب"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tلا تُضمن ملفات النظام\n"
-
#: ../../lang.pm:1
#, c-format
msgid "Chile"
msgstr "تشيلي"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
+msgstr "\tلا تُضمن ملفات النظام\n"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -17330,6 +17672,11 @@ msgstr "حمّل من قرص مرن"
msgid "The following printer was auto-detected. "
msgstr "تم اكتشاف الطابعة الآتية آلياً. "
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Uses command %s"
+msgstr ", باستخدام الأمر %s"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Boot Floppy"
@@ -17367,6 +17714,11 @@ msgstr "تهيئة صورة الإقلاع"
#: ../../lang.pm:1
#, c-format
+msgid "Georgia"
+msgstr "جورجيا"
+
+#: ../../lang.pm:1
+#, c-format
msgid "China"
msgstr "الصين"
@@ -17375,11 +17727,6 @@ msgstr "الصين"
msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr " (تأكد من أن كل الطابعات موصولة و تعمل).\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "جورجيا"
-
#: ../../standalone/printerdrake:1
#, c-format
msgid "Reading data of installed printers..."
@@ -17442,11 +17789,21 @@ msgstr "جاري اختيار مدير العرض"
msgid "Zeroconf Host name"
msgstr "اسم مستضيف Zeroconf"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Custom setup/crontab entry:"
+msgstr ""
+
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "عنوان IP يجب أن يكون على النسق 1.2.3.4"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Configure CUPS printing system"
+msgstr "تغيير نظام الطباعة"
+
#: ../../lang.pm:1
#, c-format
msgid "Ecuador"
@@ -17513,16 +17870,16 @@ msgstr "الأذربيجانية (لاتيني)"
msgid "Package not installed"
msgstr "لم يتم تثبيت الحزمة"
-#: ../../share/advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "كن خبيراً في MandrakeExpert"
-
#: ../../lang.pm:1
#, c-format
msgid "American Samoa"
msgstr "ساموا الأمريكية"
+#: ../../share/advertising/12-mdkexpert.pl:1
+#, c-format
+msgid "Become a MandrakeExpert"
+msgstr "كن خبيراً في MandrakeExpert"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Protocol"
@@ -17597,8 +17954,9 @@ msgstr "قد يستغرق مسح الوسيط بعض الوقت."
msgid "You can't select/unselect this package"
msgstr "لا يمكنك اختيار/ازالة اختيار هذه الحزمة"
-#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../network/modem.pm:1 ../../standalone/drakfloppy:1
+#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakfloppy:1
#, c-format
msgid "Warning"
msgstr "تحذير"
@@ -17617,11 +17975,6 @@ msgstr ""
msgid "Remote host name"
msgstr "اسم المستضيف البعيد"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "deactivate now"
-msgstr "قم بإزالة التنشيط الآن"
-
#: ../../any.pm:1
#, c-format
msgid "access to X programs"
@@ -17632,6 +17985,11 @@ msgstr "الوصول الى برامج X"
msgid "Computing the size of the Windows partition"
msgstr "جاري حساب مساحة تجزئة Windows"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Refresh"
+msgstr "/تح_ديث"
+
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, c-format
@@ -17704,6 +18062,11 @@ msgstr "Zip"
msgid "Left Alt key"
msgstr "مفتاح Alt الأيسر"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Load setting"
+msgstr "حمل الإعدادات"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -17717,6 +18080,11 @@ msgstr ""
"لم يتمكن Printerdrake من التعرف على طراز طابعتك %s. فضلاً اختر الطراز الصحيح "
"من القائمة."
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Set selected printer as the default printer"
+msgstr "عيّن هذه الطابعة كطابعة افتراضية"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -17893,6 +18261,11 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr "نسق الأقراص التي تدعمها السواقة"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Firmware copy failed, file %s not found"
+msgstr ""
+
#: ../../raid.pm:1
#, c-format
msgid "Not enough partitions for RAID level %d\n"
@@ -17984,6 +18357,7 @@ msgid "Georgian (\"Russian\" layout)"
msgstr "الجورجية (التصميم الروسي)"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Options"
msgstr "/_خيارات"
@@ -18143,9 +18517,9 @@ msgid "Use network connection to backup"
msgstr "استخدم الإتصال بالشبكة للنسخ الإحتياطي"
#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
+#, c-format
msgid "Kernel version"
-msgstr "اصدارة اللب"
+msgstr "اصدارة النواة"
#: ../../help.pm:1
#, c-format
@@ -18216,9 +18590,9 @@ msgid "Left Shift key"
msgstr "مفتاح Shift الأيسر"
#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#, c-format
msgid " local network"
-msgstr "الشبكة/الشبكات المحلية"
+msgstr " الشبكة المحلية"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -18231,9 +18605,9 @@ msgid "Syslog reports to console 12"
msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Search new servers"
-msgstr "ابحث في أجهزة الخادم"
+msgstr "ابحث عن خادمات جديدة"
#: ../../lang.pm:1
#, c-format
@@ -18290,6 +18664,11 @@ msgstr ""
"Linuxconf يقوم في بعض الأحيان بالترتيب لعمل بعض الأعمال\n"
"عند الإقلاع للمحافظة على اعدادات النظام."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "DVD-R device"
+msgstr "جهاز DVDR"
+
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on remote lpd server"
@@ -18374,10 +18753,10 @@ msgstr ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No mouse"
-msgstr "لا فأرة"
+msgid "Wednesday"
+msgstr "الأربعاء"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -18389,6 +18768,11 @@ msgstr "ألمانيا"
msgid "Austria"
msgstr "النمسا"
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "لا فأرة"
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Choose your CD/DVD media size (MB)"
@@ -18404,7 +18788,7 @@ msgstr "if set to yes, check permissions of files in the users' home."
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "شغّل \"sndconfig\" بعد التثبيت لتهيئة بطاقة الصوت الخاصة بك"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
msgstr "Collapse Tree"
@@ -18475,10 +18859,10 @@ msgstr ""
msgid "The %s is not supported by this version of Mandrake Linux."
msgstr "الـ %s غير مدعوم من هذا الإصدار من Mandrake Linux."
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
-msgid "Level 1"
-msgstr "المستوى"
+msgid "tape"
+msgstr "شريط البيانات"
#: ../../standalone/drakconnect:1
#, c-format
@@ -18494,35 +18878,32 @@ msgstr ""
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 2"
-msgstr "المستوى"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serial, old C7 type)"
#: ../../partition_table.pm:1
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "فشلت الإستعادة من الملف %s: %s"
-#: ../../mouse.pm:1
+#: ../../fsedit.pm:1
#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, old C7 type)"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 3"
-msgstr "المستوى"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 4"
-msgstr "المستوى"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Level 5"
-msgstr "المستوى"
+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 lose all the partitions?\n"
+msgstr ""
+"لا يمكنني قراءة جدول التجزئات للجهاز %s, يبدو أنه مخرّب :(\n"
+"يمكنني أن أحاول المتابعة مع ازالة التجزئات السيئة (ستضيع كل البيانات!).\n"
+"الحل الآخر هو أن تمنع DrakX من تعديل جدول التقسيمات.\n"
+"(الخطأ هو %s)\n"
+"\n"
+"هل أنت موافق على خسارة كل التجزئات؟\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -18554,11 +18935,6 @@ msgstr "تزامن وقت آلي"
msgid "Backup files not found at %s."
msgstr "ملفات النسخ الإحتياطي غير موجودة على %s"
-#: ../../share/advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.1"
-msgstr "شكراً لاختيارك Mandrake Linux 9.1"
-
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (phonetic)"
@@ -18574,6 +18950,11 @@ msgstr "نوع البطاقة"
msgid "Thin Client"
msgstr "عميل نحيف (Thin Client)"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.2"
+msgstr "شكراً لاختيارك Mandrake Linux 9.2"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Start Server"
@@ -18725,6 +19106,17 @@ msgstr "هذا المستضيف موجود في القائمة مسبقاً, ل
msgid ", USB printer"
msgstr ", طابعة USB"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid ""
+"Unable to properly close mkbootdisk:\n"
+"\n"
+"<span foreground=\"Red\"><tt>%s</tt></span>"
+msgstr ""
+"تعذر غلق mkbootdisk: \n"
+" %s \n"
+" %s"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -18742,6 +19134,11 @@ msgstr "اختر التطبيقات التي ستدعم الخطوط :"
msgid "Configure X"
msgstr "تهيئة X"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "hd"
+msgstr "تشاد"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (traditional \"F\" model)"
@@ -18860,6 +19257,11 @@ msgstr "غامبيا"
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Multi-function device"
+msgstr ", جهاز متعدد الوظائف"
+
#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
@@ -18871,21 +19273,6 @@ msgstr ""
"أمثلة صالحة هي: 139/tcp 139/udp.\n"
"الق نظرة على /etc/services لمزيد من المعلومات."
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is correct, you can choose from\n"
-"this list the monitor you actually have connected to your computer."
-msgstr ""
-"الشاشة\n"
-"\n"
-" يمكن لبرنامج التثبيت اكتشاف و تهيئة الشاشة المتصلة بماكينتك\n"
-"آلياً. ان لم يصل ذلك, يمكنك اختيار الشاشة التي لديك\n"
-"من القائمة."
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "\t-Tape \n"
@@ -18959,6 +19346,11 @@ msgstr "اختر الحزم التي تريد تثبيتها"
msgid "Papua New Guinea"
msgstr "بابوا غينيا الجديدة"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Multi-function device on a parallel port"
+msgstr ", جهاز متعدد الوظائف على المنفذ المتوازي #%s"
+
#: ../../keyboard.pm:1
#, c-format
msgid "Serbian (cyrillic)"
@@ -19046,6 +19438,16 @@ msgstr ""
"lpd هو مراقب الطباعة الذي يحتاجه أمر lpr للعمل بشل صحيح. أساساً\n"
"هو خادم يوصل وظائف الطباعة الى الطابعات."
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Irish"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Sunday"
+msgstr "الأحد"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Internet Connection Configuration"
@@ -19138,6 +19540,12 @@ msgstr "أقراص RAID %s\n"
msgid "Liberia"
msgstr "ليبريا"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"Could not install the packages needed to set up a scanner with Scannerdrake."
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -19180,6 +19588,17 @@ msgstr "جاري تشغيل \"%s\" ..."
msgid "enable radio support"
msgstr "تمكين دعم الراديو"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \t\ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \t\tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing to hosts: "
@@ -19345,6 +19764,11 @@ msgstr ""
"تأكد من صحة القرص المدمج على كمبيوتر مثبّت باستخدام الأمر \"rpm -qpl Mandrake/"
"RPMS/*.rpm\"\n"
+#: ../../share/advertising/06-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.2: the ultimate development platform"
+msgstr "Mandrake Linux 9.2 هي البيئة الأمثل لتطوير البرامج"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Detected model: %s"
@@ -19371,21 +19795,28 @@ msgstr ""
msgid "if set to yes, run the daily security checks."
msgstr "if set to yes, run the daily security checks"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Device name to use for backup"
-msgstr "فضلاً أدخل اسم جهاز النسخ الإحتياطي"
-
#: ../../lang.pm:1
#, c-format
msgid "Azerbaijan"
msgstr "أذربيجان"
#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Device name to use for backup"
+msgstr "فضلاً أدخل اسم جهاز النسخ الإحتياطي"
+
+#: ../../standalone/drakbackup:1
#, c-format
msgid "No tape in %s!"
msgstr "لا يوجد شريط في %s!"
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+" --doc <link> - link to another web page ( for WM welcome "
+"frontend)\n"
+msgstr ""
+
# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
# it displays on screen as "(US) Dvorak", following the same schema
# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
@@ -19602,6 +20033,70 @@ msgstr "خادم NFS, خادم SMB, خادم بروكسي, خادم ssh"
msgid "Set of tools to read and send mail and news and to browse the Web"
msgstr "مجموعة من الأدوات لقراءة و ارسال البريد و الأخبار و تصفح الإنترنت"
+#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+
+#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#~ msgid "Hostname configuration"
+#~ msgstr "تهيئة اسم المستضيف"
+
+#~ msgid "Hostname"
+#~ msgstr "اسم المستضيف"
+
+#~ msgid "Remote Printers"
+#~ msgstr "الطابعات البعيدة"
+
+#~ msgid "Printing system: "
+#~ msgstr "نظام الطباعة: "
+
+#, fuzzy
+#~ msgid "Level 1"
+#~ msgstr "المستوى"
+
+#, fuzzy
+#~ msgid "Level 2"
+#~ msgstr "المستوى"
+
+#, fuzzy
+#~ msgid "Level 3"
+#~ msgstr "المستوى"
+
+#, fuzzy
+#~ msgid "Level 4"
+#~ msgstr "المستوى"
+
+#, fuzzy
+#~ msgid "Level 5"
+#~ msgstr "المستوى"
+
+#, fuzzy
+#~ msgid "Insert floppy and press %s"
+#~ msgstr "أدخل قرص مرن في %s"
+
+#~ msgid "Load"
+#~ msgstr "حمل"
+
+#~ msgid ""
+#~ "Monitor\n"
+#~ "\n"
+#~ " The installer will normally automatically detect and configure the\n"
+#~ "monitor connected to your machine. If it is correct, you can choose from\n"
+#~ "this list the monitor you actually have connected to your computer."
+#~ msgstr ""
+#~ "الشاشة\n"
+#~ "\n"
+#~ " يمكن لبرنامج التثبيت اكتشاف و تهيئة الشاشة المتصلة بماكينتك\n"
+#~ "آلياً. ان لم يصل ذلك, يمكنك اختيار الشاشة التي لديك\n"
+#~ "من القائمة."
+
+#~ msgid "Bad Ip"
+#~ msgstr "IP سيئ"
+
+#~ msgid "Output"
+#~ msgstr "الناتج"
+
#~ msgid "Please relog into %s to activate the changes"
#~ msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
@@ -20171,14 +20666,14 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ "file.\n"
#~ "\n"
#~ " - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-#~ " \t\tThrough clusternfs, each diskless client can have it's own "
+#~ " \t\tThrough clusternfs, each diskless client can have its own "
#~ "unique configuration files\n"
#~ " \t\ton the root filesystem of the server. In the future "
#~ "drakTermServ will help create these\n"
#~ " \t\tfiles.\n"
#~ "\n"
#~ " - Per client system configuration files:\n"
-#~ " \t\tThrough clusternfs, each diskless client can have it's own "
+#~ " \t\tThrough clusternfs, each diskless client can have its own "
#~ "unique configuration files\n"
#~ " \t\ton the root filesystem of the server. In the future, "
#~ "drakTermServ can help create files\n"
@@ -20196,7 +20691,7 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ " \t\tA typical tftp configuration file looks like:\n"
#~ " \t\t\n"
#~ " \t\tservice tftp\n"
-#~ " \t\t(\n"
+#~ "\t\t\t{\n"
#~ " disable = no\n"
#~ " socket_type = dgram\n"
#~ " protocol = udp\n"
@@ -20210,7 +20705,7 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ "the disable flag to\n"
#~ " \t\t'no' and changing the directory path to /var/lib/tftpboot, "
#~ "where mkinitrd-net\n"
-#~ " \t\tputs it's images.\n"
+#~ " \t\tputs its images.\n"
#~ "\n"
#~ " - Create etherboot floppies/CDs:\n"
#~ " \t\tThe diskless client machines need either ROM images on the "
@@ -20304,14 +20799,14 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ "file.\n"
#~ "\n"
#~ " - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-#~ " \t\tThrough clusternfs, each diskless client can have it's own "
+#~ " \t\tThrough clusternfs, each diskless client can have its own "
#~ "unique configuration files\n"
#~ " \t\ton the root filesystem of the server. In the future "
#~ "drakTermServ will help create these\n"
#~ " \t\tfiles.\n"
#~ "\n"
#~ " - Per client system configuration files:\n"
-#~ " \t\tThrough clusternfs, each diskless client can have it's own "
+#~ " \t\tThrough clusternfs, each diskless client can have its own "
#~ "unique configuration files\n"
#~ " \t\ton the root filesystem of the server. In the future, "
#~ "drakTermServ can help create files\n"
@@ -20329,7 +20824,7 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ " \t\tA typical tftp configuration file looks like:\n"
#~ " \t\t\n"
#~ " \t\tservice tftp\n"
-#~ " \t\t(\n"
+#~ "\t\t\t{\n"
#~ " disable = no\n"
#~ " socket_type = dgram\n"
#~ " protocol = udp\n"
@@ -20343,7 +20838,7 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ "the disable flag to\n"
#~ " \t\t'no' and changing the directory path to /var/lib/tftpboot, "
#~ "where mkinitrd-net\n"
-#~ " \t\tputs it's images.\n"
+#~ " \t\tputs its images.\n"
#~ "\n"
#~ " - Create etherboot floppies/CDs:\n"
#~ " \t\tThe diskless client machines need either ROM images on the "
@@ -20412,9 +20907,6 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ msgid "Internet connection & configuration"
#~ msgstr "وصلة الإنترنت و الإعدادات"
-#~ msgid "Configure the connection"
-#~ msgstr "قم بإعداد الإتصال"
-
#~ msgid "Disconnect"
#~ msgstr "اقطع الإتصال"
@@ -20995,11 +21487,11 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ msgstr "لا بطاقة شبكة وجدت "
#~ msgid ""
-#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "Mandrake Linux 9.2 has selected the best software for you. Surf the Web "
#~ "and view animations with Mozilla and Konqueror, or read your mail and "
#~ "handle your personal information with Evolution and Kmail"
#~ msgstr ""
-#~ "اختار Mandrake Linux 9.1 أفضل البرامج لك. تصفح الإنترنت و استعرض الصر "
+#~ "اختار Mandrake Linux 9.2 أفضل البرامج لك. تصفح الإنترنت و استعرض الصر "
#~ "المتحركة باستخدام موزيللا و كونكيورر, أو اقرأ بريدك الألكتروني و تعامل مع "
#~ "معلوماتك الشخصية باستخدام KMail و Evolution"
@@ -21013,16 +21505,16 @@ msgstr "مجموعة من الأدوات لقراءة و ارسال البريد
#~ msgstr "اكتشف أحدث أدوات الوسائط المتعددة و برامج الرسم!"
#~ msgid ""
-#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "Mandrake Linux 9.2 provides the best Open Source games - arcade, action, "
#~ "strategy, ..."
#~ msgstr ""
-#~ "Mandrake Linux 9.1 يوفر أفضل الألعاب مفتوحة المصدر - أركيد, حركة, "
+#~ "Mandrake Linux 9.2 يوفر أفضل الألعاب مفتوحة المصدر - أركيد, حركة, "
#~ "استراتيجية, ..."
#~ msgid ""
-#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "Mandrake Linux 9.2 provides a powerful tool to fully customize and "
#~ "configure your machine"
-#~ msgstr "يوفر Mandrake Linux 9.1 أداة قوية لتخصيص و تهيئة جهازك"
+#~ msgstr "يوفر Mandrake Linux 9.2 أداة قوية لتخصيص و تهيئة جهازك"
#~ msgid "User interfaces"
#~ msgstr "واجهات الإستخدام"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 953ae5f07..59f69e996 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -7,14 +7,13 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2003-08-13 03:40+0200\n"
-"PO-Revision-Date: 2003-08-04 20:46+0300\n"
+"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"PO-Revision-Date: 2003-09-09 10:18+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
-"Language-Team: Azerbaijani <gnome@azitt.com>\n"
+"Language-Team: Azərbaycan <gnome@azitt.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -53,6 +52,8 @@ msgid ""
"Differential backups only save files that have changed or are new since the "
"original 'base' backup."
msgstr ""
+"Diferensial ehtiyatlamar yalnız oricinal 'əsas' ehtiyatlamadan sonra "
+"dəyişdirilən və yaranan faylları qeyd edər."
#: ../../standalone/harddrake2:1
#, c-format
@@ -62,7 +63,12 @@ msgstr "şəbəkə çapçısı qapısı"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Please insert floppy disk:"
-msgstr "Xahiş edirik bir disket taxın:"
+msgstr "Xahiş edirik, disketi taxın:"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "DrakTermServ"
+msgstr "DrakTermServ"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -93,6 +99,11 @@ msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
msgid "Restore partition table"
msgstr "Bölmə cədvəlini geri al"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure hostname..."
+msgstr "Qovşaq adını quraşdır..."
+
#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
@@ -110,7 +121,7 @@ msgid ""
"Select permissions to see/edit"
msgstr ""
"Hazırkı təhlükəsizlik səviyyəsi: %s\n"
-"Görmək/dəyişdirmək üçün səlahiyyətləri seçin"
+"Görmək/dəyişdirmək istədiyiniz səlahiyyətləri seçin"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -160,17 +171,17 @@ msgstr "Mərkəzi Afrika Respublikası"
#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
-msgstr "Şəbəkə Keçidi (Gateway) avadanlığı"
+msgstr "Şəbəkə keçidi avadanlığı"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Advanced preferences"
-msgstr "Ətraflı seçimlər"
+msgstr "Ətraflı qurğularr"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Net Method:"
-msgstr "Net Yöntəmi:"
+msgstr "Şəbəkə Yöntəmi:"
#: ../../harddrake/data.pm:1
#, c-format
@@ -180,8 +191,7 @@ msgstr "Eternet Kartı"
#: ../../security/l10n.pm:1
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
-msgstr ""
-"Tə'yin edilibsə, poçtu bu ünvana göndər, deyilsə ali istifadəçiyə göndər"
+msgstr "Seçilibsə, poçtu bu ünvana göndər, edilməyibsə ali istifadəçiyə göndər"
#: ../../standalone/drakconnect:1
#, c-format
@@ -206,12 +216,7 @@ msgstr "Ara üz:"
#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
-msgstr "Quruluş sinifini seçin"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "on CDROM"
-msgstr "CDROM'da"
+msgstr "Qurulum sinifinin seçimi"
#: ../../network/tools.pm:1
#, c-format
@@ -220,7 +225,7 @@ msgid ""
"Try to reconfigure your connection."
msgstr ""
"Sisteminiz İnternetə bağlı görünmür.\n"
-"Bağlantınızı yenidən qurğulayın."
+"Bağlantınızı yenidən quraşdırın."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -275,6 +280,11 @@ msgstr "Aşağıdakı paketlər qurulacaq"
msgid "CUPS configuration"
msgstr "CUPS quraşdırılması"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Total progress"
+msgstr "Ümumi irəliləmə"
+
#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
@@ -283,7 +293,7 @@ msgstr "Honq Konq"
#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
-msgstr "Yeni bölmələr ayırmaq üçün kifayət boş sahə yoxdur"
+msgstr "Yeni bölmələr ayırmaq üçün kifayət qədər boş yer yoxdur"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -321,8 +331,8 @@ msgid ""
msgstr ""
"Şəbəkə Quraşdırma Sehirbazına Xoç Gəldiniz\n"
"\n"
-"Birazdan İnternet/Şəbəkə qurğularınızı sazlayacayıq.\n"
-"Avtomatik təsbit istəmirsiniz isə işarəni qaldırın.\n"
+"Birazdan İnternet/Şəbəkə qurğularınızı sazlayacaqsınız.\n"
+"Avtomatik təsbit istəmirsinizsə işarəni silin.\n"
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
@@ -355,9 +365,9 @@ msgid "No CD device defined!"
msgstr "CD avadanlığı tə'yin edilməyib!"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "\tUse .backupignore files\n"
-msgstr ".backupignore fayllarını işlət"
+msgstr "\t.backupignore fayllarını işlət\n"
#: ../../keyboard.pm:1
#, c-format
@@ -375,14 +385,14 @@ msgid "256 kB"
msgstr "256 kB"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Don't rewind tape after backup"
-msgstr "Xətalı yedəkləmə faylı"
+msgstr "Ehtiyat nüsxəsini aldıqdan sonra kasedi geri sarma"
#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
-msgstr "Sistem yükləyicisi ana seçənəkləri"
+msgstr "Sistem yükləyicisinin ana seçimləri"
#: ../../standalone.pm:1
#, c-format
@@ -414,7 +424,7 @@ msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-"Bu seçənək ilə siz /etc cərgənizin hər hansı bir buraxılışını\n"
+"Bu seçim ilə siz /etc cərgənizin hər hansı bir buraxılışını\n"
" geri ala bilərsiniz."
#: ../../standalone/drakedm:1
@@ -427,6 +437,11 @@ msgstr "Dəyişikliklər həyata keçirildi, dm xidməti yenidən başladılsın
msgid "Swiss (French layout)"
msgstr "İsveçrə dili (Fransız düzülüşü)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "August"
+msgstr "Avqust"
+
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
@@ -449,13 +464,18 @@ msgstr "Səs kartı"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "Month"
+msgstr "Ay"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "Search for files to restore"
msgstr "Geri qaytarılacaq faylları axtar"
#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
-msgstr "Lüksemburq"
+msgstr "Lyuksemburq"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -489,7 +509,7 @@ msgstr "Yol"
#: ../../lang.pm:1
#, c-format
msgid "Iraq"
-msgstr "İraq"
+msgstr "İrak"
#: ../../standalone/drakgw:1
#, c-format
@@ -537,7 +557,7 @@ msgstr "Əsas masa üstü"
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
-msgstr "Venezuela"
+msgstr "Venesuela"
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
@@ -565,6 +585,8 @@ msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
+"Yalnız dəqiq olaraq bağlana bilər (mis.,\n"
+" -a seçimi fayl sisteminin bağlanmasına səbəb olmayacaq)."
#: ../../network/modem.pm:1
#, c-format
@@ -595,6 +617,11 @@ msgstr "İstifadəçi adı"
msgid "Left \"Windows\" key"
msgstr "Sol \"Windows\" düyməsi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr "Quyana"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Server Configuration"
@@ -607,22 +634,22 @@ msgid ""
" only owner of directory or file in this directory can delete it"
msgstr ""
"Cərgə üçün istifadə edilən:\n"
-" ancaq cərgə yiyəsi ya da cərgə içindəki fayl onu silə bilər"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Quyana"
+" yalnız cərgə yiyəsi ya da cərgə içindəki fayl onu silə bilər"
#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " Novell vericisi üstündə \"%s\", çapçı \"%s\""
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Printer Name"
+msgstr "Çapçı Adı"
+
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Remove a module"
-msgstr "Modulu çıxart"
+msgstr "Modulu sil"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
@@ -679,7 +706,7 @@ msgstr "lazım olarsa"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Failed..."
-msgstr "Geri qaytarma bacarılmadı..."
+msgstr "Geri Yükləmə Bacarılmadı..."
#: ../../standalone/harddrake2:1
#, c-format
@@ -689,7 +716,7 @@ msgstr "/_jazz sürücülərini avtomatik təsbit et"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+msgstr "Bu sistem üçün şifrəni drakbackup qurğularında qeyd et."
#: ../../install_messages.pm:1
#, c-format
@@ -844,7 +871,7 @@ msgstr ""
"Software Products.\n"
"\n"
"\n"
-"2. Hüdudlu Qarantiya\n"
+"2. Hüdudlu Zəmanət\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
@@ -881,7 +908,7 @@ msgstr ""
"included in the Software Products.\n"
"\n"
"\n"
-"3. GPL və Əlaqəli Lisenziyalar\n"
+"3. GPL və Əlaqədar Lisenziyalar\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities. Most \n"
@@ -971,7 +998,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not print any test page"
-msgstr "Sınaq səhifəsi çap etmə"
+msgstr "Sınaq səhifəsini çap etmə"
#: ../../keyboard.pm:1
#, c-format
@@ -1001,7 +1028,7 @@ msgstr "[klaviatura]"
#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
-msgstr "FTP vəkil vericisi"
+msgstr "FTP vəkili"
#: ../../standalone/drakfont:1
#, c-format
@@ -1014,13 +1041,13 @@ msgid ""
"Change\n"
"Restore Path"
msgstr ""
-"Geri Qaytarma Cığırını\n"
+"Geri Yükləmə Cığırını\n"
"Dəyişdir"
#: ../../standalone/logdrake:1
#, c-format
msgid "Show only for the selected day"
-msgstr "Ancaq seçili gününkünü göstər"
+msgstr "Yalnız seçili gününkünü göstər"
#: ../../standalone/drakbackup:1
#, c-format
@@ -1072,20 +1099,24 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Qurğuları sazlamaq və çap vəzifələrini yerinə gətirmək üçün eyni zamanda "
+"\"xpdq\"dən də istifadə edə bilərsiniz.\n"
+"Əgər masa üstü mühidi olaraq KDE işlədirinizsə, masa üstünüzdə adı \"Çapçını "
+"DAYANDIR!\" olan \"panika düyməsi\", mövuddur, bu düyməyəbasılanda bütün çap "
+"vəzifələri birbaşa dayandırılır. Bu xususilə çapçı tıxanmalarında "
+"faydalıdır.\n"
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
-"\n"
-"Note that currently all 'net' media also use the hard drive."
-msgstr ""
+#, fuzzy, c-format
+msgid "Unable to find backups to restore...\n"
+msgstr "Xahiş edirik ehtiyat nüsxəsi qeri yüklənəcək mə'lumatı seçin..."
#: ../../standalone/harddrake2:1
#, c-format
@@ -1100,7 +1131,7 @@ msgstr "Bu verici onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
-msgstr "Şəbəkə Qurğuları"
+msgstr "Şəbəkə Quraşdırılması"
#: ../../standalone/logdrake:1
#, c-format
@@ -1119,7 +1150,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
-msgstr "%s seçənəyi rəqəm olmalıdır!"
+msgstr "%s seçimi rəqəm olmalıdır!"
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
@@ -1138,9 +1169,10 @@ msgid ""
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""
-"Çapçı qurğuları tamamilə avtomatik həyata keçirilir. Əgər çapçınız aşkar "
-"edilə bilmədi isə ya da siz xüsusiləşdirilmiş çapçı qurğuları "
-"arzulayırsanız, \"Əllə quraşdırma\" seçənəyini seçin."
+"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin. Çapçının quraşdırılması "
+"tamamilə avtomatik olacaq. Əgər çapçınız düzgün açkar edilməyibsə ya "
+"daxüsusiləşdirilmiş çap quraşdırması istəyirsinizsə, \"Əllə quraşdırma\"nı "
+"seçin."
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -1184,7 +1216,7 @@ msgstr "İsmarışlar"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Namə'lum|CPH06X (bt878) [çox satıcı]"
+msgstr "Namə'lum|CPH06X (bt878) [çox satıcılı]"
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -1206,11 +1238,6 @@ msgstr "Model addımlaması"
msgid "Rwanda"
msgstr "Ruanda"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Heç %s ara üzünüz var?"
-
#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
@@ -1221,6 +1248,11 @@ msgstr "İsveçrə"
msgid "Brunei Darussalam"
msgstr "Bruney Darüssəlam"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "%s ara üzünüz var?"
+
#: ../../standalone/drakTermServ:1
#, c-format
msgid "You must be root to read configuration file. \n"
@@ -1229,7 +1261,7 @@ msgstr "Quraşdırma faylını oxumaq üçün ali istifadəçi olmalısınız. \
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
-msgstr "Uzaq lpd Çapçı Seçənəkləri"
+msgstr "Uzaq lpd Çapçı Seçimləri"
#: ../../help.pm:1
#, c-format
@@ -1325,6 +1357,11 @@ msgstr ""
msgid "Configure Internet Access..."
msgstr "İnternet Yetişməsini Quraşdır..."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please choose the time interval between each backup"
+msgstr "Xahiş edirik, hər ehtiyatlama gedişatı arasındakı vaxt aralığını seçin"
+
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
@@ -1356,7 +1393,7 @@ msgid ""
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-"Xahiş edirik bu kompüter üçün IP qurğularını girin.\n"
+"Xahiş edirik, bu kompüter üçün IP qurğularını girin.\n"
"Hər üzv nöqtəli onluq IP şəklində girilməlidir,\n"
"(misal üçün 1.2.3.4)."
@@ -1376,16 +1413,21 @@ msgstr ""
msgid "When checked, owner and group won't be changed"
msgstr "Seçilidirsə, yiyə və qrup dayişdirilməyəcək"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "İşlədicilər"
-
#: ../../lang.pm:1
#, c-format
msgid "Bulgaria"
msgstr "Bolqarıstan"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Tuesday"
+msgstr "Çərşənbə axşamı"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Processors"
+msgstr "İşlədicilər"
+
#: ../../lang.pm:1
#, c-format
msgid "Svalbard and Jan Mayen Islands"
@@ -1410,23 +1452,23 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
-msgstr "%s bölməsi indi %s oldu"
+msgstr "%s bölməsi indi %s olaraq bilinir"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Other files..."
msgstr "Diqər Faylların Ehtiyat Nüsxəsini Al..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB verici IP'si"
-
#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Konqo (Kinşasa)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "SMB verici IP'si"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
@@ -1527,11 +1569,6 @@ msgstr "Əsas olaraq Yunikod işlət"
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr "bu avadanlığı işlədən GNU/Linux çəyirdək modulu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDR device"
-msgstr "DVDR avadanlığı"
-
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
@@ -1540,7 +1577,7 @@ msgstr "Bölmə cədvəli qurtarılmaya cəhd edilir"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
-msgstr "%s seçənəyi bir integer rəqəmi olmalıdır!"
+msgstr "%s seçimi integer rəqəmi olmalıdır!"
#: ../../security/l10n.pm:1
#, c-format
@@ -1563,6 +1600,9 @@ msgid ""
"moved to the other media. Enabling this option will remove the hard drive "
"tar files after the backup."
msgstr ""
+"Başqa mediyalara ehtiyatlamada, fayllar sabit diskdə yaradılıb, daha sonra "
+"başqa mediyalara daşınır. Bu seçimi fəallaşdıraraq, ehtiyatlama sonrası "
+"sabit diskdəki faylların silinməsinə imkan verir."
#: ../../standalone/livedrake:1
#, c-format
@@ -1577,7 +1617,7 @@ msgstr "Ad: "
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
-msgstr "16 milyon rəng (24 bit)"
+msgstr "16 million rəng (24 bit)"
#: ../../any.pm:1
#, c-format
@@ -1592,7 +1632,7 @@ msgstr "Rəsmi MandrakeSoft Dükanı"
#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
-msgstr "Böyüklüyü dəyişdirilir"
+msgstr "Ölçüləndirilir"
#: ../../standalone/drakbackup:1
#, c-format
@@ -1600,6 +1640,8 @@ msgid ""
"Enter the maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
+"Drakbackup üçün\n"
+"icazə verilən maksimal böyüklüyü (MB) daxil edin"
#: ../../network/netconnect.pm:1
#, c-format
@@ -1611,30 +1653,11 @@ msgstr "Kabel bağlantısı"
msgid "User"
msgstr "İstifadəçi"
-#: ../../fsedit.pm:1
-#, 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 ""
-"%s avadanlığının 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. Ancaq bütün mə'lumatlar "
-"itəcəkdir.\n"
-"Başqa bir yol isə DrakX'ə bölmə cədvəllərini yoxlama icazəsi verməməkdir.\n"
-"(xəta %s)\n"
-"\n"
-"Bütün bölmələri itirmək istəyirsiniz?\n"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-"Geri qaytarmadan əvvəl yeni ehtiyatları al (ancaq artan ehtiyatlar üçün.)"
+"Geri yükləmədən əvvəl yeni ehtiyatları al (ancaq artan ehtiyatlar üçün.)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -1674,7 +1697,7 @@ msgstr "rpm vasitələrinə yetişmə"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
-msgstr "Çapçı avadanlığı seçməli/girməlisiniz!"
+msgstr "Çapçı avadanlığını seçməli/girməlisiniz!"
#: ../../standalone/drakbackup:1
#, c-format
@@ -1701,41 +1724,26 @@ msgstr "Çapçı adı, izahatı, yeri"
msgid "USA (broadcast)"
msgstr "ABŞ (translasiya)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Xahiş edirik ehtiyat nüsxəsi\n"
-"çıxardılacaq mediyanı seçin."
-
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
-msgstr "Xinerama uzatmalarını işlət"
+msgstr "Xinerama tərkib hissəsini işlət"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk: \n"
-" %s \n"
-" %s"
-msgstr ""
-"mkbootdisk düzgün bağlana bilmədi: \n"
-" %s \n"
-" %s"
-
#: ../../standalone/drakxtv:1
#, c-format
msgid "West Europe"
msgstr "Qərvi Avropa"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "On CD-R"
+msgstr "CDROM'da"
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -1759,30 +1767,30 @@ msgid "Harddrake2 version %s"
msgstr "Harddrake2 buraxılış %s"
#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
+#, c-format
msgid "Preferences"
-msgstr "Xüsusiyyətlər: "
+msgstr "Qurğular"
#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "Svaziland"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
+msgstr "Dominikan Respublikası"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
-msgstr "%s köçürdülür"
+msgstr "%s köçürülür"
#: ../../standalone/draksplash:1
#, c-format
msgid "Choose color"
msgstr "Rəngi seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikan Respublikası"
-
#: ../../keyboard.pm:1
#, c-format
msgid "Syriac"
@@ -1847,7 +1855,7 @@ msgstr "Əvvəlcə məntiqi həcmləri sil\n"
#: ../../bootloader.pm:1
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "İsiqlandirilmis secenek %d saniye icinde sistemi acacaq."
+msgstr "Isiqlandirilmis secim %d saniye icinde sistemi acacaq."
#: ../../standalone/drakboot:1
#, c-format
@@ -1878,7 +1886,7 @@ msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-"Hazırkı çapçı üçün mövcud olan seçənəklər siyahısını almaq üçün \"Seçənəklər "
+"Hazırkı çapçı üçün mövcud olan seçimlər siyahısını almaq üçün \"Seçimlər "
"siyahısını göstər\" düyməsinə basın."
#: ../../standalone/drakgw:1
@@ -1894,7 +1902,7 @@ msgstr "Sınaq səhifə(ləri)si çap edilir..."
#: ../../fsedit.pm:1
#, 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"
+msgstr "Onsuz da bağlama nöqtəsi %s olan bölmə mövcuddur\n"
#: ../../security/help.pm:1
#, c-format
@@ -1974,13 +1982,13 @@ msgstr ""
"itirilməsinə səbəb ola bilər. Ona görə də əgər sisteminizdə başqa bir\n"
"əməliyyat sistemi quruludursa və siz Linuksla yeni tanışırsınızsa bu iş\n"
"çox gərgin və yorucudur. Ancaq DrakX sabit diski çox rahat bölmələndirməniz\n"
-"üçün çox sadə bir sehirbaz daxil edir. Başlamadan əvvəl xahiş edirik "
+"üçün çox sadə bir sehirbaz daxil edir. Başlamadan əvvəl xahiş edirik, "
"buradakı\n"
"mə'lumatları oxuyun, və bu iş üçün bir az vaxt ayırın.\n"
"\n"
-"Sabit diskinizin qurğularına nəzarən birdən çox seçənək mövcud ola bilər:\n"
+"Sabit diskinizin qurğularına nəzarən birdən çox seçim mövcud ola bilər:\n"
"\n"
-" * \"%s\": bu seçənək boş sürücülərinizi avtomatik olaraq bölmələndirəcək\n"
+" * \"%s\": bu seçim boş sürücülərinizi avtomatik olaraq bölmələndirəcək\n"
"Bu seçənəyi seçsəniz sizə heç bir sual verilməyəcək.\n"
"\n"
" * \"%s\": sehirbaz sabit diskinizdə bir ya da daha çox mövcud Linuks \n"
@@ -2059,12 +2067,12 @@ msgstr "əgər bəli seçilidirsə, yoxlama nəticələrini poçtla göndər."
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
-msgstr "Seçiminiz? (əsas %s) "
+msgstr "Seçiminiz? (əsası %s) "
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Trouble shooting"
-msgstr "Problem Həll Etmə"
+msgstr "Problem həlli"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -2099,7 +2107,7 @@ msgstr "İrlandiya"
#: ../../standalone/drakbackup:1
#, c-format
msgid " Restore Configuration "
-msgstr " Qurğuları Qeri AL "
+msgstr " Qurğuları Geri AL "
#: ../../Xconfig/test.pm:1
#, c-format
@@ -2128,6 +2136,23 @@ msgid ""
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
+"İndi, İnternet/şəbəkə bağlantınız quraşdırılacaq. Əgər kompüterinizi\n"
+"yerli şəbəkə ya da internetə bağlamaq istəyirsinizsə, \"%s\" düyməsinə\n"
+"basın. Mandrake Linuks şəbəkə avadanlıqları və modemlərinizi aşkar etməyə\n"
+"cəhd edəcək. Əgər avtomatik aşkar bacarılmazsa, \"%s\" qutusunun işarəsini\n"
+"silin. Eyni zamanda, şəbəkəni indi quraşdırmaq istəməyə də bilərsiniz, bu "
+"halda\n"
+"bunu daha sonra etmək üçün \"%s\" düyməsinə basaraq növbəti addıma keçə\n"
+"bilərsiniz.\n"
+"\n"
+"Şəbəkəniz quraşdırılırkən mövcud bağlantı seçimləri bunlar olacaq:\n"
+"ənənəvi modem, ISDN modem, ADSL bağlantı, kabel modem, və son olaraq\n"
+"da bəsit LAN bağlantısı (Eternet).\n"
+"\n"
+"Hər qurğunun təfərruatına girməyəcəyik - sadəcə olaraq IP ünvanı, əsas\n"
+"şəbəkə keçidi (Default Gateway), DNS vericiləri vs. kimi parametrləri "
+"internet \n"
+"xidmət provayderinizdən ya da sistem idarəçinizdən almaq yadınızdan çıxmasın."
#: ../../standalone/drakbackup:1
#, c-format
@@ -2176,7 +2201,7 @@ msgstr "\"%s\" çapçısı çıxardılır..."
#: ../../security/l10n.pm:1
#, c-format
msgid "Shell history size"
-msgstr "Qabıq keçmiş böyüklüyü"
+msgstr "Qabıq keçmişi böyüklüyü"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -2196,6 +2221,11 @@ msgstr ""
"Avtomatik qurma modunu quğulamaq istəmirsinizsə buranı boş buraxın.\n"
"\n"
+#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
+#, c-format
+msgid "Configured on other machines"
+msgstr "Digər kompüterlər üstündə quraşdırılmış olan"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
@@ -2266,7 +2296,7 @@ msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
#: ../../keyboard.pm:1
#, c-format
msgid "Arabic"
-msgstr "Ərəb"
+msgstr "Ərəb dili"
#: ../../standalone/drakbackup:1
#, c-format
@@ -2275,12 +2305,12 @@ msgid ""
"- Options:\n"
msgstr ""
"\n"
-"- Seçənəklər:\n"
+"- Seçimlər:\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Password required"
-msgstr "Şifrə məcburidir"
+msgstr "Şifrə lazımdır"
#: ../../common.pm:1
#, c-format
@@ -2290,7 +2320,7 @@ msgstr "%d dəqiqə"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
-msgstr "Qrafika (Ekran) kartı: %s"
+msgstr "Qrafika kartı: %s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -2340,11 +2370,33 @@ msgid ""
"buttons and check that the mouse pointer moves on-screen as you move your\n"
"mouse."
msgstr ""
+"Adətən DrakX siçanınızdakı düymə ədədini tapmaqda əziyyət çəkməyəcək. Əgər\n"
+"müvəffəqiyyətsiz olsa, siçanınızı iki düyməli qəbul edəcək və üçüncü düymə \n"
+"emulyasiyasını fəallaşdıracaq. İki düyməli siçanda üçüncü düyməyə "
+"``basmaq''\n"
+"üçün sağ və sol düyməyə bərabər basmalısınız. DrakX, siçanınızın PS/2 ya da "
+"USB bağlantısından hansını işlətdiyini özü tapacaq.\n"
+"\n"
+"Əgər fərqli bir siçan növü seçmək istəsəniz verilən siyahıdan seçməniz\n"
+"kifayətdir.\n"
+"\n"
+"Əgər əsas siçan xaricində başqa bir siçan seçmək istəsəniz bir sınaq ekranı\n"
+"göstəriləcək. Sİçanın qurğularının düz olduğundn əmin olmaq üçün\n"
+"düymələri və çarxı sınayın. Əgər siçan düzgün işləmirsə boşluq ya da\n"
+"[Return] düyməsinə basıb seçim siyahısına geri dönə bilərsiniz.\n"
+"\n"
+"Çərxli siçanlar adətən avtomatik aşkar edilə bilmir, bu səbəblə\n"
+"siçanınızı siyahıdan seçməniz lazım ola bilər. Siçanızın taxılı olduğu "
+"qapını\n"
+"və siçanınızı seçəndən sonra \"%s\" düyməsinə basın, ekranda bir siçan\n"
+"rəsmi göstəriləcək. Çərxin düzgün işlədiyini yoxlamaq üçün onu döndərin.\n"
+"Ekrandakı siçan çərxinin döndüyünü görəndən sonra siçanın düymələrini \n"
+"oxun ekrandakı hərəkətini yoxlayın."
#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w və uyğun Windows çapçılarını dəstəklə."
+msgstr "OKI 4w və uyğun winprinter'ləri dəstəklə."
#: ../../standalone/drakbackup:1
#, c-format
@@ -2352,6 +2404,8 @@ msgid ""
"Files or wildcards listed in a .backupignore file at the top of a directory "
"tree will not be backed up."
msgstr ""
+"Cərgə ağacının ən üstündəki .backupignore faylında yer alan fayllar "
+"wildcard'ların ya da faylların ehtiyat nüsxəsi alınmayacaq."
#: ../../services.pm:1
#, c-format
@@ -2398,12 +2452,12 @@ msgstr ""
#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to write the file"
-msgstr "Fayla yazmaq üçün \"%s\"ı fəallaşdır"
+msgstr "Faylı yazmaq üçün \"%s\"ı fəallaşdır"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Xahiş edirik işlədilən açılış disketini %s sürücüsünə yerləşdirin"
+msgstr "Xahiş edirik, işlədilən açılış disketini %s sürücüsünə yerləşdirin"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -2432,7 +2486,7 @@ msgid "Firewire controllers"
msgstr "Firewire idarəçiləri"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
@@ -2449,14 +2503,22 @@ msgid ""
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
-"LILO (Linuks Yükləyici) və Grub açılış sistem yükləyiciləridir: sistemi "
-"Linuks\n"
-"ya da kompüterinizdə olan başqa bir əməliyyatiyle aça bilərlər.\n"
-"Əsasən bu digər əməliyyat sistemləri doğru bir şəkilde təsbit edilib "
-"açılışa\n"
-"qurula bilərlər. Əgər bir problem olarsa, buradan əllə əlavə edilə "
-"bilərlər.\n"
-"Parametrlər mövzusunda diqqətli olun."
+"Ümumi açılış yükləyicisi parametrlərini quraşdırdıqdan sonra, açılış\n"
+"zamanında mövcud olacaq açılış seçimlərinin siyahısı göstəriləcək.\n"
+"\n"
+"Əgər sisteminizdə qurulu olan başqa əməliyyat sistemləri varsa, onlar\n"
+"avtomatik olaraq açılış menyusuna əlavə ediləcək. Yeni giriş yaratmaq\n"
+"üçün \"%s\" düyməsinə, girişi dəyişdirmək ya da silmək üçün onu seçib \n"
+"\"%s\" ya da \"%s\" düyməsinə basın. \"%s\" düyməsi dəyişikliklərinizi\n"
+"qeyd edəcək.\n"
+"\n"
+"Ola bilər ki, konsola girib sistemi yenidən başladan heç kimin bu digər\n"
+"əməliyyat sistemlərinə yetişməsini istəmirsiniz. Bu zaman açılış "
+"menyusundan\n"
+"uyğun gələn girişləri silərək bunu həyata keçirə bilərsiniz, yalnız sizin "
+"bu\n"
+"əməliyyat sistemlərinə yetişə bilməniz üçün açılış disketinə ehtiyacınız "
+"olacaq!"
#: ../../standalone/drakboot:1
#, c-format
@@ -2478,7 +2540,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Netmask:"
-msgstr "Netmask:"
+msgstr "Şəbəkə Maskası:"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Do it later"
+msgstr "Bunu sonra et"
#: ../../any.pm:1
#, c-format
@@ -2507,26 +2574,17 @@ msgid ""
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
+"Bu seçim fəal olanda CUPS'un hər başlanğıcında bunlar yoxlanır:\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
+"- əgər LPD/LPRng quruludursa, /etc/printcap CUPS tərəfindən üstündən qeyd "
+"edilməyəcək\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+"- əgər /etc/cups/cupsd.conf əksikdirsə, yaradılacaq\n"
"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
-msgstr ""
+"- çapçı mə'lumatı yayımlananda, verici adı olaraq \"localhost\" daxil "
+"etməməsini.\n"
+"\n"
+"Əgər bu ölçülərdən biri sizi problemə soxursa bu seçimi fəallaşdırmayın."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -2560,12 +2618,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid "OK to restore the other files."
-msgstr "Diqər fayllar da qeri qaytarılsın."
+msgstr "Diqər fayllar da qeri qaytarılması üçün Oldu."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your keyboard layout."
-msgstr "Xahiş edirik, klaviatura quruluşunuzu seçin."
+msgstr "Xahiş edirik, klaviatura düzülüşünüzü seçin."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -2585,17 +2643,17 @@ msgstr "Terminal-əsaslı"
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable IP spoofing protection."
-msgstr "IP qizləmə (spoofing) qorumasını Fəallaşdır/Qeyri-fəallaşdır."
+msgstr "IP qizləmə qorumasını Fəallaşdır/Qeyri-fəallaşdır."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr "%s təhlükəsizlik səviyyəsində çap etmə sistemi qur"
+msgstr "%s təhlükəsizlik səviyyəsində çap etmə sistemini qur"
#: ../../any.pm:1
#, c-format
msgid "The user name is too long"
-msgstr "İstifadəçi adı həddindən artıq uzundur"
+msgstr "İstifadəçi adı çox uzundur"
#: ../../any.pm:1
#, c-format
@@ -2605,12 +2663,12 @@ msgstr "Digər ƏS (windows...)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV remote site already in sync!"
-msgstr "Uzaq WebDAV saytı onsuzda sync'dədir!"
+msgstr "Uzaq WebDAV saytı onsuzda sync'dədir!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer database..."
-msgstr "Çapçı databeyzi oxunur..."
+msgstr "Çapçı mə'lumat bazası oxunur..."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -2636,6 +2694,11 @@ msgstr "Somali"
msgid "No open source driver"
msgstr "Açıq mənbəli sürücü yoxdur"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Def."
+msgstr "Tan."
+
#: ../../security/level.pm:1
#, c-format
msgid ""
@@ -2660,6 +2723,11 @@ msgstr "Yeni Kaledoniya"
msgid "European protocol (EDSS1)"
msgstr "Avropa protokolu (EDSS1)"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Delete"
+msgstr "/_Sil"
+
#: ../../any.pm:1
#, c-format
msgid "Video mode"
@@ -2673,7 +2741,7 @@ msgstr "Oman"
#: ../../standalone/logdrake:1
#, c-format
msgid "Please enter your email address below "
-msgstr "Xahiş edirik aşağıya ePoçt ünvanınızı daxil edin"
+msgstr "Xahiş edirik, aşağıya epoçt ünvanınızı daxil edin"
#: ../../standalone/net_monitor:1
#, c-format
@@ -2765,6 +2833,26 @@ msgid ""
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
+"Klasik xəta səs sınaqı aşağıdakı əmrləri icra edir:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" səs kartınızın əsas olaraq hansı\n"
+"sürücünü işlətdiyini bildirir\n"
+"\n"
+"- \"grep sound-slot /etc/modules.conf\" hazırda işlədilən sürücünü\n"
+"bildirir\n"
+"\n"
+"- \"/sbin/lsmod\" modulun (sürücünün) yüklü olub olmadığını yoxlamaq\n"
+"üçün sizə imkan verir\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" və \"/sbin/chkconfig --list alsa\" səs "
+"və\n"
+"alsa xidmətlərinin initsəviyyəsi3'də işə salınıb salınmayacağını bildirir\n"
+"\n"
+"- \"aumix -q\" səs həcminin bağlı (mute) olub olmadığını bildirir\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" hansı proqramın səs kartını işlətdiyini "
+"bildirir.\n"
#: ../../standalone/harddrake2:1
#, c-format
@@ -2809,7 +2897,7 @@ msgstr "Namibiya"
#: ../../services.pm:1
#, c-format
msgid "Database Server"
-msgstr "Databeyz Vericisi"
+msgstr "Mə'lumat Bazası Vericisi"
#: ../../standalone/harddrake2:1
#, c-format
@@ -2837,7 +2925,7 @@ msgstr ""
#: ../../standalone/draksec:1
#, c-format
msgid "Please wait, setting security options..."
-msgstr "Xahiş edirik gözləyin, təhlükəsizlik seçənəkləri tə'yin edilir..."
+msgstr "Xahiş edirik, gözləyin təhlükəsizlik seçənəkləri tə'yin edilir..."
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -2881,6 +2969,10 @@ msgid ""
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
+"!!! Sistemdəki mə'lumat bazasındakı şifrənin Terminal Verici\n"
+" mə'lumat bazasındakından fərqli olduğunu göstərir.\n"
+"Girişi fəallaşdırmaq üçün istifadəçini Terminal Vericiyə\n"
+"Silin/Yenidən əlavə edin."
#: ../../keyboard.pm:1
#, c-format
@@ -2923,6 +3015,25 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
+"\n"
+"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
+"\n"
+"Bu sehirbaz kompüterinizə, birbaşa şəbəkəyə ya da uzaq Windows sistemə\n"
+"bağlı olan çapçı ya da çapçıları quraşdırmaqda sizə yardım edəcək.\n"
+"\n"
+"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
+"aşkar edilə bilsinlər. Eyni zamanda şəbəkə kompüterləriniz və Windows\n"
+"sistemləri də açıq olmalıdır.\n"
+"\n"
+"Qeyd edin ki, şəbəkə və Windows sistemləri üstündəki çapçıların avtomatik\n"
+"aşkar edilməsi sisteminizə bağlı olan çapçıların açkar edilməsindən daha "
+"uzun\n"
+"müddət alır, ona görə də əgər onlara ehtiyacınız yoxdursa bunların "
+"avtomatik\n"
+"aşkar edilməsini bağlayın.\n"
+"\n"
+" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
+"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
#: ../../network/netconnect.pm:1
#, c-format
@@ -2940,9 +3051,9 @@ msgid "CUPS"
msgstr "CUPS"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Erase tape before backup"
-msgstr "Xətalı yedəkləmə faylı"
+msgstr "Ehtiyat nüsxəsini almadan əvvəl kasedi sil"
#: ../../standalone/harddrake2:1
#, c-format
@@ -2957,7 +3068,7 @@ msgstr "Açılış yükləyicisi qurulumu"
#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
-msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
+msgstr "Kök bölməsi böyüklüyü (Mb): "
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -2983,6 +3094,11 @@ msgstr ""
msgid "Saint Lucia"
msgstr "Saint Lucia"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "November"
+msgstr "Noyabr"
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Disconnect..."
@@ -3015,7 +3131,7 @@ msgstr ""
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
-msgstr "Paket Qrupları Seçkisi"
+msgstr "Paket Qruplarının Seçimi"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -3071,12 +3187,12 @@ msgstr "Avtomatik qurulum disketi yaradılır"
#: ../../steps.pm:1
#, c-format
msgid "Install updates"
-msgstr "Yeniləmələri qur"
+msgstr "Yeniləmələrin qurulması"
#: ../../standalone/draksplash:1
#, c-format
msgid "text box height"
-msgstr "Mətn qutusunun hündürlüyü"
+msgstr "mətn qutusunun hündürlüyü"
#: ../../standalone/drakconnect:1
#, c-format
@@ -3097,12 +3213,15 @@ msgstr "Birdən artıq profilə icazə ver"
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
+"Fayl sistemi üstündə hərfləri çevirmə və xüsusi avadanlıqları bloklama."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
+"Bu seçim, /etc cərgənizdəki bütün faylların ehtiyat nüsxəsini alıb, geri "
+"yükləyə bilər.\n"
#: ../../printer/main.pm:1
#, c-format
@@ -3139,6 +3258,15 @@ msgid ""
"for you.\n"
"\n"
msgstr ""
+"Hazırkı qurğularınızı saxlayıb DHCP vericisini qurduğunuzu qəbul edə "
+"bilərəm; bu halda yerli şəbəkəniz üçün işlətdiyiniz Şəbəkəni düz oxumağıma "
+"yardım edin; Onu yenidən quraşdırmayacam və DHCP vericinizə əl dəyməyəcəm.\n"
+"\n"
+"Əsas DNS girişi atəş divarı üstündə quraşdırılmış Ön Yaddaşlayıcı Ad "
+"Vericisidir. Onu, misal üçün ISP DNS IP'nizlə əvəz edə bilərsiniz.\n"
+"\t\t \n"
+"Əks halda, ara üzünüzü və DHCP vericinizi sizin üçün (yenidən) quraşdıra "
+"bilərəm. \n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -3148,12 +3276,21 @@ msgid ""
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
+"Heç bir yerli çapçı tapılmadı! Çapçını əllə qurmaq üçün giriş sahəsinə "
+"avadanlıq/fayl adını daxil edin (Paralel Qapılar: /dev/lp0, /dev/lp1, ..., "
+"bunlara bərabərdir: LPT1:, LPT2:, ..., 1ci USB çapçı: /dev/usb/lp0, 2ci USB "
+"çapçı: /dev/usb/lp1, ...vs)."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "LPD server \"%s\", printer \"%s\""
+msgstr " \"%s\" LPD vericisi, \"%s\" çapçısı"
+
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
@@ -3210,13 +3347,13 @@ msgstr "Qovşaq %s"
#: ../../lang.pm:1
#, c-format
-msgid "Armenia"
-msgstr "Ermənistan"
+msgid "Fiji"
+msgstr "Fici"
#: ../../lang.pm:1
#, c-format
-msgid "Fiji"
-msgstr "Fici"
+msgid "Armenia"
+msgstr "Ermənistan"
#: ../../any.pm:1
#, c-format
@@ -3228,6 +3365,11 @@ msgstr "İkinci disket sürücü"
msgid "About Harddrake"
msgstr "Harddrake Haqqında"
+#: ../../security/l10n.pm:1
+#, c-format
+msgid "Authorize TCP connections to X Window"
+msgstr "TCP bağlantılarını X Window'a səlahiyyətləndir"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
@@ -3271,7 +3413,7 @@ msgstr "əgər bəli seçilidirsə, yoxlama nəticələrini syslog'a raport et."
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
-msgstr "Şifrəsiz"
+msgstr "Şifrə olmasın"
#: ../../lang.pm:1
#, c-format
@@ -3286,7 +3428,7 @@ msgstr "%s: %s'ın qovşaq adına ehtiyacı var...\n"
#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
-msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
+msgstr "İstifadə ediləcək mövcud bölmə yoxdur"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -3301,16 +3443,23 @@ msgstr ""
"%s\n"
"mövcuddur.\n"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Multi-function device on parallel port #%s"
+msgstr "%s nömrəli paralel qapıdakı çox funksiyalı avadanlıq"
+
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
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 ""
-"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."
+"TCP ya da soket çapçısına çap etmək üçün, çapçının IP ünvanı ya da qovşaq "
+"adınıvə istəyə bağlı olaraq qapı nömrəsini bildirməlisiniz (əsası 9100). HP "
+"JetDirect vericiləri üstündə qapı nömrəsi adətən 9100'dür, başqa vericilərdə "
+"bu fərqli ola bilər. Avadanlığınızın kitabına baxın."
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -3352,6 +3501,17 @@ msgid ""
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV qurulu deyil!\n"
+"\n"
+"\n"
+"Əgər Televiziya kartınız varsa yalnız DrakX onu aşkar edə bilməyibsə\n"
+"və xawtv proqramını da qurmayıbsa, xahiş edirik, \"lspcidrake -v -f\"\n"
+"əmrinin nəticəsini \"install\\@mandrakesoft.com\" ünvanına, başlığa\n"
+"\"undetected TV card\" yazaraq yollayın.\n"
+"\n"
+"\n"
+"Proqramı konsolda ali istifadəçi olaraq \"urpmi xawtv\" əmrini verərək qura "
+"bilərsiniz."
#: ../../any.pm:1
#, c-format
@@ -3371,6 +3531,10 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Windows vericinizi çapçını IPP protokolu altında mövcud qılması üçün "
+"quraşdırın və bu sistemdən Printerdrake vasitəsi ilə \"%s\" bağlantınövlü "
+"çap sistemini quraşdırın.\n"
+"\n"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3383,6 +3547,9 @@ msgid ""
"Transform your computer into a powerful Linux server: Web server, mail, "
"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
+"Kompüterinizi güclü bir Linux vericisinə dönüşdürün: Veb vericisi, poçt, "
+"atəş divarı, ötürücü, fayl və çap vericisi (v.s.) yalnız bir neçı tıqlama "
+"uzaqlığındadır!"
#: ../../security/level.pm:1
#, c-format
@@ -3398,6 +3565,11 @@ msgid ""
"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
"program. Just type \"sndconfig\" in a console."
msgstr ""
+"\n"
+"\n"
+"\n"
+"Qeyd: əgər ISA PnP səs kartınız varsa, sndconfig proqramınıişlətməlisiniz. "
+"Sadəcə olaraq konsolda \"sndconfig\" əmrini icra edin."
#: ../../lang.pm:1
#, c-format
@@ -3409,16 +3581,16 @@ msgstr "Ruminıya"
msgid "Group"
msgstr "Qrup"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "avadanlığı seçin"
-
#: ../../lang.pm:1
#, c-format
msgid "Canada"
msgstr "Kanada"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "choose device"
+msgstr "avadanlığı seçin"
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
@@ -3435,7 +3607,7 @@ msgid "German"
msgstr "Almanca"
#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Next ->"
@@ -3452,6 +3624,12 @@ msgid ""
"print japanese text on a printer set up on a remote machine, you have to "
"activate this function on that remote machine."
msgstr ""
+"Bunu fəallaşdırma yapon dilindəki xam mətnlərin çap edilə bilməsinə imkan "
+"verəcək. Bunu yalnız yapon dilində mətn çap etmək istəyirsinizsə seçin, ona "
+"görə ki bu seçili ikən bə'zi latın hərfləri, səhifə kənarları və hərf "
+"böyüklükləri düzgün çap ediləyəcək. Bu qurğu yalnız bu sistem üstündəki "
+"çapçılar tə'sir edir. Əgər uzaq bir kompüterdə yaponca mətn çap etmək "
+"arzunuz varsa bu qurğunu o uzaq kompüterdə fəal etməlisiniz."
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -3475,10 +3653,10 @@ msgstr "Qvineya Bissau"
msgid "Horizontal refresh rate"
msgstr "Üfüqi yeniləmə sür'əti"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
+#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#, c-format
msgid "Edit"
-msgstr "Çıxış"
+msgstr "Düzəlt"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -3486,9 +3664,9 @@ msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-"Bu disk bölməsi loopback üçün istifadə edildiyindən ötrü bağlanma "
-"nöqtəsindən ayrıla bilinmir.\n"
-"Əvvəlcə loopback-ı ləğv edin."
+"Bu disk bölməsi loopback üçün istifadə edildiyinə görə bağlanma nöqtəsindən "
+"ayrıla bilinmir.\n"
+"Əvvəlcə loopback'i silin."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -3500,6 +3678,11 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"Qurulum sırasında edilən şəbəkə quraşdırılması indi başladıla bilməz. Xahiş "
+"dirik, sistem açılandan sonra şəbəkənin işlədiyini yoxlayın və Mandrake "
+"İdarə Mərkəzindəki Şəbəkə və İnternet bölməsindən qurğuları düzəldin, və "
+"ondan sonra yenə də Mandrake İdarə Mərkəzindəki \"Avadanlıq\"/\"Çapçı\" "
+"bölməsindən çapçınızı qurun."
#: ../../harddrake/data.pm:1
#, c-format
@@ -3594,6 +3777,11 @@ msgstr ""
msgid "Re-generating list of configured scanners ..."
msgstr "Quraşdırılmış darayıcıların siyahısı yenidən yaradılır ..."
+#: ../../modules/interactive.pm:1
+#, fuzzy, c-format
+msgid "Module configuration"
+msgstr "Əllə quraşdırma"
+
#: ../../harddrake/data.pm:1
#, c-format
msgid "Scanner"
@@ -3605,11 +3793,6 @@ msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"Diqqət: Bu qrafika kartı ilə ediləcək sınaq kompüterinizi dondura bilər"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Bad Ip"
-msgstr "Hökmsüz Ip"
-
#: ../../any.pm:1
#, c-format
msgid ""
@@ -3653,16 +3836,16 @@ msgstr "Dayandır"
msgid "No password prompt on %s at port %s"
msgstr "%s üstündəki %s qapısında şifrə soruşulmasın"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Kensington Thinking Mouse with Wheel emulation"
+msgstr "Çərx emulyasiyalı Kensington Thinking siçanı"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Usage of remote scanners"
msgstr "Uzaq darayıcıların istifadəsi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
#: ../../install_interactive.pm:1
#, c-format
msgid ""
@@ -3670,8 +3853,9 @@ msgid ""
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
-"(defraq)"
+"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə kompüterinizi "
+"Windows ilə açın, ''defrag'' vasitəsini işlədin, sonra Mandrake Linuks "
+"qurulumunu yenidən başladın."
#: ../../keyboard.pm:1
#, c-format
@@ -3683,7 +3867,7 @@ msgstr "Dvorak (Norveçcə)"
msgid "Hard Disk Backup Progress..."
msgstr "Sabit Disk Ehtiyat Nüsxəsi Çıxartma Gedişatı Fəaliyyətdədir..."
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilə bilmir: %s"
@@ -3740,7 +3924,7 @@ msgid "Add to RAID"
msgstr "RAIDə əlavə et"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
@@ -3788,70 +3972,52 @@ msgid ""
"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
-"Burada yaboot üçün həm başqa əməliyyat sistemləri, həm alternativ "
-"kernellər,\n"
-" ya da təcili yardım açılış əksləri əlavə edə bilərsiniz.\n"
-"\n"
-"\n"
-"Başqa OSlər üçün girişin mənası ad və kök çığırından ibarətdir.\n"
-"\n"
-"\n"
-"Linuks üçün mühtəməl girişlər bunlar ola bilər: \n"
+"Burada yaboot üçün başqa əməliyyat sistemləri, alternativ çəyirdəklər, ya da "
+"tə'cili açılış əksləri əlavə edə bilərsiniz.\n"
"\n"
"\n"
-" - Ad: Bu sadəcə olaraq yaboot üçün açılacaq sistemi timsal edən bir "
-"addır.\n"
+"Başqa OS'lər üçün giriş yalnız ad və \"kök\" çığırından ibarətdir.\n"
"\n"
"\n"
-" - Əks: Bu isə açılacaq çəkirdəyin, yə'ni kernelin adıdır. Çox vaxt bu "
-"vmlinux və ya\n"
-"bunun variasiyalarıdır.\n"
+"Linuks üçün mümkün girişlər bunlar ola bilər:\n"
"\n"
+" * Ad: Bu sadəcə olaraq yaboot üçün açılacaq sistemi timsal edən bir addır.\n"
"\n"
-" - Kök: Linuks qurulumunun kök avadanlığı və ya '/'.\n"
+" * Əks: Bu isə açılacaq çəyirdəyin, yə'ni kernelin adıdır. Çox vaxt bu "
+"vmlinux və ya bunun uzantılı variasiyalarıdır.\n"
"\n"
+" * Kök: Linuks qurulumunuzun \"kök\" avadanlığı və ya '/'.\n"
"\n"
-" \n"
-" - Əlavə: Apple avadanlıqlarında kernel əlavə seçənəkləri ilə sıxlıqla "
-"başlanğıc\n"
-"video avadanlığı və ya sıx sıx xəta verən 2ci və 3cü siçan düymələri üçün "
-"emulyasiya\n"
-"imkanları tanına bilir. Məsələn bunlar \n"
-"bir neçə nümunədir:\n"
+" * Əlavə: Apple avadanlıqlarında əlavə çəyirdək seçimləri ilə sıxlıqla \n"
+"başlanğıc video avadanlığı və ya tez tez xəta verən 2ci və 3cü siçan ən "
+"düymələri üçün emulyasiya imkanları tanına bilir.\n"
+"Məsələn bunlar bir neçə nümunədir:\n"
"\n"
-"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
-"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" \n"
-" - Initrd: Açılış avadanlığından əvvəl bə'zi açılış modullarını seçmək\n"
-"üçün işlədilir, ya da təcili yardım açılışlarında ramdisk əksini yükləmək "
+" * Initrd: Açılış avadanlığından əvvəl bə'zi açılış modullarını seçmək\n"
+"üçün işlədilir, ya da tə'cili yardım açılışlarında ramdisk əksini yükləmə\n"
"imkanı verir.\n"
"\n"
+" * Initrd-size: Ana ramdisk böyüklüyü ümumiyyətlə 4096 Kbaytdır. Əgər daha\n"
+"geniş ramdisk bildirmək istəyirsiniz isə bu seçimi işlədin.\n"
"\n"
-" - Initrd-size: Ana ramdisk böyüklüyü ümumiyyətlə 4096 baytdır. Əgər daha "
-"geniş ramdisk bildirə\n"
-"bilərsiniz isə bu seçənəyi işlədin.\n"
-"\n"
+" * Oxuma-yazma: Normalda sistemin 'dirilməsindən' əvvəl bə'zi sınaqların \n"
+"aparıla bilməsi üçün \"root\" fayl sistemi bu moda soxulur. Bunu \n"
+"bu seçimlə dəyişdirə bilərsiniz.\n"
"\n"
-" - Oxuma-yazma: Normalda sistemin 'dirilməsindən' əvvəl bə'zi sınaqların "
-"aparıla bilməsi üçün\n"
-"'root' fayl sistemi bu moda soxulur. Bu seçənəyi nəzərə almayabilərsiniz.\n"
"\n"
-"\n"
-" - NoVideo: Bəlkə Apple video avadanlığı problem çıxarda bilər.Onda bu "
-"seçənəklə\n"
-"sistemi 'novideo' modda təbii framebuffer dəstəyi ilə aça bilərsiniz.\n"
-"\n"
-"\n"
-" - Əsas: Bu seçənəklə Linuks sistemi əsas əməliyyat sistemi halına gətirə "
+" * NoVideo: Apple video avadanlığı problem çıxarda bilər. Onda bu \n"
+"seçimlə sistemi ``novideo'' modda əsas framebuffer dəstəyi ilə aça "
"bilərsiniz.\n"
-"Onda ENTER düyməsinə basmaqla Linuks sistemi açılacaqdır. Bu giriş ayrıca "
-"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
-"'*' işarətilə işıqlandırılacaqdır."
+"\n"
+" * Əsas: Bu seçənəklə Linuks sistemi əsas əməliyyat sistemi halına gətirə \n"
+"bilərsiniz. Yaboot sorğu ekranında ENTER düyməsinə basmaqla Linuks sistemi\n"
+"açılacaqdır. Bu giriş ayrıca TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
+"``*'' işarəti ilə işıqlandırılacaqdır."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -3872,6 +4038,9 @@ msgid ""
"list shown below or click on the \"Print option list\" button.%s%s%s\n"
"\n"
msgstr ""
+"Hazırkı çapçı üçün mövcud olan seçimlər siyahısını almaq üçün \"Seçimlər "
+"siyahısını göstər\" düyməsinə basın ya da aşağıdakı siyahını oxuyun.%s%s%s\n"
+"\n"
#: ../../lang.pm:1
#, c-format
@@ -3889,6 +4058,8 @@ msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
+"Əgər çapçınız siyahıda yer almırsa, uyğun olanı (baxın çapçı istifadə "
+"kitabı) seçin."
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
@@ -3932,6 +4103,11 @@ msgstr "Kasetdən Geri Yüklə"
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
+#: ../../security/l10n.pm:1
+#, c-format
+msgid "Password minimum length and number of digits and upcase letters"
+msgstr "Şifrənin minimal uzunluğu, rəqəm və böyük hərf miqdarı"
+
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
@@ -3965,10 +4141,15 @@ msgstr "Çap etmə sistemi yenidən başladılır..."
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Day"
+msgstr "Gün"
+
#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
-msgstr "Açılış qisminin ilk sektoru"
+msgstr "Açılış bölməsinin ilk sektoru"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -3997,21 +4178,38 @@ msgid ""
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
+"[SEÇİMLƏR]...\n"
+"Mandrake Terminal Vericisi Quraşdırıcısı\n"
+"--enable : MTS'ni fəallaşdır\n"
+"--disable : MTS'ni qeyri-fəallaşdır\n"
+"--start : MTS'ni başlat\n"
+"--stop : MTS'ni dayandır\n"
+"--adduser : MTS'yə mövcud olan istifadəçi əlavə et (istifadəçi adı "
+"istənəcək)\n"
+"--deluser : MTS'dən mövcud olan istifadəçini sil (istifadəçi adı "
+"istənəcək)\n"
+"--addclient : MTS'yə alıcı sistem əlavə et (MAC ünvanı, IP, nbi əks adı "
+"istənəcək)\n"
+"--delclient : MTS'dən alıcı sistemi sil (MAC ünvanı, IP, nbi əks adı "
+"istənəcək)"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet Mask:"
msgstr "Subnet Maskası:"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successfull"
-msgstr "LiLo və Bootsplash örtük qurulumu müvəffəqiyyətlə başa çatdı"
-
#: ../../security/l10n.pm:1
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""
+"Şifrə vaxtının keçişini və hesab qeyri-fəallaşdırma gecikmələrini müəyyən et"
+
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"_: load here is a noun, the load of the system\n"
+"Load"
+msgstr "Yüklə"
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -4045,12 +4243,21 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"\"%s\" və \"%s\" əmrləri eyni zamanda səciyyəvi çap vəzifəsinin seçim "
+"qurğularını dəyişdirməyə icazə verir. Sadəcə olaraq uyğun gələn qatarı əmr "
+"sətirinə əlavə edin, mis. \"%s <fayl>\".\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Need hostname, username and password!"
msgstr "Qovşaq adı, istifadəçi adı və şifrəyə ehtiyac var!"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Insert floppy"
+msgstr "Disket daxil edin"
+
#: ../../diskdrake/dav.pm:1
#, c-format
msgid ""
@@ -4098,13 +4305,13 @@ msgstr "Seçili vericini düzəlt"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose where you want to backup"
-msgstr "Xahiş edirik ehtiyatları saxlamaq istədiyiniz yeri seçin"
+msgstr "Xahiş edirik, ehtiyatları saxlamaq istədiyiniz yeri seçin"
#: ../../install_steps_interactive.pm:1
#, c-format
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 "
+"Bölmə cəvəlindəki dəyişikliklərin tətbiq edilməsi üçün kompüterinizi yenidən "
"başlatmalısınız."
#: ../../standalone/drakbackup:1
@@ -4112,6 +4319,15 @@ msgstr ""
msgid "Do not include the browser cache"
msgstr "Səyyahın ara yaddaşını daxil etmə"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"%s fayl sisteminin yoxlanması bacarılmadı. Xətaları düzəltmək istəyirsiniz? "
+"(diqqətli olun, mə'lumatları itirə bilərsiniz)"
+
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
@@ -4125,7 +4341,7 @@ msgstr "Standart"
#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
-msgstr "Xahiş edirik siçanınızın növünü seçin."
+msgstr "Xahiş edirik, siçanınızın növünü seçin."
#: ../../standalone/drakconnect:1
#, c-format
@@ -4167,6 +4383,11 @@ msgstr "GlidePoint"
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "No Mask"
+msgstr "Maskasız"
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface already configured"
@@ -4190,7 +4411,12 @@ msgstr "Poçt Vericisi"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+msgstr "Xahiş edirik, bir bölmə üstünə tıqlayın"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Multi-function device on HP JetDirect"
+msgstr "HP JetDirect üstündə çox funksiyalı avadanlıq"
#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
@@ -4202,11 +4428,6 @@ msgstr "Linuks"
msgid "Have a nice day!"
msgstr "Sağolun, sağlıqla qalın!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "across Network"
-msgstr "Şəbəkə üstündə"
-
#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
@@ -4234,7 +4455,7 @@ msgid ""
" Please correct your FTP configuration."
msgstr ""
"Fayl FTP ilə göndərilərkən xəta yarandı.\n"
-" Xahiş edirik FTP qurğularınızı düzəldin."
+" Xahiş edirik, FTP qurğularınızı düzəldin."
#: ../../standalone/drakTermServ:1
#, c-format
@@ -4292,9 +4513,9 @@ msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Choose your CD/DVD device"
-msgstr "Klaviatura quruluşunu seçiniz."
+msgstr "CD/DVD avadanlığınızı seçin"
#: ../../standalone/logdrake:1
#, c-format
@@ -4324,7 +4545,7 @@ msgstr "=> Arasından seçiləcək həddindən artıq çox şey var (%s).\n"
#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
-msgstr "Sabit disk seçkisi"
+msgstr "Sabit disklərin aşkar edilməsi"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4333,12 +4554,23 @@ msgid ""
"Please choose the minimal installation you want:"
msgstr ""
"Heç bir paket qrupunu seçmədiniz.\n"
-"Xahiş edirik istədiyiniz ən kiçik qurulumu seçin:"
+"Xahiş edirik, istədiyiniz ən kiçik qurulumu seçin:"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"You need the Alcatel microcode.\n"
+"You can provide it now via a floppy or your windows partition,\n"
+"or skip and do it later."
+msgstr ""
+"Alcatel mikrokoduna ehtiyacınız var.\n"
+"Onu indi bir disket ya da windows bölməsi vasitəsiylə verə\n"
+"bilərsiniz, ya da keçib daha sonra edə bilərsiniz."
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
-msgstr "Xahiş edirik WebDAV vericisi URL'ini daxil edin"
+msgstr "Xahiş edirik, WebDAV vericisi URL'ini daxil edin"
#: ../../lang.pm:1
#, c-format
@@ -4352,6 +4584,7 @@ msgid "Accept"
msgstr "Qəbul Et"
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "Description"
msgstr "İzahat"
@@ -4376,11 +4609,6 @@ msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Bad Mask"
-msgstr "Xətalı Mask"
-
#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
@@ -4409,7 +4637,7 @@ msgstr "Uzaq Çapçı"
#: ../../any.pm:1
#, c-format
msgid "Please choose a language to use."
-msgstr "Xahiş edirik istifadə ediləcək dili seçin."
+msgstr "Xahiş edirik, istifadə ediləcək dili seçin."
#: ../../network/network.pm:1
#, c-format
@@ -4428,8 +4656,7 @@ msgstr ""
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-"Kompüterinizi avtomatik olaraq bir istifadəçinin giriş etməsi üçün qurğulaya "
-"bilərəm."
+"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
#: ../../standalone/harddrake2:1
#, c-format
@@ -4447,6 +4674,8 @@ msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""
+"Çap vəzifələrinin hansı çapçıya gedəcəyini seçin ya da giriş sətirində "
+"avadanlıq/fayl adı daxil edin"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -4487,6 +4716,11 @@ msgstr "Keyp Verde"
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr "bu cpu'da Cyrix 6x86 Coma xətasının olması"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Loading printer configuration... Please wait"
+msgstr "Çapçı qurğuları yüklənir... Xahiş edirik, gözləyin"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
@@ -4503,6 +4737,8 @@ msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
+"Çapçınızın bağlı olduğu qapını seçin ya da giriş sətirində avadanlıq/fayl "
+"adı daxil edin"
#: ../../standalone/logdrake:1
#, c-format
@@ -4541,11 +4777,6 @@ msgstr "Userdrake"
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system"
-msgstr "Sistemin ehtiyat nüsxəsini çıxart"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
@@ -4641,6 +4872,8 @@ msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
+"Əlavə olaraq, bur proqram ya da \"foomatic-configure\" vasitəsilə "
+"yaradılmayan növbələr transfer edilə bilməz."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4665,7 +4898,7 @@ msgstr "İstifadəçi umask'ı"
#: ../../any.pm:1
#, c-format
msgid "Default OS?"
-msgstr "Əsas OS"
+msgstr "Əsas ƏS?"
#: ../../keyboard.pm:1
#, c-format
@@ -4685,6 +4918,10 @@ msgid ""
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""
+"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin. Çapçının quraşdırılması "
+"tamamilə avtomatik olacaq. Əgər çapçınız düzgün açkar edilməyibsə ya "
+"daxüsusiləşdirilmiş çap quraşdırması istəyirsinizsə, \"Əllə quraşdırma\"nı "
+"seçin."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4709,7 +4946,7 @@ msgstr "Bu örtük hələlik %s içində sıçrayan ekrana malik deyil !"
#: ../../pkgs.pm:1
#, c-format
msgid "nice"
-msgstr "gözəl"
+msgstr "ə'la"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -4762,7 +4999,7 @@ msgid "Coma bug"
msgstr "Coma xətası"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
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"
@@ -4835,74 +5072,85 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Bu nöqtədə siz Linuks Mandrake yükləmək üçün bölmələri seçməlisiniz. Əgər "
-"əvvəldən bölmələr var isə (sistemdə əvvəllər qurulu olan GNU/Linuks "
-"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız bölmələr), "
-"onları seçin və istifadə edin.\n"
-"Yoxsa onları bildirməlisiniz.\n"
-"\n"
-"\n"
-"Bölmələri yaratmaq üçün əvvəlci diski seçməlisiniz.\n"
-"Diski seçmək üçün birinci IDE sürücüsü üçün \"hda\" nı, ikinciyi seçmək üçün "
-"\"hdb\"ni, birinci SCSİ sürücüsü üçün ise \"sda\" vs tıqlamalısınız.\n"
-"\n"
-"\n"
-"Seçdiyiniz sürücüyə aşağıdakıları etməyə qadirsiniz:\n"
-"\n"
-" *Hamısını təmizlə: seçili sürücüdə bütün bölmələri silər.\n"
-"\n"
+"Bu nöqtədə siz Linuks Mandrake yüklənəcək bölmə(lər)i seçməlisiniz. Əgər\n"
+"bölmələr əvvəldən mövcuddursa (sistemdə əvvəllər qurulu olan GNU/Linuks \n"
+"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız "
+"bölmələr),\n"
+"onları istifadə edə bilərsiniz, əks halda onları müəyyən etməlisiniz.\n"
"\n"
-" *Avtomatik: Sürücünüzdəki boş sahədə Ext2 və Swapbölmələrini avtomatik\n"
-"yaradar.\n"
+"Bölmələri yaratmaq üçün əvvəlcə diski seçməlisiniz. Diski seçmək üçün \n"
+"birinci IDE sürücüsü üçün ``hda''nı, ikincisi üçün ``hdb''ni, birinci SCSI \n"
+"sürücüsü üçün isə ``sda'' v.s. üstünə tıqlamalısınız.\n"
"\n"
+"Seçdiyiniz sürücünü bölmələndirmək üçün aşağıdakı seçimləri etməyə "
+"qadirsiniz:\n"
"\n"
-" *Bölmə cədvəlini qurtar: Zədələnmiş bölmə cədvəlinibərpa edər. Xahiş "
-"edirik\n"
-" diqqətli olun, çünkü bu da iflas edə bilər.\n"
+" * \"%s\": Bu seçim seçili sabit disk üstündəki bütün bölmələri silər\n"
"\n"
+" * \"%s\": Bu seçim sizə avtomatik olaraq sabit diskinizin boş sahəsində\n"
+"ext3 və dəyiş-toqquş sahəsi yaratma imkanı verəcək\n"
"\n"
-" *Gəri dön: İstəmədiyiniz seçkilərinizdən geri döndərər.\n"
+"\"%s\": Əlavə xüsusiyyətlərə yetişmə imkanı verir\n"
"\n"
+" * \"%s\": Bölmə cədvəlini disketə qeyd edər. Bu disket daha sonra əmələ "
+"gələ\n"
+"biləcək disk bölmə cədvəli xətalarını bərpa etmək üçün işlədilir. Bu addımı "
+"həyata keçirməyi\n"
+"sizə şiddətlə məsləhət edirik.\n"
"\n"
-" *Yenidən yüklə: Bütün dəyişikliklərinizdən geri dönərbaşdakı bölmə "
-"cədvəlinə gələr.\n"
+" * \"%s\": Daha əvvəl disketə qeyd edilən bölmə cədvəlini bərpa etmək "
+"(yenidən\n"
+"yükləmək) üçün bu seçimi işlədin.\n"
"\n"
+" * \"%s\": Əgər bölmə cədvəliniz pozulubsa, onu bu seçimlə düzəldə\n"
+"bilərsiniz. Diqqətli olun və unutmayın ki bu həmişə işləməyə bilər.\n"
"\n"
-" *Sehirbaz: Bölmələndirməyi bir sehirbaz edər. Təcrübəsizisəniz bunu "
-"seçin.\n"
+" * \"%s\": Bütün dəyişiklikləri silərək sabit diskin əvvəlki bölmə "
+"cədvəlini\n"
+"geri yükləyəcək.\n"
"\n"
+" * \"%s\": Bu seçimin işarəsini silərsəniz, istifadəçilər CD-ROM'lar və "
+"disketlər\n"
+"kimi çıxardıla bilən mediyaları əl ilə bağlamaq (mount) məcburiyyətində "
+"qalacaq.\n"
"\n"
-" *Floppy-dən bərpa et: Bölmə cədvəlini əvvəllər flopy-yə qeydetdiniz isə, "
-"bölmə cədvəlini bərpa edin.\n"
+" * \"%s\": Əgər diskinizi bölmələmək üçün bir sehirbaza ehtiyac hiss "
+"edirsinizsə,\n"
+"bu seçimi seçin. Bu yol, bölmələmədən yaxşı başı çıxmayanlar üçündür.\n"
"\n"
+" * \"%s\": Dəyişikliklərinizi rədd etmək üçün bu seçimi işlədin.\n"
"\n"
-" *Floppy-yə qeyd et: Daha sonradan bərpa etmek üçünbilgiləri floppy-yə qeyd "
-"edin.\n"
-" Bu seçki şiddətlə tövsiyə edilir.\n"
-"\n"
-"\n"
-" *Oldu: Bölmələndirmə bitdiyində, bunu seçərəkdəyişikliklərinizi qeyd "
-"edin.\n"
-"\n"
+" * \"%s\": Sabit disk haqqında ətraflı mə'lumat verir və onun üstündə əlavə\n"
+"əməliyyatlar (növ, seçimlər, şəkilləndirmə) icra etmə icazəsi verir.\n"
"\n"
-"Xəbəriniz olsun, istənilən seçkiyə Tab ve Aşağı/Yuxarı oxlarını da işlədərək "
-"klaviaturadan idarə edə bilərsiniz.\n"
+" * \"%s\": Sabit diskinizi bölmələyib bitirdiyiniz vaxt bu seçim "
+"dəyişiklikləri\n"
+"sabit diskinizə qeyd edəcək.\n"
"\n"
+"Bölmənin böyüklüyünü müəyyən edərkən klaviaturadakı istiqamət düymələri\n"
+"ilə seçiminizi sazlaya bilərsiniz.\n"
"\n"
-"Bölmə seçildiyi zaman bunları işlədə bilərsiniz:\n"
+"Qeyd: bütün seçimlərə klaviatura ilə yetişə bilərsiniz. Bölmələr arasında "
+"[Tab]\n"
+"və [Yuxarı/Aşağı] düymələri ilə hərəkət edə bilərsiniz.\n"
"\n"
-" *Ctrl-c yeni bölmə yaratmaq üçün (boş bölmə seçili olduğu zaman)\n"
+"Bir bölmə seçili ikən bu qısa yolları istifadə edə bilərsiniz:\n"
"\n"
-" *Ctrl-d bölməni ləğv etmək üçün\n"
+" * Ctrl-c -> yeni bölmə yaratmaq üçün (əgər boş bölmə seçilidirsə)\n"
"\n"
-" *Ctrl-m bağlama nöqtəsini göstərmək üçün\n"
+" * Ctrl-d -> bölməni silmək üçün\n"
"\n"
+" * Ctrl-m -> bağlama nöqtəsi seçmək üçün\n"
"\n"
+"Fərqli fayl sistem növləri haqqında daha ətraflı mə'lumat üçün, xahiş "
+"edirik,\n"
+"``Reference Manual'' kitabının ext2FS bölümünü oxuyun.\n"
"\n"
-"Əgər PPC kompüterdə qurulum aparırsınızsa, ən az 1 MBlıq balaca bir HFC "
-"'bootstrap' bölməsini yaboot açılış yükləyicisi üçün seçmək istəyəcəksiniz.\n"
-"Ə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."
+"Əgər PPC kompüterdə qurulum aparırsınızsa, ən az 1 MBlıq balaca bir HFS \n"
+"``bootstrap'' bölməsini yaboot açılış yükləyicisi üçün seçmək "
+"istəyəcəksiniz.\n"
+"Əgər daha çox yeriniz varsa, məsələn 50 MB, onda bütün kernel və ramdisk \n"
+"açılış əkslərinizi təcili hallar üçün burada saxlaya bilərsiniz."
#: ../../help.pm:1
#, c-format
@@ -4917,6 +5165,16 @@ msgid ""
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs."
msgstr ""
+"Səs Kartı\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan səs kartını əsasən avtomatik "
+"olaraq\n"
+"aşkar edəcəkvə quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
+"olan\n"
+"səs kartını siyahıdan seçə bilərsiniz. \n"
+" Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər "
+"mövcudsa,\n"
+"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
@@ -4941,7 +5199,7 @@ msgstr "Bölmə cədvəlini qeyd et"
#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
-msgstr "Fincə"
+msgstr "Fin dili"
#: ../../lang.pm:1
#, c-format
@@ -4978,6 +5236,17 @@ msgid ""
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
+"Səlahiyyətləndirmə:\n"
+"\n"
+"- əgər \"ALL\" seçilidirsə, tcp_wrapper'lər tərəfindən idarə edilən bütün "
+"xidmətlər (baxın hosts.deny(5) man səhifəsi)\n"
+"\n"
+"- əgər \"LOCAL\" seçilidirsə,yalnız yerlilər\n"
+"\n"
+"- əgər \"NONE\" seçilidirsə, heç biri.\n"
+"\n"
+"Xidmətləri səlahiyyətləndirmək üçün, /etc/hosts.allow faylını işlədin (baxın "
+"hosts.allow(5))."
#: ../../lang.pm:1
#, c-format
@@ -5013,12 +5282,12 @@ msgstr "Cədvəl"
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)"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "Model"
msgstr "Model"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer #%s"
msgstr "USB çapçı #%s"
@@ -5083,6 +5352,9 @@ msgid ""
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
+"Online texnik dəstək veb saytında tanınan Mütəxəssis olaraq MandrakeSoft "
+"dəstək komandalarına və Linux Onli Cəmiyyətinə biliklərinizi bölüşmək və "
+"başqalarına yardımetmək üçün qoşulun:"
#: ../../security/l10n.pm:1
#, c-format
@@ -5095,11 +5367,13 @@ msgid ""
"The following options can be set to customize your\n"
"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""
+"Sisteminizin təhükəsizliyini müəyyən etmək üçün aşağıdakı seçimlər\n"
+"mövcuddur. İzahata ehtiyacınız varsa, yardım bölməsinə baxın.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
-msgstr ""
+msgstr "Uzaq kompüterlərdəki mövcud çapçıları avtomatik tap"
#: ../../lang.pm:1
#, c-format
@@ -5108,6 +5382,11 @@ msgstr "Şərqi Timor"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "On Tape Device"
+msgstr "Kaset avadanlığı üstündə"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
@@ -5116,9 +5395,9 @@ msgstr ""
"- %s avadanlığı üstündə kasetə qeyd et"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Login name"
-msgstr "Sahə(domain) adı"
+msgstr "Giriş adı"
#: ../../security/l10n.pm:1
#, c-format
@@ -5173,7 +5452,7 @@ msgstr "StarOffice"
#: ../../standalone/drakboot:1
#, c-format
msgid "No, I don't want autologin"
-msgstr "Xeyr, Avtomatik giriş istəmirəm"
+msgstr "Xeyir, Avtomatik giriş istəmirəm"
#: ../../standalone/drakbug:1
#, c-format
@@ -5219,16 +5498,16 @@ msgstr ""
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Oxu"
-
#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Read"
+msgstr "Oxu"
+
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
@@ -5253,6 +5532,16 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake, çapçı avtomatik aşkarından əldə edilən çapçı adını onun "
+"mə'lumat bazasında yer alan çapçıların siyahısı ilə ən uyğununu tapmaq üçün "
+"müqayisə etdi. Bu seçim bə'zən səhv ola bilər, misal üçün, çapçınızın adı "
+"mə'lumat bazasında heç yer almırsa. Ona görədə seçimin düz olub olmadığına "
+"baxın və əgər düzgündürsə \"Model düzgündür\" düyməsini, deyilsə \"Modeli "
+"əllə seç\" düyməsinə basaraq növbəti ekranda çapçınızı seçin.\n"
+"\n"
+"Çapçınız üçün Printerdrake bunu tapdı:\n"
+"\n"
+"%s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -5265,12 +5554,23 @@ msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Sisteminizə birbaşa bağlı olan bir namə'lum çapçı var"
#: ../../keyboard.pm:1
#, c-format
msgid "Right Control key"
msgstr "Sağ Control düyməsi"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+"Kök cərgəsində %2$s olan FAT ilə şəkilləndirilmiş %1$s disketini taxın və %3"
+"$s düyməsinə basın"
+
#: ../../lang.pm:1
#, c-format
msgid "Zambia"
@@ -5294,18 +5594,18 @@ msgstr "Rumın (qwerty)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Under Devel ... please wait."
-msgstr "İnkişafdadır ... xahiş edirik gözləyin."
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Çex Respublikası"
+msgstr "İnkişafdadır ... xahiş edirik, gözləyin."
#: ../../lang.pm:1
#, c-format
msgid "Egypt"
msgstr "Misir"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Czech Republic"
+msgstr "Çex Respublikası"
+
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
@@ -5323,15 +5623,15 @@ msgid ""
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-"Tək bir böyük MicroSoft Windows disk bölməniz var\n"
-"Əvvəlcə bu disk bölməsinin böyüklüyünü dəyişdirməyinizi\n"
+"Tək bir böyük MicroSoft Windows disk bölməniz var.\n"
+"Əvvəlcə bu disk bölməsinin böyüklüyünü dəyişdirməyi\n"
"məsləhət edirik. (Bölməni seçib, \"Böyüklüyü\n"
"Dəyişdir\" düyməsinə tıqlayın)"
#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Temporary Files"
-msgstr "Gizli Faylları Gizlət"
+msgstr "Müvəqqəti Faylları Gizlət"
#: ../../network/netconnect.pm:1
#, c-format
@@ -5357,11 +5657,18 @@ msgid ""
"change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""
+"Həlledilirlik\n"
+"\n"
+" Burada, avadanlığınız üçün mövcud olan həlledilirlik və rəng "
+"dərinliklərini\n"
+"seçə bilərsiniz. Ehtiyacınıza ən yaxşı cavab verəni seçin (qurulumdan sonra\n"
+"bunu dəyişdirə biləcəksiniz). Seçilən qurğunun bir nümunəsi\n"
+"monitorda göstərilir."
#: ../../standalone/draksec:1
#, c-format
msgid "Network Options"
-msgstr "Şəbəkə Seçənəkləri"
+msgstr "Şəbəkə Seçimləri"
#: ../../security/l10n.pm:1
#, c-format
@@ -5418,6 +5725,10 @@ msgid ""
"(unless overridden by subsequent options, as in the option line\n"
"user,exec,dev,suid )."
msgstr ""
+"Sıravi istifadəçiyə fayl sistemini bağlama (mount) etmə icazəsi ver.\n"
+"Bağlama hüququ olan istifadəçinin adı daha sonra fayl sistemi ayıra bilməsi "
+"üşün mtab faylına qeyd edilir.\n"
+"Bu seçim noexec, nosuid, və nodev seçimlərini nəzərə alır."
#: ../../lang.pm:1
#, c-format
@@ -5426,6 +5737,11 @@ msgstr "Ekvatorial Qvineya"
#: ../../standalone/drakbackup:1
#, c-format
+msgid "Backup System"
+msgstr "Sistemin ehtiyat nüsxəsini çıxart"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid "Build Backup"
msgstr "Ehtiyatı İnşa Et"
@@ -5435,6 +5751,8 @@ msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Əmr sətirindən (terminal pəncərəsi) bir faylı çap etmək üçün bu əmrləri "
+"işlədin: \"%s <fayl>\" ya da \"%s <fayl>\".\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -5468,10 +5786,127 @@ msgstr ""
msgid "Kiribati"
msgstr "Kiribati"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
+msgstr "Çərx emulyasiyalı Logitech siçan (serial, köhnə C7 növü)"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid "Other (not drakbackup) keys in place already"
+msgstr "Diqər (drackbackup xarici) açarlar onsuzda yerindədir"
+
+#: ../../help.pm:1
+#, c-format
+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"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
+"\n"
+"You will be presented with a list of different parameters to change to get\n"
+"an optimal graphical display: Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer.\n"
+"\n"
+"\n"
+"\n"
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
+"X (X Pəncərə Sistemi) GNU/Linuks qrafiki ara üzünün qəlbidir.\n"
+"Mandrake Linuksla bərabər gələn qrafiki mühitlərin hamısı (KDE, \n"
+"GNOME, AfterStep, WindowMaker, vs.) buna bağlıdır.\n"
+"\n"
+"Optimal görünüşü almaq üçün sizə dəyişdiriləcək fərqli parametrlər\n"
+"təqdim ediləcək.\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan qrafika kartını əsasən avtomatik "
+"olaraq\n"
+"aşkar edəcək və quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
+"olan\n"
+"səs kartını siyahıdan seçə bilərsiniz.\n"
+" Əgər kartınız üçün həm 3D dəstəyi olan həm də olmayan vericilər "
+"mövcudsa,\n"
+"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş "
+"ediləcək.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
+"aşkar edəcək və quraşdıracaq. Əgər səhv tapılsa həqiqətən sisteminizə bağlı "
+"olan\n"
+"monitoru siyahıdan seçə bilərsiniz.\n"
+"\n"
+"\n"
+"Həlledilirlik\n"
+"\n"
+" Burada avadanlığınız üçün mümkün olan həlledilirlik və rəng "
+"dərinliklərini\n"
+"seçə bilərsiniz. Ehtiyaclarınıza ən gözəl cavab verəni seçin. (Bunları "
+"qurulum\n"
+"tamamlandıqdan sonra da dəyişdirə biləcəksiniz). Seçilən qurğuların bir\n"
+"nümunəsi monitorda göstərilir.\n"
+"\n"
+"\n"
+"\n"
+"Sınaq\n"
+"\n"
+" Sistem, seçilən həlledilirlikdə qrafiki ekranı açmağa cəhd edəcək.\n"
+"Əgər sınaq sırasında ismarışı görüb \"%s\" düyməsinə bassanız, DrakX\n"
+"növbəti mərhələyə keçəcək. Əgər ismarışı görə bilmirsinizsə, bu avtomatik\n"
+"aşkar edilən quraşdırmanın bir hissəsi səhvdir və sınaq 12 saniyə sonra\n"
+"sonlanaraq sizi menyuya geri götürəcək.\n"
+"Düzgün qrafiki görünüş alana qədər qurğuları dəyişdirin.\n"
+"\n"
+"\n"
+"\n"
+"Seçimlər\n"
+"\n"
+" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
+"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
+"qurğularını\n"
+"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
+"istəyəcəksiniz."
#: ../../standalone/draksplash:1
#, c-format
@@ -5486,7 +5921,7 @@ msgstr "CDROM"
#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
-msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
+msgstr "İndi internetə bağlanmağı sınamaq istəyirsiniz?"
#: ../../keyboard.pm:1
#, c-format
@@ -5539,174 +5974,20 @@ msgid ""
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"drakTermServ Overview\n"
-"\t\t\t \n"
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel.\n"
-"\n"
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:\n"
-" \t\t\n"
-"\t\t\t\thost curly {\n"
-"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
-"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t#type fat;\n"
-"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
-"nbi\";\n"
-"\t\t\t\t\t#hdw_config true;\n"
-"\t\t\t\t}\n"
-"\t\t\t\n"
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating seperate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login priviledges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing "
-"clients.\n"
-"\t\t\t\n"
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network.\n"
-" \t\t\n"
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file.\n"
-"\n"
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files.\n"
-"\n"
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured.\n"
-"\t\t\n"
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-" \t\t(\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs it's images.\n"
-"\n"
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
-" \n"
-"\n"
-msgstr ""
+"Yerli şəbəkənizdəki uzaq CUPS vericilərindəki çapçıya yetişmə səlahiyyəti "
+"almaq üçün sadəcə olaraq \"Uzaq sistemlərdəki mövcud çapçıları avtomatik tap"
+"\" seçimini işarələməlisiniz; CUPS vericiləri, sisteminizi öz çapçıları "
+"haqqında avtomatik mə'lumatlandırırlar. Hazıda sisteminizdəki bütün bilinən "
+"çapçılar Printerdrake'nin əsas pəncərəsindəki \"Uzaq çapçılar\" "
+"bölməsindəyer alır. Əgər CUPS vericiləriniz yerli şəbəkənizdə deyilsə, çapçı "
+"mə'lumatını vericidən almaq üçün buraya IP adres(lər)i və istəyə bağlı "
+"olaraq qapı nömrə(lər)sini daxil etmək məcburiyyətindəsiniz."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s darayıcı databeyzi deyil, onu əllə quraşdırmaq istəyirsiniz?"
+msgstr ""
+"%s darayıcı mə'lumat bazasında deyil, onu əllə quraşdırmaq istəyirsiniz?"
#: ../../any.pm:1
#, c-format
@@ -5758,8 +6039,7 @@ msgstr "%s tapıldı"
msgid "/Autodetect _printers"
msgstr "/Ça_pçıları avtomatik təsbit et"
-#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#: ../../interactive/newt.pm:1
+#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "Qurtar"
@@ -5793,7 +6073,7 @@ msgstr "16 MB"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
-msgstr "Xahiş edirik təkrar sınayın"
+msgstr "Xahiş edirik, təkrar sınayın"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -5809,23 +6089,28 @@ msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
-msgstr "Fərdi paket seçkisi"
+msgstr "Fərdi paket seçimi"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition is not resizeable"
-msgstr "Hansı bölmə növünü istəyirsiniz?"
+msgstr "Bu bölmə ölçüləndirilə bilməz"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Location"
-msgstr "Yeri"
+msgstr "Mövqe"
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable-hrc)"
msgstr "USA (kabel-hrc)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guatemala"
+msgstr "Qvatemala"
+
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
@@ -5836,11 +6121,6 @@ msgstr "Journalised FS"
msgid "Ethernet cards promiscuity check"
msgstr "Eternet kartlarının promiscuity yoxlaması"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Quatemala"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "This machine"
@@ -5851,16 +6131,16 @@ msgstr "Bu sistem"
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Fayl ya da cərgələri seçib, 'Oldu' düyməsinə basın"
-
#: ../../lang.pm:1
#, c-format
msgid "Bahrain"
msgstr "Bahreyn"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select the files or directories and click on 'OK'"
+msgstr "Fayl ya da cərgələri seçib, 'Oldu' düyməsinə basın"
+
#: ../../standalone/drakfloppy:1
#, c-format
msgid "omit scsi modules"
@@ -5899,12 +6179,19 @@ msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
+"Burada siz, sisteminizə bağlı çapçıların uzaqdakı sistemlər və hansıları "
+"tərəfindən istifadə edilə biləcəyini tə'yin edə bilərsiniz."
#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
msgstr "Malta (US)"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "The creation of the boot floppy has been successfully completed \n"
+msgstr "Açılış disketi yaradılması müvəffəqiyyətlə başa çatdı \n"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -5951,15 +6238,13 @@ msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Düzgün kaset adı deyil. Kasedin adı %s qoyulub."
+msgid "Thursday"
+msgstr "Cümə Axşamı"
#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"For a mulitsession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Düzgün kaset adı deyil. Kasedin adı %s qoyulub."
#: ../../standalone/drakgw:1
#, c-format
@@ -6008,12 +6293,38 @@ msgid ""
"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
"are normally reserved for the expert user."
msgstr ""
+"Bu dialoq açılış yükləyicinizi sazlama imkanı verəcək:\n"
+"\n"
+" * \"%s\": açılış yükləyiciniz üçün üç seçim mövcuddur:\n"
+"\n"
+" * \"%s\": əgər grub arzulayırsanız (mətn menyusu).\n"
+"\n"
+" * \"%s\": əgər mətn menyulu LILO arzulayırsanız.\n"
+"\n"
+" * \"%s\": əgər qrafiki menyulu LILO arzulayırsanız.\n"
+"\n"
+" * \"%s\": Adətən əsas olan (\"%s\") qurğusunu dəyişməyəcəksiniz,\n"
+"ancaq arzu edirsinizsə, açılış yükləyicisini ikinci sürücü (\"%s\"),hətda\n"
+"disket sürücüsü (\"%s\")'ya belə qura bilərsiniz;\n"
+"\n"
+" * \"%s\": kompüter yeni açılanda ya da yenidən başladılanda bu vaxt\n"
+"istifadəçiyə seçimini etməsi üçün tanınacaq. Əgər bu vaxt içində heç bir\n"
+"seçim edilməzsə əsas seçim açılacaq.\n"
+"\n"
+"!! Diqqət: əgər \"%s\" düyməsi ilə açılış yükləyicisini qurmamağı "
+"istədinizsə,\n"
+"Mandrake Linuksu açacaq bir üsulunuzun olduğundan əmin olmalısınız!\n"
+"Əgər bu mövzuda dərin biliklərə malik deyilsəniz, seçimlərdən hər hansı\n"
+"birisini dəyişdirməyi sizə məsləhət görmürük!!\n"
+"\n"
+"\"%s\" düyməsinə basaraq isə normalda yalnız mütəxəssis istifadəçilər üçün\n"
+"mövcud olan seçimlər dialoqunu görə bilərsiniz."
#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
-msgstr ""
+msgstr "seçilidirsə, raportu bu ünvana yolla, əks halda raportu root'a yolla."
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6032,6 +6343,8 @@ msgid ""
"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
"scanbus' would also show you the device number."
msgstr ""
+"Bu, 'cdrecord' əmr sətiri proqramı ilə eyni sintaksisi işlədir. 'cdrecord -"
+"scanbus' sizə eyni zamanda avadanlıq nömrəsini də göstərəcək."
#: ../../security/level.pm:1
#, c-format
@@ -6050,6 +6363,11 @@ msgstr ""
"Qeyd: əgər sisteminiz İnternet üstündə sadə bir alıcıdırsa, daha aşağı olan "
"səviyyəni seçin."
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Server Name"
+msgstr "Verici Adı"
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
@@ -6079,6 +6397,29 @@ msgstr ""
"\n"
"Hansı sürücü üstündən açılış edirsiniz?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+"XƏBƏRDARLIQ!\n"
+"\n"
+"DrakX indi Windows disk bölmənizin böyüklüyünü dəyişdirəcək.\n"
+"Diqqətli olun, bu təhlükəli ola bilər. Hələ də etmədinizsə qurulumdan\n"
+"çıxın və Windows altında scandisk (lazım gələrsə defrag da) proqramını\n"
+"icra edin. Eyni zamanda mə'lumatlarınızın da ehtiyat nüsxəsini alın.\n"
+"Ardından quruluma davam edin.\n"
+"Hazır olanda, Oldu düyməsinə basın."
+
#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
@@ -6093,6 +6434,10 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Çap hovuzunu %s yerinə %s etmək üçün çapçı qurğularınızı köçürəbilərsiniz. "
+"Bütün qurğu mə'lumatı (çapçı adı, izahatı, yeri, bağlantı növüvə əsas "
+"seçimlər) köçürüldüyü vaxt, sırada olan vəzifələr transfer edilməyəcək.\n"
+"Qeyd: Aşağıdakı səbəplərdən ötrü bütün sıralar transfer edilə bilməz:\n"
#: ../../standalone/drakfont:1
#, c-format
@@ -6139,7 +6484,7 @@ msgstr "Fayl seç"
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
-msgstr ""
+msgstr "Yerli çapçıların mövcud ediləcəyi şəbəkə ya da qovşağı seçin:"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -6148,6 +6493,9 @@ msgid ""
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Eləcə də bir çox proqramın \"Çap əmri\" sahəsində bu əmrlərdənbirini işlədə "
+"bilərsiniz. Yalnız bu cür istifadədə çap ediləcək faylın adını proqram "
+"verəcəyi üçün fayl adı verilməz.\n"
#: ../../lang.pm:1
#, c-format
@@ -6157,7 +6505,7 @@ msgstr "Yaponiya"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print option list"
-msgstr "Seçənəklər siyahısını göstər"
+msgstr "Seçimlər siyahısını göstər"
#: ../../standalone/localedrake:1
#, c-format
@@ -6167,7 +6515,7 @@ msgstr "Dəyişikliklər edildi, ancaq effektiv olmaq üçün yenidən giriş ed
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Country / Region"
-msgstr "Ölkə"
+msgstr "Ölkə / Bölgə"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -6207,15 +6555,6 @@ msgstr ""
"Yüksək keyfiyyət təsadüfi rəqəm istehsal edən sistem entropi hovuzunun \n"
"saxlanması və yenidən köhnə halına gətirilməsinə imkan verər."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
-"%s fayl sisteminin yoxlanması bacarılmadı. Xətaları düzəltmək istəyirsiniz? "
-"(diqqətli olun, mə'lumatları itirə bilərsiniz)"
-
#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
@@ -6248,7 +6587,7 @@ msgstr "Bilmirəm"
#: ../../services.pm:1
#, c-format
msgid "Start when requested"
-msgstr ""
+msgstr "İstənəndə başlat"
#: ../../printer/main.pm:1
#, c-format
@@ -6319,6 +6658,11 @@ msgstr " ("
msgid "Cpuid level"
msgstr "Cpuid səviyyəsi"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Novell server \"%s\", printer \"%s\""
+msgstr "Novell vericisi \"%s\", çapçı \"%s\""
+
#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
@@ -6387,6 +6731,11 @@ msgstr "Uruqvay"
msgid "Benin"
msgstr "Benin"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "SMB/Windows server \"%s\", share \"%s\""
+msgstr "SMB/Windows vericisi \"%s\", bölüşülmüş sahə \"%s\""
+
#: ../../standalone/drakperm:1
#, c-format
msgid "Path selection"
@@ -6402,6 +6751,11 @@ msgstr "Qovşağın Adı/IP ünvanı:"
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Custom & system settings"
+msgstr "Xüsusi və sistem qurğuları"
+
#: ../../partition_table/raw.pm:1
#, c-format
msgid ""
@@ -6411,7 +6765,7 @@ msgid ""
"data."
msgstr ""
"Sürücünüzdə bə'zi pis şeylər baş verir.\n"
-"Datanın bütövlüyünün yoxlanması bacarılmadı. \n"
+"Mə'lumatın bütövlüyünün yoxlanması bacarılmadı. \n"
"Bu o demekdir ki diskə yazılan hər şey təsadüfi və pozulmuş olacaq."
#: ../../printer/printerdrake.pm:1
@@ -6423,7 +6777,7 @@ msgstr "Çapçı qovşaq adı ya da IP'si əksikdir!"
#, c-format
msgid "Please check all users that you want to include in your backup."
msgstr ""
-"Xahiş edirik ehtiyat nüsxəsinə daxil etmək istədiyiniz bütün istifadəçiləri "
+"Xahiş edirik, ehtiyat nüsxəsinə daxil etmək istədiyiniz bütün istifadəçiləri "
"seçin."
#: ../../standalone/scannerdrake:1
@@ -6462,6 +6816,11 @@ msgstr "Davam et"
msgid "Custom Restore"
msgstr "Xüsusi Geri Qaytarma"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Saturday"
+msgstr "Şənbə"
+
#: ../../help.pm:1
#, c-format
msgid ""
@@ -6470,6 +6829,9 @@ msgid ""
"present on your system, you can click on the button and choose another\n"
"driver."
msgstr ""
+"\"%s\": əgər sisteminizdə səs kartı tapılıbsa burada göstəriləcək.\n"
+"Əgər burada göstərilən səs kartının sisteminizdəkindən fərqli olduğu\n"
+"nəzərinizə çatsa, düyməyə basıb başqa bir sürücü seçə bilərsiniz."
#: ../../security/help.pm:1
#, c-format
@@ -6513,6 +6875,9 @@ msgid ""
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
+"Çapçıya yetişə bilmək üçün birbaşa URI verə bilərsiniz. URI, ya CUPS ya "
+"daFoomatic xassələrini daxil etməlidir.Qeyd: Her URI növünü her çap hovuzu "
+"dəstəkləməz."
#: ../../any.pm:1
#, c-format
@@ -6529,6 +6894,11 @@ msgstr "Qurulum/Yeniləmə"
msgid "%d packages"
msgstr "%d paket"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Costa Rica"
+msgstr "Kosta Rika"
+
#: ../../standalone.pm:1
#, c-format
msgid ""
@@ -6578,11 +6948,6 @@ msgstr ""
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
#: ../../security/level.pm:1
#, c-format
msgid "Use libsafe for servers"
@@ -6610,27 +6975,19 @@ msgid ""
"Maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
+"Drakbackup üçün\n"
+"icazə verilən maksimal böyüklük (MB)"
-#: ../../my_gtk.pm:1
+#: ../../loopback.pm:1
#, c-format
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgid "Circular mounts %s\n"
+msgstr "Dairəvi bağlama %s\n"
#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo/grub mode"
msgstr "Lilo/grub modu"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Output"
-msgstr "Nəticə"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Dairəvi bağlama %s\n"
-
#: ../../lang.pm:1
#, c-format
msgid "Martinique"
@@ -6642,11 +6999,9 @@ msgid "HardDrive / NFS"
msgstr "Sabit Disk / NFS"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Old user list:\n"
-msgstr ""
-"\n"
-"- İstifadəçi Faylları:\n"
+msgstr "Köhnə istifadəçi siyahısı:\n"
#: ../../standalone/drakbackup:1
#, c-format
@@ -6676,6 +7031,11 @@ msgid ""
"running"
msgstr "Seçili xidmətlərdən biri işləməsə sizə xəbər göndəriləcək"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Weekday"
+msgstr "Həftənin Günü"
+
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
@@ -6710,6 +7070,38 @@ msgstr ""
msgid "Floppy"
msgstr "Disket"
+# needs editing (Metin)
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network."
+msgstr ""
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network."
+
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -6723,7 +7115,7 @@ msgstr "Açılış yükləyicisi"
#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
-msgstr ""
+msgstr "tcp_wrapper'lər tərəfindən idarə edilən bütün xidmətlərə icazə ver"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -6745,6 +7137,11 @@ msgstr "SMB verici adı"
msgid "Name Servers:"
msgstr "Ad Vericiləri:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Minute"
+msgstr "Dəqiqə"
+
#: ../../install_messages.pm:1
#, c-format
msgid ""
@@ -6806,6 +7203,11 @@ msgstr ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Expert mode"
+msgstr "/_Mütəxəssis modu"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
@@ -6819,16 +7221,16 @@ msgid ""
msgstr ""
"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
-
#: ../../lang.pm:1
#, c-format
msgid "Micronesia"
msgstr "Mikroneziya"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rəng (32 bits)"
+
#: ../../steps.pm:1
#, c-format
msgid "License"
@@ -6839,6 +7241,94 @@ msgstr "Lisenziya"
msgid "This may take a moment to generate the keys."
msgstr "Açarların yaradılması biraz vaxt ala bilər."
+#: ../../standalone/draksec:1
+#, c-format
+msgid ""
+"Here, you can setup the security level and administrator of your machine.\n"
+"\n"
+"\n"
+"The Security Administrator is the one who will receive security alerts if "
+"the\n"
+"'Security Alerts' option is set. It can be a username or an email.\n"
+"\n"
+"\n"
+"The Security Level menu allows you to select one of the six preconfigured "
+"security levels\n"
+"provided with msec. These levels range from poor security and ease of use, "
+"to\n"
+"paranoid config, suitable for very sensitive server applications:\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
+"very\n"
+"easy to use security level. It should only be used for machines not "
+"connected to\n"
+"any network and that are not accessible to everybody.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
+"security\n"
+"recommended for a computer that will be used to connect to the Internet as "
+"a\n"
+"client.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">High</span>: There are already some\n"
+"restrictions, and more automatic checks are run every night.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
+"enough\n"
+"to use the system as a server which can accept connections from many "
+"clients. If\n"
+"your machine is only a client on the Internet, you should choose a lower "
+"level.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
+"previous\n"
+"level, but the system is entirely closed and security features are at their\n"
+"maximum"
+msgstr ""
+"Burada siz, sisteminizin təhlükəsizlik səviyyəsini və idarəsini quraşdıra "
+"bilərsiniz.\n"
+"\n"
+"\n"
+"'Təhlükəsizlik Xəbərdarlıqları' seçimi seçilidirsə Təhlükəsizlik İdarəçisi "
+"təhlükəsizlik\n"
+"xəbərdarlıqlarını alacaq. Təhlükəsizlik İdarəçisi bir istifadəçi adı ya da "
+"ePoçt ola bilər.\n"
+"\n"
+"\n"
+"Təhlükəsizlik Səviyyəsi menyusu əvvəlcədən quraşdırılmış 6 təhlükəsizlik "
+"səviyyəsi \n"
+"arasından birisini seçmə imkanı verir. \n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Zəif</span>: Tamamilə e'tibarsız yalnız\n"
+"işlədilməsi çox asan təhlükəsizlik səviyyəsidir. Bu səviyyə yalnız heç bir\n"
+"şəbəkəyə ya da internetə bağlı olmayan və hərkəs tərəfində yetişilə "
+"bilməyən\n"
+"kompüterlər üçün seçilə bilər.\n"
+"\n"
+"<span foreground=\"royalblue3\">Standart</span>: Bu internetə alıcı \n"
+"olaraq bağlanacaq bir kompüter üçün standart təhlükəsizlik səviyyəsidir.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Yüksək</span>: Bə'zi məhdudiyyətlər\n"
+"olacaq və hər gecə daha çox avtomatik yoxlama işə salınacaq.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Daha Yüksək</span>: Birdən çox\n"
+"alıcıdan bağlantıları qəbul edən bir verici üçün bu təhlükəsizlik səviyyəsi\n"
+"qəbul edilə bilər. Əgər sisteminiz internet üstündə yalnız bir alıcıdırsa\n"
+" daha alçaq səviyyə seçin.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Paranoid</span>: Bu, bir əvvəlki \n"
+"səviyyəyə oxşayır yalnız sistem tamamilə bağlıdır və təhlükəsizlik\n"
+"xassələri maksimal vəziyyətdədir."
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
@@ -6883,10 +7373,10 @@ msgstr "Səs problemini həll et"
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sırası)"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/printerdrake:1
#, c-format
-msgid "activate now"
-msgstr "indi fəallaşdır"
+msgid "/_Add Printer"
+msgstr "/Çapçı Ə_lavə Et"
#: ../../standalone/drakbackup:1
#, c-format
@@ -6913,6 +7403,15 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"%s çap sistemini %s təhlükəsizlik səviyyəsində icra edəcək bir quruluma "
+"başlamaq üzrəsiniz.\n"
+"\n"
+"Bu çap sistemi, çap vəzifələrini gözlərkən və yazdırarkən bir arxa plan "
+"gedişatı olaraq işləyir. Bu gedişata şəbəkə üstündəki digər sistemlər yetişə "
+"bilər və buna görə də hücumlar da arta bilər. Digər yandan, yalnız bir neçə "
+"proqram bu təhlükəsizlik səviyyəsində əsasolaraq başladıla bilər.\n"
+"\n"
+"Bu sistemdə həqiqətən də çap sisteminin quraşdırılmasını istəyirsiniz?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -6922,17 +7421,17 @@ msgstr "Qovşaq \"%s\", qapı %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
-msgstr "Bu disk bölməsi loopback üçün işlədilməz"
+msgstr "Bu disk bölməsi loopback üçün işlədilə bilməz"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
-msgstr "Fayl onsuz da vardır. İşlədilsin?"
+msgstr "Fayl onsuz da mövcuddur. İşlədilsin?"
#: ../../standalone/net_monitor:1
#, c-format
msgid "received: "
-msgstr "alındı:"
+msgstr "alındı: "
#: ../../keyboard.pm:1
#, c-format
@@ -7025,6 +7524,25 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
+"\n"
+"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
+"\n"
+"Bu sehirbaz kompüterinizə ya da birbaşa şəbəkəyə bağlı olan çapçı ya\n"
+"da çapçıları quraşdırmaqda sizə yardım edəcək.\n"
+"\n"
+"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
+"aşkar edilə bilsinlər. Eyni zamanda şəbəkə kompüterləriniz də açıq "
+"olmalıdır.\n"
+"\n"
+"Qeyd edin ki, şəbəkə üstündəki çapçıların avtomatik aşkar edilməsi "
+"sisteminizə\n"
+"bağlı olan çapçıların açkar edilməsindən daha uzun müddət alır, ona görə "
+"də \n"
+"əgər onlara ehtiyacınız yoxdursa bunların avtomatik aşkar edilməsini "
+"bağlayın.\n"
+"\n"
+" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
+"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
#: ../../keyboard.pm:1
#, c-format
@@ -7035,8 +7553,7 @@ msgstr "Yunanca (politonik)"
#, 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"
+"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar itəcək."
#: ../../standalone/net_monitor:1
#, c-format
@@ -7049,8 +7566,8 @@ msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Qurma Cd-Romunu sürücünüzə taxın və OLDUya basın.\n"
-"Əgər Cd-Rom əlinizdə yox isə, bu Cd-Rom-dan qurmamaq üçün RƏDD ETə basın."
+"Qurulum CD-Rom'unu sürücünüzə taxın və Oldu düyməsinə basın.\n"
+"Əgər CD-Rom əlinizdə yoxdursa, Ləğv Et düyməsinə basın."
#: ../../standalone/drakperm:1
#, c-format
@@ -7089,7 +7606,7 @@ msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bil
#: ../../standalone/drakbackup:1
#, c-format
msgid "Directory (or module) to put the backup on this host."
-msgstr ""
+msgstr "Ehtiyatları bu qovşağa qoylmaq üçün cərgə (ya da modul)"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -7118,6 +7635,24 @@ msgid ""
"If it cannot make a determination, DrakX will ask you where to place the\n"
"bootloader."
msgstr ""
+"LILO və grub ikisi də GNU/Linuks açılış yükləyiciləridir. Normalda bu "
+"mərhələ\n"
+"tamamilə avtomatikdir. DrakX diskin kök sektorunu yoxlayacaq və orada "
+"tapacağı\n"
+"mə'lumatlara görə açağıdakı addımları tətbiq edəcək:\n"
+"\n"
+" * əgər Windows açılış sektoru aşkar edilərsə, DrakX onu grub/LILO açılış "
+"sektoru\n"
+"ilə dəyişdirəcək. Beləliklə, siz həm GNU/Linuksu həm də digər əməliyyat "
+"sisteminizi\n"
+"(Windows ya da MacOS) aça biləcəksiniz.\n"
+"\n"
+" * əgər grub ya da LILO açılış sektoru aşkar edilərsə, o, yenisiylə əvəz "
+"ediləcək.\n"
+"\n"
+"Əgər müəyyən edib qərara gələ bilməzsə, DrakX açılış yükləyicisini hara "
+"yazmaq\n"
+"istədiyinizi sizə soruşacaq."
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -7132,23 +7667,23 @@ msgstr "Açılış avadanlığı"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
-msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
+msgstr "Hansı bölmə ölçüləndirilsin?"
#: ../../lang.pm:1
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Birləşmiş Ştatlar yanı Kiçik Adalar"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Qeydlərinizə baxan vasitə"
-
#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
msgstr "Cibuti"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "A tool to monitor your logs"
+msgstr "Qeydlərinizə baxan vasitə"
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
@@ -7164,6 +7699,11 @@ msgstr "LPD"
msgid "Graphics card: %s\n"
msgstr "Ekran kartı: %s\n"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/Set as _Default"
+msgstr "/Əsas olaraq _müəyyən et"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Accept icmp echo"
@@ -7174,6 +7714,11 @@ msgstr "icmp əks sədasını qəbul et"
msgid "Yaboot"
msgstr "Yaboot"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech CC Series with Wheel emulation"
+msgstr "Çərx emulyasiyalı Logitech CC Seriyaları"
+
#: ../../standalone/drakboot:1
#, c-format
msgid "Splash selection"
@@ -7244,6 +7789,9 @@ msgid ""
"memory page level, thus enabling the processor to prevent unchecked kernel "
"accesses to user memory (aka this is a bug guard)"
msgstr ""
+"Cpu'nun CR0 qeydindəki WP bayrağı yaddaş səhifəsi səviyyəsində yazma "
+"qorumasını məcbur edir, buna görə də işlədiciyə istifadəçi yaddaşına nəzərdə "
+"olmayan yetişməni ləğv etmə imkanı verir. (bu bir xəta qoruyucusudur)"
#: ../../mouse.pm:1
#, c-format
@@ -7265,6 +7813,11 @@ msgstr "Avadanlıq seçin !"
msgid "Remove selected server"
msgstr "Seçili vericini çıxart"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using dhcp) usb"
+msgstr "Sagem (dhcp işlədən) usb"
+
#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
@@ -7278,7 +7831,7 @@ msgstr "işlədicinin e'malatçısı"
#: ../../diskdrake/interactive.pm:1
#, c-format
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"
+msgstr "Bu bölmədəki bütün mə'lumatların ehtiyat nüsxələri alınmalıdır"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -7295,7 +7848,7 @@ msgstr "Avadanlıq yoxlanır və HPOJ quraşdırılır..."
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"
+msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib uzadılmış bölmə yaradın"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -7310,18 +7863,25 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"Çapçınız avtomatik olaraq sisteminizdəki foto kart sürücülərinə yetişmək "
+"üzrə quraşdırılıb. Artıq foto kartlarınıza \"MtoolsFM\" adlı qrafiki "
+"tə'minat ilə (Menyuda \"Tə'minatlar\" -> \"Fayl vasitələri\" -> \"MTools "
+"Fayl İdarəçisi\") ya da \"mtools\" əmr sətiri ilə (əmr sətirində \"man mtools"
+"\" yazıb mə'lumat ala bilərsiniz) yetişə bilərsiniz. Kartın fayl sisteminə "
+"\"p:\" sürücü hərfindən, dahaçox foto kartlı HP çapçınız varsa, ondan sonra "
+"gələn hərflərdən yetişə bilərsiniz. \"MtoolsFM\"da sürücü hərfləri arasında "
+"keçişi fayl siyahılarının sağ üst güncündəki sahədən həyata keçirə "
+"bilərsiniz."
#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
-msgstr "Qurulacaq paketləri seçin"
+msgstr "Qurulacaq paketlərin seçimi"
#: ../../install_interactive.pm:1
#, 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"
+msgstr "%s sürüsündəki mövcud bütün bölmələr və onlardakı mə'lumatitiriləcək"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -7329,7 +7889,7 @@ msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
+"Sisteminizdə qurulum ya da yeniləmə üçün lazımi boş yer yoxdur(%d > %d)"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -7337,6 +7897,9 @@ 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 ""
+"Hər çapçının bir adı olmalıdır (misal üçün: \"çapçı\"). İzahat və "
+"Mövqesahələrini doldurmaq məcbur deyil. Onlar istifadəçilərə mə'lumat vermək "
+"üçündür."
#: ../../help.pm:1
#, c-format
@@ -7346,6 +7909,7 @@ msgid ""
"information on how to setup a new printer. The interface presented there is\n"
"similar to the one used during installation."
msgstr ""
+"\"%s\": \"%s\" düyməsinə basmaq çapçı quraşdırma sehirbazını başladacaq."
#: ../../lang.pm:1
#, c-format
@@ -7387,6 +7951,11 @@ msgstr "Yunanca"
msgid "Saint Kitts and Nevis"
msgstr "Müqəddəs Kit və Nevis"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse with Wheel emulation"
+msgstr "Çərx emulyasiyalı sıravi 3 düyməli siçan"
+
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
@@ -7397,21 +7966,27 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"Daşıma müvəffəqiyyətlə başa çatdı\n"
+"İndi aşağıdakı əmrlə vericiyə daxil olmayı yoxlaya bilərsiniz:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"Sizdən şifrə istənilməyəcək."
#: ../../any.pm:1
#, c-format
msgid "Enable OF Boot?"
-msgstr "OF Açılışı Fəallaşdırım?"
+msgstr "OF Açılışı Fəallaşdırılsın?"
#: ../../fsedit.pm:1
#, c-format
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"
+msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Erase your RW media (1st Session)"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+msgstr "RW mediyanızı silin (1ci İclas)"
#: ../../Xconfig/various.pm:1
#, c-format
@@ -7435,6 +8010,11 @@ msgstr ""
"%s\n"
"Bə'zi parametrləri dəyişdirməyi sınayın"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "TCP/IP host \"%s\", port %s"
+msgstr "TCP/IP qovşağı \"%s\", qapı %s"
+
#: ../../standalone/drakperm:1
#, c-format
msgid "User :"
@@ -7531,6 +8111,8 @@ msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"%2$s kaset avadanlığının içinə etiketi \n"
+"%1$s olan kasedi daxil edin"
#: ../../lang.pm:1
#, c-format
@@ -7542,6 +8124,11 @@ msgstr "Monqolustan"
msgid "Mounted\n"
msgstr "Bağlı\n"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Configure CUPS"
+msgstr "CUPS'u quraşdır"
+
#: ../../help.pm:1
#, c-format
msgid "Graphical Interface"
@@ -7582,7 +8169,7 @@ msgstr "Maurit"
#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
-msgstr "Myanmarca (Burmese)"
+msgstr "Myanmar dili (Burmese)"
#: ../../fs.pm:1
#, c-format
@@ -7592,12 +8179,12 @@ msgstr "%s dəyiş-toqquş sahəsi fəallaşdırılır"
#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr "Loopback üçün FAT bölməsi yoxdur (ya da üçün lazımi yer yoxdur)"
+msgstr "Loopback üçün FAT bölməsi yoxdur (ya da lazımi yer yoxdur)"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
-msgstr "Ermenicə (köhnə) "
+msgstr "Ermeni dili (köhnə) "
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -7606,6 +8193,9 @@ msgid ""
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
+"\"%s\" adında bir çapçı onsuzda %s altında mövcuddur . \n"
+"Üstündən yazmaq üçün \"Transfer\"ə basın.\n"
+"Həmçinin, yeni bir ad daxil edə bilər ya da çapçını keçə bilərsiniz."
#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
@@ -7613,6 +8203,7 @@ msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform."
msgstr ""
+"Problemlərinizə çarələri MandrakeSoft'un onlayn dəstək platformunda tapın."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -7624,15 +8215,10 @@ msgstr ", qovşaq \"%s\", qapı %s"
msgid "Monaco"
msgstr "Monako"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when uneeded"
-msgstr "Lazım olmayanda poçt göndərmə"
-
#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
-msgstr "Bölmə cədvəli növü: %s"
+msgstr "Bölmələndirmə bacarılmadı: %s"
#: ../../fs.pm:1 ../../swap.pm:1
#, c-format
@@ -7644,6 +8230,11 @@ msgstr "%s şəkilləndirilməsində %s bölmə xətası"
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Floppy creation completed"
+msgstr "Disket yaradılması tamamlandı"
+
#: ../../help.pm:1
#, c-format
msgid "Upgrade"
@@ -7652,7 +8243,7 @@ msgstr "Yeniləmə"
#: ../../help.pm:1
#, c-format
msgid "Workstation"
-msgstr "Masa üstü"
+msgstr "İş Stansiyası"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -7668,6 +8259,11 @@ msgstr ""
msgid "Kyrgyzstan"
msgstr "Qırğızıstan"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Multi-function device on USB"
+msgstr "USB üstündə çox funksiyalı avadanlıq"
+
#: ../../help.pm:1
#, c-format
msgid "With basic documentation"
@@ -7685,35 +8281,35 @@ msgid ""
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-"Bir root disk bölümüna ehtiyacınız var.\n"
-"Bunun üçün istər mövcud bir disk bölümü üzərina tıqlayın, \n"
+"Bir kök bölməsi yaratmalısınız.\n"
+"Bunun üçün istər mövcud bir disk bölümü üzərinə tıqlayın, \n"
"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
-"Nöqtəsi\"nə gəlin va burayı '/' olaraq dəyişdirin."
+"Nöqtəsi\"gedişatını seçin va buranı '/' olaraq dəyişdirin."
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
+msgstr "Qərbi Saxara"
#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
-msgstr "Vəkil verici http://... şəklində olmalıdır."
+msgstr "Vəkil http://... şəklində olmalıdır."
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "South Africa"
msgstr "Cənubi Afrika"
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Qərbi Saxara"
-
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Eject tape after the backup"
-msgstr "Xətalı yedəkləmə faylı"
+msgstr "Ehtiyatlama sonrasında kasedi çıxart"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+msgstr "Etherboot Disketi/ISO"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -7723,7 +8319,7 @@ msgstr "Çapçı qurğularını dəyişdir"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose a partition"
-msgstr "Bölmə seç"
+msgstr "Bölmə seçin"
#: ../../standalone/drakperm:1
#, c-format
@@ -7738,7 +8334,7 @@ msgstr "%s"
#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
-msgstr "Xahiş edirik siçanınızı seçin"
+msgstr "Xahiş edirik, siçanınızı seçin"
#: ../../fs.pm:1
#, c-format
@@ -7746,6 +8342,13 @@ msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
+"Bu fayl sistemi üstündəki inode yetişmə vaxtlarını yeniləmə\n"
+"(mis,xəbərlər vericisini tezləşdirmək üçün)."
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons with Wheel emulation"
+msgstr "Çərx emulyasiyalı 3 düymə"
#: ../../standalone/drakperm:1
#, c-format
@@ -7818,10 +8421,15 @@ msgstr "Malavi"
msgid "local config: false"
msgstr "yerli qurğu: səhv"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "System settings"
+msgstr "Sistem qurğuları"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
-msgstr "Xahiş edirik siçanınızın növünü seçin."
+msgstr "Xahiş edirik, siçanınızın növünü seçin."
#: ../../standalone/harddrake2:1
#, c-format
@@ -7834,6 +8442,8 @@ msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
+"Yerli olaraq bağlı olan çapçı bu sistem və şəbəkələr üçün də mövcud "
+"olmalıdır:"
#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
@@ -7845,16 +8455,16 @@ msgstr "Birləşmiş Krallıq"
msgid "running"
msgstr "işləmir"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "əsas"
-
#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "İndoneziya"
+#: ../../standalone/draksec:1
+#, c-format
+msgid "default"
+msgstr "əsas"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "France [SECAM]"
@@ -7868,7 +8478,7 @@ msgstr "məhdudlaşdır"
#: ../../pkgs.pm:1
#, c-format
msgid "must have"
-msgstr "alınmalı"
+msgstr "sınamağa dəyər"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -7876,6 +8486,8 @@ msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
+"CUPS Novell vericilərindəki ya da mə'lumatı sərbəst-şəkilli formda "
+"göndərənçapçıları dəstəkləmir.\n"
#: ../../lang.pm:1
#, c-format
@@ -7893,6 +8505,13 @@ msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies\", are available on our e-store:"
msgstr ""
+"E-dükkanımızda bir sıra Linux həlli və xüsusi təklif və məhsullarımızvə daha "
+"bir çox şey sizi gözləyir:"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "March"
+msgstr "Mart"
#: ../../any.pm:1
#, c-format
@@ -7906,6 +8525,9 @@ msgid ""
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
+"sendmail bacarılmadı.\n"
+" Raport məktubunuz göndərilmədi.\n"
+" Xahiş edirik, sendmail'i quraşdırın"
#: ../../fs.pm:1
#, c-format
@@ -7914,6 +8536,9 @@ msgid ""
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
+"set-user-identifierya da set-group-identifier fəaliyyətlərinə\n"
+"icazə vermə. (Bu e'tibarlı görsənir, yalnız sisteminizdə suidperl(1)\n"
+"quruludursa təhlükəli ola bilər.)"
#: ../../lang.pm:1
#, c-format
@@ -7928,7 +8553,7 @@ msgstr "Avtomatik asıllılıqlar"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Swap"
-msgstr "Swap"
+msgstr "Dəyiş-toqquş"
#: ../../standalone/drakperm:1
#, c-format
@@ -7950,6 +8575,11 @@ msgstr "TV kartı"
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT üstündə çapçı"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "/_Configure CUPS"
+msgstr "/_CUPS'u quraşdır"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
@@ -7972,7 +8602,7 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Uzbek (cyrillic)"
-msgstr "Özbəkcə (kiril)"
+msgstr "Özbək dili (kiril)"
#: ../../keyboard.pm:1
#, c-format
@@ -8031,7 +8661,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
+msgstr "HP çox-funksiyalı avadanlığınız üstündə foto yaddaş kartına səlahiyyət"
#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
@@ -8039,6 +8669,13 @@ msgid ""
"Enhance your computer performance with the help of a selection of partners "
"offering professional solutions compatible with Mandrake Linux"
msgstr ""
+"Madrake Lunux dəstəyi olan ortaq seçmələrimizin yardımı ilə "
+"kompüterinizinişləmə keyfiyyətini artırın"
+
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Authors: "
+msgstr "Müəlliflər:"
#: ../../standalone/drakgw:1
#, c-format
@@ -8048,7 +8685,7 @@ msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
+msgstr "əgər bəli seçilidirsə, suid/sgid fayllarının checksum'ını yoxla."
#: ../../keyboard.pm:1
#, c-format
@@ -8081,7 +8718,7 @@ msgstr "Düymə `%s': %s"
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
+msgstr "Xahiş edirik, gözləyin"
#: ../../mouse.pm:1
#, c-format
@@ -8098,12 +8735,22 @@ msgstr "Yoxdur"
msgid "The entered IP is not correct.\n"
msgstr "Daxil edilən IP səhvdir.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please be sure that the cron daemon is included in your services."
+msgstr "Xahiş edirik, cron demonunun xidmətlərinizdə yer aldığından əmin olun."
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "Ethernet Card"
msgstr "Eternet Kartı"
-#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Delete selected printer"
+msgstr "Seçili çapçını sil"
+
+#: ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "Mə'lumat"
@@ -8112,7 +8759,7 @@ msgstr "Mə'lumat"
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Install"
-msgstr "Qurulum"
+msgstr "Qur"
#: ../../help.pm:1
#, c-format
@@ -8136,7 +8783,7 @@ msgstr ""
#: ../../steps.pm:1
#, c-format
msgid "Exit install"
-msgstr "Qurulumdan çıx"
+msgstr "Qurulumun sonu"
#: ../../standalone/drakgw:1
#, c-format
@@ -8227,15 +8874,6 @@ msgstr "Yeni darayıcıları axtar"
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Xahiş edirik hər ehtiyatlama gedişatı\n"
-"arasındakı vaxt aralığını seçin."
-
#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
@@ -8282,7 +8920,7 @@ msgstr "İstifadəçi fayllarının ehtiyat nüsxəsini çıxart..."
#: ../../steps.pm:1
#, c-format
msgid "Install system"
-msgstr "Sistemi qur"
+msgstr "Sistemin qurulumu"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8293,7 +8931,7 @@ msgstr "Birinci DNS Vericisi (arzuya görə)"
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
+msgstr "Alternativ olaraq, avadanlıq/fayl adını giriş sətirinə yaza bilərsiniz"
#: ../../security/help.pm:1
#, c-format
@@ -8307,11 +8945,19 @@ msgid ""
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
+"Əgər SERVER_LEVEL (yada SECURE_LEVEL əksikdirsə)\n"
+"/etc/security/msec/security.conf içində 3'dən böyükdürsə,\n"
+"/etc/security/msec/server.<SERVER_LEVEL> ünvanına gedən.\n"
+"/etc/security/msec/server simvolik körpüsünü yaradar.\n"
+"\n"
+"/etc/security/msec/server, chkconfig --add tərəfindən\n"
+"paketlərin qurulması sırasında əgər mövcuddursa faylın içinə\n"
+"xidmət əlavə etmək üçün istifadə edilir."
#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Phonetic)"
-msgstr "Rusca (Fonetik)"
+msgstr "Rus dili (Fonetik)"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -8321,22 +8967,17 @@ msgstr "dhcpd Qurğuları..."
#: ../../standalone/drakgw:1
#, c-format
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."
+msgstr "Quraşdırma onsuzda edilib, amma hazırda qeyri-fəaldır."
#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
-msgstr "LILO/grup Qurulumu"
+msgstr "LILO/grub Qurulumu"
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
-msgstr "İsrail"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "load setting"
-msgstr "qurğuları yüklə"
+msgstr "Yəhudi dili"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -8415,6 +9056,50 @@ msgid ""
"end of another installation. See the second tip of last step on how to\n"
"create such a floppy."
msgstr ""
+"Əgər qurulum proqramına paketləri ayrı ayrı seçmək istədiyinizi dedinizsə,\n"
+"o, qrup və alt qruplara ayrılmış paketləri ağac şəklində sizə göstərəcək.\n"
+"Bu ağacda gəzərkən, bütün qrupu, alt qrupu ya da paketləri ayrı ayrı seçə "
+"biləcəksiniz\n"
+"\n"
+"Hər paket seçişinizdə sağ tərəfdə bu paket ilə əlaqəli və onun nə işə\n"
+"yaradığını göstərən mə'lumat yer alacaq.\n"
+"\n"
+"!! Əgər paketin ya da paketin daxil oduğu alt qrupun seçilməsi ilə bir "
+"verici\n"
+"seçilsə, sizə bu vericini həqiqətən də qurmaq istədiyinizi soruşan və "
+"sizdən\n"
+"təstiq istəyən pəncərə göstəriləcək. Əsas olaraq Mandrake Linuks bütün "
+"qurulu\n"
+"olan xidmətləri açılışda fəal edir. Distribusiyanın çıxdığı vaxt onların "
+"bilinən heç bir\n"
+"xətası ya da təhlükəli yanı olmasa da, mümkündür ki, müəyyən vaxt sonra\n"
+"təhlükəsizlik nöqtələri aşkar edilə bilər. Əgər seçilən xidmətin nə etdiyini "
+"və nəyə\n"
+"yaradığını bilmirsinizsə, \"%s\" düyməsinə basın. \"%s\" düyməsini seçsəniz "
+"isə\n"
+"xidmət sisteminizə qurulacaq və sisteminizin açılışında fəal hala "
+"gətiriləcək.\n"
+"Qeyd: Xidmətlərin açılışda fəal olub olmamasını qurulum bitdikdən sonra da\n"
+"Mandrake İdarə Mərkəzindən quraşdıra bilərsiniz!!\n"
+"\n"
+"\"%s\" seçimi, bir proqramı seçdiyiniz zaman qurulum proqramının o proqram "
+"ilə\n"
+"əlaqəli diqər paket ya da asıllılıqların avtomatik seçməsi üçündür.\n"
+"Bə'zi paketlər bir birindən aslıdır və birinin qurulması digərinin də "
+"qurulmasını\n"
+"məcbur qılır. Bu paketləri qurulum proqramı müvəffəqiyyətlə taparaq "
+"sisteminizə\n"
+"quracaq.\n"
+"\n"
+"Siyahının altındakı kiçik disket rəsmi isə daha əvvəlki qurulumda (əgər "
+"yaratmışsınızsa)\n"
+"yaradılan paket siyahısı faylını yükləmək üçündür. Bu, birdən çox kompüterə "
+"eyni\n"
+"paket ya da proqramları qurmaq istədiyiniz zaman çox əlverişlidir. Düyməyə\n"
+"basdıqdan sonra sizdən disketi daxil etməniz xahiş ediləcək.\n"
+"Belə bir disketi necə yaradılacağını bilmək istəyirsinizsə son qurulum "
+"addımının \n"
+"ikinci yardım abzasına baxa bilərsiniz."
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -8428,13 +9113,13 @@ msgstr "Siera Lione"
#: ../../lang.pm:1
#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+msgid "Botswana"
+msgstr "Botsvana"
#: ../../lang.pm:1
#, c-format
-msgid "Botswana"
-msgstr "Botsvana"
+msgid "Andorra"
+msgstr "Andorra"
#: ../../standalone/draksec:1
#, c-format
@@ -8445,6 +9130,8 @@ msgstr "(əsas qiymət: %s)"
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
+"Şifrə vaxtının keçməsini \"maks\" gün et və \"qeyri-fəal\" vəziyyətə "
+"dəyişməyi gecikdir."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -8460,6 +9147,11 @@ msgid ""
"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
msgstr ""
+"DHCP Verici Quraşdırılması.\n"
+"\n"
+"Burada, DHCP verici quraşdırılması üçün fərqli seçimləri seçə bilərsiniz.\n"
+"Əgər bir seçimin mə'nasını bilmirsinizsə, onu olduğu kimi saxlayın.\n"
+"\n"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -8469,7 +9161,7 @@ msgstr "X vericisini seçin"
#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
-msgstr "Swap sahəsi böyüklüyü (Mb): "
+msgstr "Dəyiş-toqquş sahəsi böyüklüyü (Mb): "
#: ../../standalone/drakbackup:1
#, c-format
@@ -8519,22 +9211,24 @@ msgstr ""
msgid "Automatic Steps Configuration"
msgstr "Avtomatik Addımların Quraşdırılması"
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr "Barbados"
+
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
"Want to know more and to contribute to the Open Source community? Get "
"involved in the Free Software world!"
msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+"Açıq Mənbə cəmiyyəti haqqında daha çox bilmək və yardım etmək istəyirsiniz? "
+"Sərbəst Tə'minat Dünyası ilə tanışın!"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to backup..."
-msgstr "Xahiş edirik ehtiyat nüsxəsi çıxardılacaq mə'lumatı seçin..."
+msgstr "Xahiş edirik, ehtiyat nüsxəsi çıxardılacaq mə'lumatı seçin..."
#: ../../standalone/net_monitor:1
#, c-format
@@ -8553,7 +9247,7 @@ msgstr "alınan"
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
+msgstr "su xassəsini yalnız wheel qrupu üzvlərinə ya da hərkəsə açıq et"
#: ../../standalone/logdrake:1
#, c-format
@@ -8575,6 +9269,11 @@ msgstr "IP Silsiləsi Sonu:"
msgid "High"
msgstr "Yüksək"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Add a new printer to the system"
+msgstr "Sistemə yeni çapçı əlavə et"
+
#: ../../any.pm:1
#, c-format
msgid "NoVideo"
@@ -8590,7 +9289,7 @@ msgstr "burada avadanlığın izahatı yer alır"
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Çapçı Office/OpenOffice.org/GIMP proqramlarına əlavə edilir"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "Yerli Çapçılar"
@@ -8663,7 +9362,12 @@ msgstr "Küveyt"
#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
-msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
+msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "December"
+msgstr "Dekabr"
#: ../../standalone/harddrake2:1
#, c-format
@@ -8681,7 +9385,7 @@ msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
+"Bir xəta oldu, yalnız necə düzəldiləcəyi bilinmir.\n"
"Davam edin, riski sizə aitdir!"
#: ../../lang.pm:1
@@ -8702,7 +9406,7 @@ msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: "
-msgstr "Vaciblik:"
+msgstr "Əhəmiyyət:"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -8716,6 +9420,14 @@ msgid ""
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
+"Lexmark mürəkkəb fıskırtmalı çapçını və qurğuları istifadə edərək çap "
+"etməküçün Lexmark (http://www.lexmark.com/) tərəfindən tə'yin edilən "
+"sürücülərəehtiyacınız var. \"Sürücülər\" bağlantısına tıqlayın. Modelinizi "
+"və sonra əməliyyat sistemi olaraq \"Linux\"u seçin. Sürücülər RPM paketi "
+"vəya interaktiv qrafiki qurulumu olan qabıq skriptləridir. Bu quraşdırmanı "
+"qrafiki ara üzlə etməniz məcburi deyil. Lisenziya razılaşmasından sonra. "
+"birbaşa çıxın. Daha sonra \"lexmarkmain\" ilə çapçı başı hizalama "
+"səhifəsiniçap edin və baş hizalamasını bu proqram vasitəsiylə quraşdırın."
#: ../../standalone/drakperm:1
#, c-format
@@ -8766,16 +9478,16 @@ msgstr "Qrafiki Ara Üz"
msgid "Chad"
msgstr "Çad"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-
#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "Hindistan"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
+
#: ../../lang.pm:1
#, c-format
msgid "Slovakia"
@@ -8807,6 +9519,8 @@ msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""
+"Burada siz, birbaşa çapçıya göndərmək yerinə vəzifənin borulanacağı hər "
+"hansı bir əmr sətirini müəyyən edə bilərsiniz."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -8821,6 +9535,13 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"Çap sistemi (%s) sistemin açılışında avtomatik olaraq başladılmayacaq.\n"
+"\n"
+"Çap sistemi mümkünatı olan bir hücüm nöqtəsi olduğuna görə daha yüksək\n"
+"təhlükəsizlik səviyyəsinə ehtiyacı var və buna görə də avtomatik "
+"başladmanın.\n"
+"qeyri-fəallaşdırılılması daha uyğun yol olacaq.\n"
+"Çap sisteminin avtomatik başladılmasını yenə də istiyirsiniz?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9001,6 +9722,8 @@ msgid ""
"Expect is an extension to the Tcl scripting language that allows interactive "
"sessions without user intervention."
msgstr ""
+"Expect, Tcl skript dili üçün bir uzantıdır və istifadəçi müdaxiləsi olmadan "
+"interaktiv iclasları mümkün qılır."
#: ../../lang.pm:1
#, c-format
@@ -9010,7 +9733,7 @@ msgstr "Virgin Adaları (ABŞ)"
#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
-msgstr "Xətalı yedəkləmə faylı"
+msgstr "Xətalı ehtiyat faylı"
#: ../../standalone/drakgw:1
#, c-format
@@ -9029,6 +9752,7 @@ msgstr ""
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""
+"Çapçılarını işlətmək istədiyiniz qovşağın IP ünvanı və qapısını daxil edin."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9045,15 +9769,24 @@ msgstr ""
"duyar.\n"
"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz"
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr "Haiti"
+
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+msgid ""
+"Custom allows you to specify your own day and time. The other options use "
+"run-parts in /etc/crontab."
+msgstr ""
+"Xüsusi, sizə öz gün və vaxtınızı seçmə imkanı verir. Diqər seçimlər /etc/"
+"crontab faylındakı icra hissələrini işlədir."
#: ../../standalone/harddrake2:1
#, c-format
@@ -9161,7 +9894,7 @@ msgstr "Xırvatca"
#: ../../help.pm:1
#, c-format
msgid "Use existing partition"
-msgstr "Var olan bölməni işlət"
+msgstr "Mövcud bölməni işlət"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -9171,7 +9904,7 @@ msgstr "%s əksi ilə rabitə qurula bilmir"
#: ../../standalone/logdrake:1
#, c-format
msgid "/Help/_About..."
-msgstr "/Kömək/_Haqqında..."
+msgstr "/Yardım/_Haqqında..."
#: ../../standalone/drakbackup:1
#, c-format
@@ -9186,6 +9919,9 @@ msgid ""
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
+"Bir çəbəkə çapçısını quraşdırma üçün şəbəkəyə yetişmə səlahiyyətiniz var, "
+"yalnız hələ quraşdırılmayıb. Şəbəkə quraşdırması olmadan indi quraşdırmaq "
+"istədiyiniz çapçını işədə bilməyəcəksiniz. Necə davam etmək istəyirsiniz?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9236,40 +9972,33 @@ msgstr "Geri yüklə"
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
+"əgər bəli seçilidirsə, şəbəkə avadanlıqlarının nizamsız modda olduğunu yoxla."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This should be a comma-seperated list of local users or email addresses that "
-"you want the backup results sent to. You will need a functioning mail "
-"transfer agent setup on your system."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Init Message"
-msgstr "İnit İsmarıcı"
+msgstr "Init İsmarışı"
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cyprus"
+msgstr "Kipr"
+
#: ../../standalone/net_monitor:1
#, c-format
msgid "Connection complete."
msgstr "Bağlantı tamamlandı."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Kipr (Yunan və Türk) "
-
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
@@ -9290,6 +10019,11 @@ msgstr "Quraşdırma Sehirbazları"
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD-R / DVD-R"
+msgstr "CDROM / DVDROM"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "primary"
@@ -9301,7 +10035,7 @@ msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " SMB/Windows vericisi üstündə \"%s\", bölüşülmüş sahə \"%s\""
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This dialog is used to choose which services you wish to start at boot\n"
"time.\n"
@@ -9320,14 +10054,25 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"İndi, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
-"seçə bilərsiniz. Siçan bir maddənin üzərina gəldiyində o xidmətin rolunu "
-"açıqlayan\n"
-"kiçik bir baloncuq ortaya çıxacaqdır.\n"
+"Bu dialoq, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
+"seçmək üçündür.\n"
+"\n"
+"DrakX hazırkı qurulumda mövcud olan bütün xidmətləri siyahıda göstərəcək.\n"
+"Hər birini diqqətlə nəzərdən keçirin və açılış vaxtı ehtiyac hiss "
+"etmədiyiniz\n"
+"xidmətlərin qabağındakı seçimi silin.\n"
+"\n"
+" Siçan xidmətin üzərinə gələndə o xidmətin vəzifəsini başa salan mətn\n"
+"göstəriləcək. Yalnız, əgər xidmətin faydalı olub olmamasından əmin "
+"deyilsəniz\n"
+"ən yaxşısı onu olduğu kimi saxlamaq olacaq.\n"
"\n"
-"Əgər kompüterinizi bir verici olaraq istifadə edəcəksəniz bu addımda tam bir "
-"diqqət ayırmalısınız:\n"
-"mühtəməldir ki lazımi heç bir xidməti başlatmaq istəməzsiniz."
+"!! Əgər kompüteriniz verici olaraq istifadə ediləcəksə, bu addıma diqqət\n"
+"ayırmalısınız: istəmədiyiniz xidmətləri başlanğıcda başlatmaq "
+"istəməyəcəksiniz.\n"
+"Diqqətinizdə saxlayın ki, bə'zi xidmətlər fəal isə, bu verici üstündə "
+"təhlükəli ola bilər.\n"
+"!!"
#: ../../lang.pm:1
#, c-format
@@ -9337,7 +10082,7 @@ msgstr "Niu"
#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
-msgstr "Nəzərə Alma"
+msgstr "Keç"
#: ../../services.pm:1
#, c-format
@@ -9346,7 +10091,7 @@ msgid ""
"at boot time."
msgstr ""
"Açılış sırasında başlamaq üçün qurulmuş bütün şəbəkə axtar üzlərini "
-"fəallaşdırır ya da qapatır."
+"fəallaşdırır ya da bağlayır."
#: ../../standalone/harddrake2:1
#, c-format
@@ -9356,6 +10101,11 @@ msgid ""
"per second)"
msgstr "MHz olaraq CPU tezliyi"
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Mandrake Linux Printer Management Tool"
+msgstr "Mandrake Linux Çapçı İdarəsi Vasitəsi"
+
#: ../../pkgs.pm:1
#, c-format
msgid "important"
@@ -9366,8 +10116,28 @@ msgstr "vacib"
msgid "Total Progress"
msgstr "Ümumi İrəliləmə"
+# needs editing (Metin)
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file."
+msgstr ""
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file."
+
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
@@ -9386,42 +10156,32 @@ msgid ""
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
-"DrakX PCI SCSI adapterleri axtarmağa cəhd edəcək. Əgə DrakX SCSI\n"
-"taparsa və hansı sürücü işlədiləcəyini bilərsə, her şey öz özünə\n"
-"qurulacaq.\n"
-"\n"
-"\n"
-"Əgər sisteminizdə SCSI adapteri yoxsa, DrakXin tanımayacağı bir\n"
-"ISA SCSI və ya PCI SCSI adapteri var isə, sizə sisteminizdə SCSI\n"
-"adapteri olub olmadığı soruşulacaq.\n"
-"Əgər SCSI adapteriniz yox isə, \"Yox\" tıqlayın. Əgər \"Var\"ı "
-"tıqlayarsanız.\n"
-"qarşınıza sürücüləin siyahısı çıxacaq, oradan sizə uyanını seçərsiniz.\n"
+"DrakX əvvəlcə kompüterinizdə mövcud olan bütün IDE adapterleri \n"
+"axtarmağa cəhd edəcək. Eyni zamanda sisteminizdəki PCI SCSI kartları\n"
+"da axtarılacaq. Əgər SCSI kart tapılsa sürücüsü avtomatik qurulacaq\n"
"\n"
+"Bəzən DrakX sabit disklərinizi müvəffəqiyyətlə aşkar etməyə bilər.\n"
+"Bu vəziyyətdə avadanlığınızı əllə müəyyən etməli olacaqsınız.\n"
"\n"
-"Əgər əllə qurmağı səçərsəniz, o zaman DrakX sizə adapterin xüsusiyyətlərini\n"
-"soruşacaq. İmkan verin ki, DrakX sərbəstcə özü xüsusiyyətləri tapsın.\n"
-"Çoxunda bu işə yarayır.\n"
-"\n"
-"\n"
-"Əgər istəmirsəniz isə, o zaman adapter üçün xüsusiyyətləri özünüz\n"
-"göstərməlisiniz. Bunun üçün İstifadəçinin Əl Kitabçasına\n"
-"(başlıq 3, \"Avadanlığınız üçün kollektiv mə'lumat) bölməsinə\n"
-"baxın. Ya da avadanlığınızın əl kitabçasından və ya\n"
-"veb səhifəsindən (Əgər internetə çıxışınız var isə)\n"
-"ya da Microsoft Windowsdan (Əgər sisteminizdə qurulu isə)\n"
-"mə'lumat alın."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "İstifadəçilər"
+"Əgər PCI SCSI adapterini əllə müəyyən etsəniz DrakX sizdən onun qurğularını\n"
+"sazlamak istədiyinizi soruşacaq, sizə sisteminizdə SCSI\n"
+"adapteri olub olmadığı soruşulacaq. İmkan verin ki, DrakX sərbəstcə özü\n"
+"xüsusiyyətləri tapsın. Çox vaxt DrakX bu addımdan müvəffəqiyyətlə\n"
+"və xətasız çıxacaq.\n"
+"Əgər DrakX avadanlığa avtomatik olaraq hansı parametrlərin yollanacağını\n"
+"tapmaq üçün seçimləri qurğulaya bilməzsə sürücünü əllə siz quraşdırmaq\n"
+"məcburiyyətində qalacaqsınız."
#: ../../lang.pm:1
#, c-format
msgid "Aruba"
msgstr "Aruba"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Users"
+msgstr "İstifadəçilər"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
@@ -9442,6 +10202,11 @@ msgstr "Şifrələr uyğun gəlmir"
msgid "Examples for correct IPs:\n"
msgstr "Düzgün IP nümunələri:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please choose the media for backup."
+msgstr "Xahiş edirik, ehtiyat nüsxəsi çıxardılacaq mediyanı seçin."
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
@@ -9484,7 +10249,7 @@ msgstr "Çapçınızın hansı qapıya bağlı olduğunu seçin."
#: ../../standalone/livedrake:1
#, c-format
msgid "Change Cd-Rom"
-msgstr "Cd-Romu dəyişdir"
+msgstr "CD-Rom'u dəyişdirin"
#: ../../lang.pm:1
#, c-format
@@ -9500,6 +10265,7 @@ msgstr "Quraşdırma qurtardı, dəyişiklikləri tətbiq etmək istəyirsiniz ?
#, c-format
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
+"Artan/Diferensial Ehtiyatları İşlət (köhnə ehtiyatları qətiyyən əvəz etmə)"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -9522,6 +10288,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"QEYD: Çapçı modeli və çap sisteminə bağlı olaraq %d MB'a qədər əlavə "
+"tə'minatqurulacaq."
#: ../../standalone/drakconnect:1
#, c-format
@@ -9529,7 +10297,7 @@ msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-"Qurulu ara üzünüz yoxdure.\n"
+"Qurulu ara üzünüz yoxdur.\n"
"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
#: ../../keyboard.pm:1
@@ -9551,6 +10319,8 @@ msgid ""
"Enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
+"CD Yazıcı avadanlığınızın adını daxil edin\n"
+" mis: 0,1,0"
#: ../../standalone/draksec:1
#, c-format
@@ -9584,8 +10354,8 @@ msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Ana açılma bölməsi\n"
-" (MS-DOS açılışı üçün)\n"
+"Əsas olaraq açılan bölmə\n"
+" (MS-DOS açılışı üçün, lilo üçün deyil)\n"
#: ../../standalone/drakperm:1
#, c-format
@@ -9600,7 +10370,7 @@ msgstr "rəsmi seçin"
#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
-msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
+msgstr "Atəş divarı quruluşu tapıldı!"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -9635,6 +10405,11 @@ msgstr ""
"Disket müvəffəqiyyətlə yaradıldı.\n"
"İndi qurulumunuzu təkrarlaya bilərsiniz."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD-R/DVD-R to backup"
+msgstr "Ehtiyatlama üçün CD/DVDROM işlət"
+
#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of buttons the mouse has"
@@ -9648,12 +10423,12 @@ msgstr "Təkrarla"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup other files"
-msgstr "Diqər fayllarının ehtiyat nüsxəsini çıxart"
+msgstr "Diqər faylların ehtiyat nüsxəsini çıxart"
#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
-msgstr "Disket sürücü yoxdur"
+msgstr "Disket sürücüsü mövcud deyil"
#: ../../standalone/drakbackup:1
#, c-format
@@ -9722,7 +10497,7 @@ msgid "Screenshots will be available after install in %s"
msgstr "Ekran görüntüləri qurulumdan sonra %s mövqeyində olacaqdır"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose which one you want to resize in order to install your new\n"
@@ -9754,36 +10529,36 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Sürücünüzdə bir və ya daha çox Windows bölməsi tapıldı.\n"
-"Xahiş edirik Linuks Mandrakeni qurmaq üçün onlardan birini "
-"yenidənölçüləndirmək üzərə seçin.\n"
-"\n"
-"\n"
-"Xəbəriniz olsun, her bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows\n"
-"adı\"\"Həcm\".\n"
+"Sürücünüzdə bir və ya daha çox Microsoft bölməsi tapıldı.\n"
+"Xahiş edirik, Linuks Mandrakeni qurmaq üçün onlardan hansını\n"
+"yenidən ölçüləndirmək istədiyinizi seçin.\n"
"\n"
-"\"Linuks adı\" bu cür kodlanıb: \"sürücü növü\", \"sürücü nömrəsi\",\"bölmə "
-"nömrəsi\" (məsələn, \"hda\").\n"
+"Hər bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows adı\"\n"
+"\"Həcm\".\n"
"\n"
+"\"Linuks adı\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
+"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
"\n"
-"\"Sürücü növü\" sürücünüz IDE sürücü isə \"hd\"dirSCSI sürücü isə\n"
+"\"Sabit disk növü\" diskiniz IDE sürücüsü isə \"hd\"dir, SCSI sürücüsü isə\n"
"\"sd\"dir.\n"
"\n"
-"\n"
-"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
+"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. IDE \n"
"sürücülər üçün:\n"
"\n"
-"*\"a\" yəni \"birinci IDE idarəcisində ali sürücü\",\n"
+"* \"a\" mə'nası \"birinci IDE idarəçisində ali (master) sürücü\",\n"
+"\n"
+"* \"b\" mə'nası \"birinci IDE idarəçisində qul (slave) sürücü\",\n"
"\n"
-"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
+"* \"c\" mə'nası \"ikinci IDE idarəçisində ali (master) sürücü\",\n"
"\n"
-"*\"c\" yəni \"ikinci IDE idarəcisində ali sürücü\",\n"
+"* \"d\" mə'nası \"ikinci IDE idarəçisində qul (slave) sürücü\".\n"
"\n"
-"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
"\n"
+"SCSI sürücülərində, \"a\"nın mə'nası \"ən düşük SCSI ID\",\n"
+"\"b\"nin mə'nası \"ikinci ən düşük SCSI ID\"dir, vs...\n"
"\n"
-"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..."
+"\"Windows adı\" sabit diskinizin Windows altındakı adıdır (birinci\n"
+"disk ya da bölmənin adı \"C:\"dir, vs...)."
#: ../../lang.pm:1
#, c-format
@@ -9804,6 +10579,11 @@ msgstr ""
"\n"
"Ehtiyat Mənbələri: \n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "custom"
+msgstr "xüsusi"
+
#: ../../standalone/logdrake:1
#, c-format
msgid "Content of the file"
@@ -9860,6 +10640,7 @@ msgid "Theme name"
msgstr "Örtük adı"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Help"
msgstr "/_Yardım"
@@ -9869,6 +10650,11 @@ msgstr "/_Yardım"
msgid "Choosing an arbitrary driver"
msgstr "Səbəbsiz bir sürücü seçilir"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr "Kuku Adaları"
+
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
@@ -9883,11 +10669,6 @@ msgstr ""
msgid "the width of the progress bar"
msgstr "İrəliləmə çubuğunun eni"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Kuku Adaları"
-
#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
@@ -9905,20 +10686,19 @@ msgstr "Qurulu olan yazı növlərini seçmə"
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../interactive/http.pm:1
-#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#: ../../standalone/drakfont:1 ../../standalone/drakgw:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
+#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/drakperm:1
+#: ../../standalone/draksec:1 ../../standalone/logdrake:1
+#: ../../standalone/mousedrake:1 ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
-msgstr "Ləğv et"
+msgstr "Ləğv Et"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -9960,31 +10740,15 @@ msgstr "Çapçını çıxart"
msgid "View Last Log"
msgstr "Son Qeydi Göstər"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"XƏBƏRDARLIQ!\n"
-"\n"
-"DrakX indi Windows disk bölmənizin böyüklüyünü dəyişdirəcək.\n"
-"Diqqətli olun, bu təhlükəli ola bilər. Hələ də etmədinizsə qurulumdan\n"
-"çıxın və Windows altında scandisk (lazım gələrsə defrag da) proqramını\n"
-"icra edin. Eyni zamanda mə'lumatlarınızın da ehtiyat nüsxəsini alın.\n"
-"Ardından quruluma davam edin.\n"
-"Hazır olanda, Oldu düyməsinə basın."
-
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "İnternetin hansı xidmətlərə bağlana bilməsini istəyirsiniz?"
+
+#: ../../standalone/printerdrake:1
+#, c-format
+msgid "Connection Type"
+msgstr "Bağlantı Növü:"
#: ../../standalone/logdrake:1
#, c-format
@@ -10054,11 +10818,6 @@ msgstr "Televiziya kanalları axtarılarkən xəta yarandı"
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finish)"
-msgstr "Saami (isveç/fin)"
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Not installed"
@@ -10132,7 +10891,7 @@ msgid ""
msgstr ""
"\n"
"Bu, ikili açılış üçün xüsusi\n"
-"Bootstrap-dır.\n"
+"Bootstrap'dır.\n"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -10140,8 +10899,8 @@ msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-"Xahiş addımın təkrarlanmasını yoxsa əllə yenidən seçilməsini hər addım üçün "
-"ayrı ayrı seçin"
+"Xahiş edirik, addımın təkrarlanmasını yoxsa əllə yenidən seçilməsini hər "
+"addım üçün ayrı ayrı seçin"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -10163,24 +10922,15 @@ msgid "Reports check result to tty"
msgstr "Yoxlama nəticəsini tty'yə raportla"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "You must enter a device or file name!"
-msgstr "Çap Edici avadanlığı URI"
+msgstr "Avadanlıq ya da fayl adı daxil etməlisiniz!"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "/_Quit"
msgstr "/Çı_x"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
@@ -10225,7 +10975,7 @@ msgstr "dərləmə vasitələrinə yetişmə"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to restore..."
-msgstr "Xahiş edirik ehtiyat nüsxəsi qeri yüklənəcək mə'lumatı seçin..."
+msgstr "Xahiş edirik, ehtiyat nüsxəsi geri yüklənəcək mə'lumatı seçin..."
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -10260,7 +11010,7 @@ msgstr "Paketləri istərkən bir xəta oldu:"
#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (BDS)"
-msgstr "Bulqarca (BDS)"
+msgstr "Bulqar dili (BDS)"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -10284,6 +11034,9 @@ msgid ""
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
+"Xahiş edirik, 10-aralığının düzəltmək istədiyiniz ilk rəqəmini seçin,\n"
+"ya da davam etmək üçün Enter düyməsinə basın.\n"
+"Seçiminiz? "
#: ../../standalone/draksplash:1
#, c-format
@@ -10311,25 +11064,20 @@ msgid "Removable media automounting"
msgstr "Sökülə bilən avadanlıqların avtomatik bağlanması"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Enter the directory to save:"
-msgstr "Xahiş edirik siçanınızı seçin"
+msgstr "Qeyd ediləcək cərgəni daxil edin:"
#: ../../services.pm:1
#, c-format
msgid "Printing"
msgstr "Çap Etmə"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unkown driver"
-msgstr "Namə'lum sürücü"
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "Sisteminizə birbaşa bağlı olan heç bir çapçı aşkar ediləmyib"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -10354,7 +11102,7 @@ msgstr "Fdisk istifadə et"
#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
-msgstr "TƏKƏRİ OYNADIN!"
+msgstr "ÇƏRXİ OYNADIN!"
#: ../../standalone/net_monitor:1
#, c-format
@@ -10399,6 +11147,38 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
+"Təbrik edirik! Qurulum başa çattı və GNU/Linuks sisteminiz indi\n"
+"istifadəyə hazırdır. Sadəcə olaraq sisteminizi yenidən başlatmaq üçün\n"
+"\"%s\" düyməsinə basın. Kompüteriniz başlarkən avadanlıq yoxlamasından\n"
+"sonra görəcəyiniz açılış yükləyici menyusunda sizə başlatmaq\n"
+"istədiyiniz əməliyyat sistemlərinin siyahısı göstəriləcək.\n"
+"\n"
+"\"%s\" düyməsi seçimə bağlı olaraq aşağıdakı iki seçimi göstərir:\n"
+"\n"
+" * \"%s\": indi etdiyiniz quruluma bənzər və operatora (kompüterin\n"
+"yanında oturana) ehtiyaca qalmadan qurulumu etmək üçün avtomatik\n"
+"qurulum disketi yaratma imkanı verir.\n"
+"\n"
+" Düyməni basdıqdan sonra iki fərqli seçim görəcəksiniz:\n"
+"\n"
+" * \"%s\". Qismən avtomatikləşdirilmiş qurulum. Yalnız disk bölmələmə\n"
+"addımı interaktiv olacaq və sizin istəklərinizə qulaq asacaq.\n"
+"\n"
+" * \"%s\". Tamamilə avtomatikləşdirilmiş qurulum: sabit disk tamamilə\n"
+"yenidən yazılacaq, bütün mə'lumat yox olacaq.\n"
+"\n"
+" Bu xassə, əsasən birdən çox eyni sistemin qurulmasında çox əlverişlidir.\n"
+"Daha çox mə'lumat üçün saytımızın Auto install qisminə baxın.\n"
+"\n"
+" * \"%s\"(*): bu, qurulum sırasında seçilən paketlərin siyahısını disketə\n"
+"qeyd edər. Bu disketi başqa qurulum ilə işlətmək üçün, disketi daxil edin "
+"və\n"
+"quruluma başlayın. Promptda, [F1] düyməsinə basın və >>linux\n"
+"defcfg=\"floppy\" << yazın.\n"
+"\n"
+"(*) Bunun üçün FAT ilə şəkilləndirilmiş disketə ehtiyacınız olacaq. (GNU/"
+"Linuks\n"
+"altında bunu yaratmaq üçün \"mformat a:\" əmrini verin)"
#: ../../lang.pm:1
#, c-format
@@ -10418,7 +11198,7 @@ msgstr "Uzaq çapçı quraşdırması"
#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "An online platform to respond to enterprise support needs."
-msgstr ""
+msgstr "Müəssisə dəstək ehtiyaclarına cavab vermək üçün onlayn platform."
#: ../../network/network.pm:1
#, c-format
@@ -10435,12 +11215,19 @@ msgstr "Oriya"
msgid "Add a new rule at the end"
msgstr "Sonuna yeni qayda əlavə et"
+#: ../../standalone/drakboot:1
+#, c-format
+msgid "LiLo and Bootsplash themes installation successful"
+msgstr "LiLo və Bootsplash örtük qurulumu müvəffəqiyyətlə başa çatdı"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
+"Eyni zamanda uzaq sistemlərdəki çapçıların bu kompüterdə avtomatik olaraq "
+"mövcud olmasına qərar verə bilərsiniz."
#: ../../modules/interactive.pm:1
#, c-format
@@ -10456,13 +11243,18 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
-msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
+msgstr "Bölmə cədvəlini qeyd etmədən çıxılsın?"
#: ../../mouse.pm:1
#, c-format
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "On Hard Drive"