package pkgs; # $Id$ use strict; use URPM; use URPM::Resolve; use URPM::Signature; use common; use install_any; use run_program; use detect_devices; use log; use fs; use fs::loopback; use c; our %preferred = map { $_ => undef } qw(lilo perl-base gstreamer-oss openjade ctags glibc curl sane-backends postfix mdkkdm gcc gcc-cpp gcc-c++ proftpd ghostscript-X vim-minimal kernel db1 db2 libxpm4 zlib1 libncurses5 harddrake cups apache); #- lower bound on the left ( aka 90 means [90-100[ ) our %compssListDesc = ( 5 => N_("must have"), 4 => N_("important"), 3 => N_("very nice"), 2 => N_("nice"), 1 => N_("maybe"), ); #- constant for small transaction. our $limitMinTrans = 13; #- package to ignore, typically in Application CD. OBSOLETED ? my %ignoreBadPkg = ( 'civctp-demo' => 1, 'eus-demo' => 1, 'myth2-demo' => 1, 'heretic2-demo' => 1, 'heroes3-demo' => 1, 'rt2-demo' => 1, ); sub packageMedium { my ($packages, $p) = @_; $p or die "invalid package from\n" . backtrace(); foreach (values %{$packages->{mediums}}) { defined $_->{start} && defined $_->{end} or next; $p->id >= $_->{start} && $p->id <= $_->{end} and return $_; } return {}; } sub cleanHeaders() { rm_rf("$::prefix/tmp/headers") if -e "$::prefix/tmp/headers"; } #- get all headers from an hdlist file. sub extractHeaders { my ($pkgs, $media) = @_; my %medium2pkgs; cleanHeaders(); foreach (@$pkgs) { foreach my $medium (values %$media) { $_->id >= $medium->{start} && $_->id <= $medium->{end} or next; push @{$medium2pkgs{$medium->{medium}} ||= []}, $_; } } foreach (keys %medium2pkgs) { my $medium = $media->{$_}; eval { require packdrake; my $packer = new packdrake("/tmp/$medium->{hdlist}", quiet => 1); $packer->extract_archive("$::prefix/tmp/headers", map { $_->header_filename } @{$medium2pkgs{$_}}); }; } foreach (@$pkgs) { my $f = "$::prefix/tmp/headers/" . $_->header_filename; $_->update_header($f) or log::l("unable to open header file $f"), next; log::l("read header file $f"); } } #- TODO BEFORE TODO #- size and correction size functions for packages. my $B = 1.20873; my $C = 4.98663; #- does not 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; my %skip; #- take care of packages selected... foreach (@{$packages->{depslist}}) { if ($_->flag_selected) { $size += $_->size; #- if a package is obsoleted with the same name it should #- have been selected, so a selected new package obsoletes #- all the old package. exists $skip{$_->name} and next; $skip{$_->name} = undef; $size -= $packages->{sizes}{$_->name}; } } #- but remove size of package being obsoleted or removed. foreach (keys %{$packages->{state}{rejected}}) { my ($name) = /(.*)-[^\-]*-[^\-]*$/ or next; exists $skip{$name} and next; $skip{$name} = undef; $size -= $packages->{sizes}{$name}; } $size; } 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; } } sub packagesProviding { my ($packages, $name) = @_; map { $packages->{depslist}[$_] } keys %{$packages->{provides}{$name} || {}}; } #- 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) = @_; #- search package with given name and compatible with current architecture. #- take the best one found (most up-to-date). my @packages; foreach my $pkg (packagesProviding($packages, $name)) { $pkg->is_arch_compat or next; $pkg->name eq $name or next; push @packages, $pkg; } my $best; foreach (@packages) { if ($best && $best != $_) { $_->compare_pkg($best) > 0 and $best = $_; } else { $best = $_; } } $best or log::l("unknown package `$name'"); $best; } sub analyse_kernel_name { my $kernels = join('|', map { "-$_" } '(p3|i586|i686)-(up|smp)-(1GB|4GB|64GB)', qw(enterprise secure smp multimedia multimedia-smp xbox), ); my @l = $_[0] =~ /kernel[^\-]*($kernels)?(-([^\-]+))?$/ or return; $l[0], $l[-1]; } sub packages2kernels { my ($packages) = @_; map { if (my ($ext, $version) = analyse_kernel_name($_->name)) { { pkg => $_, ext => $ext, version => $version }; } else { log::l("ERROR: unknown package " . $_->name . " providing kernel"); (); } } packagesProviding($packages, 'kernel'); } sub bestKernelPackage { my ($packages) = @_; my @kernels = packages2kernels($packages) or internal_error('no kernel available'); my ($version_BOOT) = c::kernel_version() =~ /^(\d+\.\d+)/; if (my @l = grep { $_->{version} =~ /\Q$version_BOOT/ } @kernels) { #- favour versions corresponding to current BOOT version @kernels = @l; } my @preferred_exts = $::build_globetrotter ? '' : is_xbox() ? '-xbox' : detect_devices::is_i586() ? '-i586-up-1GB' : !detect_devices::has_cpu_flag('pae') ? ('-i686-up-4GB', '-i586-up-1GB') : detect_devices::hasSMP() ? '-smp' : ''; foreach my $prefered_ext (@preferred_exts, '') { if (my @l = grep { $_->{ext} eq $prefered_ext } @kernels) { @kernels = @l; } } log::l("bestKernelPackage (" . join(':', @preferred_exts) . "): " . join(' ', map { $_->{pkg}->name } @kernels) . (@kernels > 1 ? ' (choosing the first)' : '')); $preferred{'kernel-source-' . $kernels[0]{version}} = undef; $kernels[0]{pkg}; } sub packagesOfMedium { my ($packages, $medium) = @_; defined $medium->{start} && defined $medium->{end} ? @{$packages->{depslist}}[$medium->{start} .. $medium->{end}] : (); } sub packagesToInstall { my ($packages) = @_; my @packages; foreach (values %{$packages->{mediums}}) { $_->selected or next; log::l("examining packagesToInstall of medium $_->{descr}"); push @packages, grep { $_->flag_selected } packagesOfMedium($packages, $_); } log::l("found " . scalar(@packages) . " packages to install"); @packages; } sub allMediums { my ($packages) = @_; sort { #- put supplementary media at the end my @x = ($a, $b); foreach (@x) { install_medium::by_id($_, $packages)->is_suppl and $_ += 100 } $x[0] <=> $x[1]; } keys %{$packages->{mediums}}; } sub packageRequest { my ($packages, $pkg) = @_; #- check if the same or better version is installed, #- do not select in such case. $pkg && ($pkg->flag_upgrade || !$pkg->flag_installed) or return; #- check for medium selection, if the medium has not been #- selected, the package cannot be selected. foreach (values %{$packages->{mediums}}) { !$_->selected && $pkg->id >= $_->{start} && $pkg->id <= $_->{end} and return; } return { $pkg->id => 1 }; } sub packageCallbackChoices { my ($urpm, $_db, $state, $choices) = @_; if (my $prefer = find { $_->arch ne 'src' && exists $preferred{$_->name} } @$choices) { $prefer; } else { my @l = grep { #- or even if a package requires a specific locales which #- is already selected. find { /locales-/ && do { my $p = packageByName($urpm, $_); $p && $p->flag_available; }; } $_->requires_nosense; } @$choices; if (!@l) { push @l, $choices->[0]; log::l("packageCallbackChoices: default choice from ", join(",", map { $urpm->{depslist}[$_]->name } keys %{$state->{selected}}), " in ", join(",", map { $_->name } @$choices)); } #-log::l("packageCallbackChoices: chosen " . join(" ", map { $_->name } @l)); @l; } } #- selection, unselection of package. sub selectPackage { my ($packages, $pkg, $b_base, $o_otherOnly) = @_; #- select package and dependancies, o_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) my $state = $packages->{state} ||= {}; my @l = $packages->resolve_requested($packages->{rpmdb}, $state, packageRequest($packages, $pkg) || {}, callback_choices => \&packageCallbackChoices); if ($b_base || $o_otherOnly) { foreach (@l) { $b_base and $_->set_flag_base; $o_otherOnly and $o_otherOnly->{$_->id} = $_->flag_requested; } $o_otherOnly and $packages->disable_selected($packages->{rpmdb}, $state, @l); } 1; } sub unselectPackage($$;$) { my ($packages, $pkg, $o_otherOnly) = @_; #- base packages are not unselectable, #- and already unselected package are no more unselectable. $pkg->flag_base and return; $pkg->flag_selected or return; my $state = $packages->{state} ||= {}; log::l("removing selection on package " . $pkg->fullname); my @l = $packages->disable_selected($packages->{rpmdb}, $state, $pkg); log::l(" removed selection on package " . $pkg->fullname . "gives " . join(',', map { scalar $_->fullname } @l)); if ($o_otherOnly) { foreach (@l) { $o_otherOnly->{$_->id} = undef; } log::l(" reselecting removed selection..."); $packages->resolve_requested($packages->{rpmdb}, $state, $o_otherOnly, callback_choices => \&packageCallbackChoices); log::l(" done"); } 1; } sub unselectAllPackages($) { my ($packages) = @_; my %keep_selected; log::l("unselecting all packages..."); foreach (@{$packages->{depslist}}) { if ($_->flag_base || $_->flag_installed && $_->flag_selected) { #- keep track of packages that should be kept selected. $keep_selected{$_->id} = $_; } else { #- deselect all packages except base or packages that need to be upgraded. $_->set_flag_required(0); $_->set_flag_requested(0); } } #- clean state, in order to start with a brand new set... $packages->{state} = {}; $packages->resolve_requested($packages->{rpmdb}, $packages->{state}, \%keep_selected, callback_choices => \&packageCallbackChoices); } sub urpmidir() { my $v = "$::prefix/var/lib/urpmi"; -l $v && !-e _ and unlink $v and mkdir $v, 0755; #- dangling symlink -w $v ? $v : '/tmp'; } sub psUpdateHdlistsDeps { my ($packages) = @_; my $need_copy = 0; my $urpmidir = urpmidir(); #- check if current configuration is still up-to-date and do not need to be updated. foreach (values %{$packages->{mediums}}) { $_->selected || $_->ignored or next; my $hdlistf = "$urpmidir/hdlist.$_->{fakemedium}.cz" . ($_->{hdlist} =~ /\.cz2/ && "2"); my $synthesisf = "$urpmidir/synthesis.hdlist.$_->{fakemedium}.cz" . ($_->{hdlist} =~ /\.cz2/ && "2"); if (-s $hdlistf != $_->{hdlist_size}) { install_any::getAndSaveFile("media/media_info/$_->{hdlist}", $hdlistf) or die "no $_->{hdlist} found"; symlinkf $hdlistf, "/tmp/$_->{hdlist}"; ++$need_copy; chown 0, 0, $hdlistf; } if (-s $synthesisf != $_->{synthesis_hdlist_size}) { install_any::getAndSaveFile("media/media_info/synthesis.$_->{hdlist}", $synthesisf); if (-s $synthesisf > 0) { chown 0, 0, $synthesisf } else { unlink $synthesisf } } } if ($need_copy) { #- this is necessary for urpmi. install_any::getAndSaveFile("media/media_info/$_", "$urpmidir/$_") && chown 0, 0, "$urpmidir/$_" foreach qw(rpmsrate); } } sub psUsingHdlists { my ($o, $method, $o_hdlistsprefix, $o_packages, $o_initialmedium, $o_callback) = @_; my $is_ftp = $o_hdlistsprefix =~ /^ftp:/; my $listf = install_any::getFile($o_hdlistsprefix && !$is_ftp ? "$o_hdlistsprefix/media/media_info/hdlists" : 'media/media_info/hdlists') or die "no hdlists found"; my ($suppl_CDs, $deselectionAllowed) = ($o->{supplmedia} || 0, $o->{askmedia} || 0); if (!$o_packages) { $o_packages = new URPM; #- add additional fields used by DrakX. @$o_packages{qw(count mediums)} = (0, {}); } #- parse hdlists file. my $medium_name = $o_initialmedium || 1; my (@hdlists, %mediumsize); foreach (<$listf>) { chomp; s/\s*#.*$//; /^\s*$/ and next; #- we'll ask afterwards for supplementary CDs, if the hdlists file contains #- a line that begins with "suppl" if (/^suppl/) { $suppl_CDs = 1; next } #- if the hdlists contains a line "askmedia", deletion of media found #- in this hdlist is allowed if (/^askmedia/) { $deselectionAllowed = 1; next } my $cdsuppl = index($medium_name, 's') >= 0; my ($noauto, $hdlist, $rpmsdir, $descr, $size) = m/^\s*(noauto:)?(hdlist\S*\.cz2?)\s+(\S+)\s*([^(]*)(\(.+\))?$/ or die qq(invalid hdlist description "$_" in hdlists file); $descr =~ s/\s+$//; push @hdlists, [ $hdlist, $medium_name, $rpmsdir, $descr, !$noauto, #- hdlist path, suppl CDs are mounted on /mnt/cdrom : $o_hdlistsprefix ? ($is_ftp ? "media/media_info/$hdlist" : "$o_hdlistsprefix/media/media_info/$hdlist") : undef, ]; if ($size) { ($mediumsize{$hdlist}) = $size =~ /(\d+)/; #- XXX assume Mo } else { $mediumsize{$hdlist} = 0; } $cdsuppl ? ($medium_name = ($medium_name + 1) . 's') : ++$medium_name; } my $copy_rpms_on_disk = 0; if ($deselectionAllowed && !defined $o_initialmedium) { (my $finalhdlists, $copy_rpms_on_disk) = $o->deselectFoundMedia(\@hdlists, \%mediumsize); @hdlists = @$finalhdlists; } foreach my $h (@hdlists) { my $medium = psUsingHdlist($method, $o_packages, @$h); $o_callback and $o_callback->($medium, $o_hdlistsprefix, $method); } log::l("psUsingHdlists read " . int(@{$o_packages->{depslist}}) . " headers on " . int(keys %{$o_packages->{mediums}}) . " hdlists"); return $o_packages, $suppl_CDs, $copy_rpms_on_disk; } sub psUsingHdlist { my ($method, $packages, $hdlist, $medium_name, $rpmsdir, $descr, $selected, $o_fhdlist, $o_pubkey, $o_nocopy) = @_; my $fakemedium = "$descr ($method$medium_name)"; my $urpmidir = urpmidir(); log::l("trying to read $hdlist for medium $medium_name"); my $m = install_medium->new( hdlist => $hdlist, method => $method, medium => $medium_name, rpmsdir => $rpmsdir, #- where is RPMS directory. descr => $descr, fakemedium => $fakemedium, selected => $selected, #- default value is only CD1, it is really the minimal. ignored => !$selected, #- keep track of ignored medium by DrakX. pubkey => [], #- all pubkey blocks here ); #- copy hdlist file directly to urpmi directory, this will be used #- for getting header of package during installation or after by urpmi. my $newf = "$urpmidir/hdlist.$fakemedium.cz" . ($hdlist =~ /\.cz2/ && "2"); unless ($o_nocopy) { my $w_wait; $w_wait = $::o->wait_message(N("Please wait"), N("Downloading file %s...", $hdlist)) if $method =~ /^(?:ftp|http|nfs)$/; -e $newf and do { unlink $newf or die "cannot remove $newf: $!" }; install_any::getAndSaveFile($o_fhdlist || "media/media_info/$hdlist", $newf) or do { unlink $newf; die "no $hdlist found" }; $m->{hdlist_size} = -s $newf; #- keep track of size for post-check. symlinkf $newf, "/tmp/$hdlist"; undef $w_wait; } my $newsf = "$urpmidir/synthesis.hdlist.$fakemedium.cz" . ($hdlist =~ /\.cz2/ && "2"); #- if $o_fhdlist is a filehandle, it's preferable not to try to find the associated synthesis. if (!$o_nocopy && !ref $o_fhdlist) { #- copy existing synthesis file too. my $synth; if ($o_fhdlist) { $synth = $o_fhdlist; $synth =~ s/hdlist/synthesis.hdlist/ or $synth = undef; } $synth ||= "media/media_info/synthesis.$hdlist"; install_any::getAndSaveFile($synth, $newsf); $m->{synthesis_hdlist_size} = -s $newsf; #- keep track of size for post-check. -s $newsf > 0 or unlink $newsf; } chown 0, 0, $newf, $newsf; #- get all keys corresponding in the right pubkey file, #- they will be added in rpmdb later if not found. if (!$o_fhdlist || $o_pubkey) { $m->{pubkey} = $o_pubkey; unless ($m->{pubkey}) { my $pubkey = install_any::getFile("media/media_info/pubkey" . ($hdlist =~ /hdlist(\S*)\.cz2?/ && $1)); $m->{pubkey} = [ $packages->parse_armored_file($pubkey) ]; } } #- integrate medium in media list, only here to avoid download error (update) to be propagated. $packages->{mediums}{$medium_name} = $m; #- parse synthesis (if available) of directly hdlist (with packing). if ($m->ignored) { log::l("ignoring packages in $hdlist"); } else { my $nb_suppl_pkg_skipped = 0; my $callback = sub { my (undef, $p) = @_; our %uniq_pkg_seen; if ($uniq_pkg_seen{$p->fullname}++) { log::l("skipping " . scalar $p->fullname); ++$nb_suppl_pkg_skipped; return 0; } else { return 1; } }; if (-s $newsf) { ($m->{start}, $m->{end}) = $packages->parse_synthesis($newsf, callback => $callback); } elsif (-s $newf) { ($m->{start}, $m->{end}) = $packages->parse_hdlist($newf, callback => $callback); } else { delete $packages->{mediums}{$medium_name}; unlink $newf; $o_fhdlist or unlink $newsf; die "fatal: no hdlist nor synthesis to read for $fakemedium"; } $m->{start} > $m->{end} and do { delete $packages->{mediums}{$medium_name}; unlink $newf; $o_fhdlist or unlink $newsf; die "fatal: nothing read in hdlist or synthesis for $fakemedium" }; log::l("read " . ($m->{end} - $m->{start} + 1) . " packages in $hdlist, $nb_suppl_pkg_skipped skipped"); } $m; } sub read_rpmsrate_raw { my ($f) = @_; my $line_nb = 0; my $fatal_error; my (%flags, %rates, @need_to_copy); my (@l); local $_; 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[-1][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,) {} push @m, $flag; push @l2, [ length $indent, [ @m ] ]; $indent .= $t; } if ($data) { # has packages on same line my ($rates, $flags) = partition { /^\d$/ } @m; my ($rate) = @$rates or die sprintf qq(missing rate for "%s" at line %d (flags are %s)\n), $data, $line_nb, join('&&', @m); foreach my $name (split ' ', $data) { if (member('INSTALL', @$flags)) { push @need_to_copy, $name if !member('NOCOPY', @$flags); next; #- do not need to put INSTALL flag for a package. } if (member('PRINTER', @$flags)) { push @need_to_copy, $name; } my @new_flags = @$flags; if (my $previous = $flags{$name}) { my @common = intersection($flags, $previous); my @diff1 = difference2($flags, \@common); my @diff2 = difference2($previous, \@common); if (!@diff1 || !@diff2) { @new_flags = @common; } elsif (@diff1 == 1 && @diff2 == 1) { @new_flags = (@common, join('||', $diff1[0], $diff2[0])); } else { log::l("can not handle complicate flags for packages appearing twice ($name)"); $fatal_error++; } log::l("package $name appearing twice with different rates ($rate != " . $rates{$name} . ")") if $rate != $rates{$name}; } $rates{$name} = $rate; $flags{$name} = \@new_flags; } push @l, @l2; } else { push @l, [ $l2[0][0], $l2[-1][1] ]; } } $fatal_error and die "$fatal_error fatal errors in rpmsrate"; \%rates, \%flags, \@need_to_copy; } sub read_rpmsrate { my ($packages, $rpmsrate_flags_chosen, $f) = @_; my ($rates, $flags, $need_to_copy) = read_rpmsrate_raw($f); foreach (keys %$flags) { my $p = packageByName($packages, $_) or next; my @flags = (@{$flags->{$_}}, map { if_(/locales-(.*)/, qq(LOCALES"$1")) } $p->requires_nosense); @flags = map { my ($user_flags, $known_flags) = partition { /^!?CAT_/ } split('\|\|', $_); my $ok = find { my $inv = s/^!//; $inv xor do { if (my ($p) = /^HW"(.*)"/) { detect_devices::matching_desc__regexp($p); } elsif (($p) = /^HW_CAT"(.*)"/) { modules::probe_category($p); } elsif (($p) = /^DRIVER"(.*)"/) { detect_devices::matching_driver__regexp($p); } elsif (($p) = /^TYPE"(.*)"/) { detect_devices::matching_type($p); } else { $rpmsrate_flags_chosen->{$_}; } }; } @$known_flags; $ok ? 'TRUE' : @$user_flags ? join('||', @$user_flags) : 'FALSE'; } @flags; $p->set_rate($rates->{$_}); $p->set_rflags(member('FALSE', @flags) ? 'FALSE' : @flags); } push @{$packages->{needToCopy} ||= []}, @$need_to_copy; } sub readCompssUsers { my ($file) = @_; my $f = -e $file ? install_any::getLocalFile($file) : install_any::getFile($file) or do { log::l("can not find $file: $!"); return undef, undef }; my ($compssUsers, $gtk_display_compssUsers) = eval join('', <$f>); if ($@) { log::l("ERROR: bad $file: $@"); } else { log::l("compssUsers.pl got: ", join(', ', map { qq("$_->{path}|$_->{label}") } @$compssUsers)); } ($compssUsers, $gtk_display_compssUsers); } sub saveCompssUsers { my ($packages, $compssUsers) = @_; my $flat; foreach (@$compssUsers) { my %fl = map { ("CAT_$_" => 1) } @{$_->{flags}}; $flat .= "$_->{label} [icon=xxx] [path=$_->{path}]\n"; foreach my $p (@{$packages->{depslist}}) { my @flags = $p->rflags; if ($p->rate && any { any { !/^!/ && $fl{$_} } split('\|\|') } @flags) { $flat .= sprintf "\t%d %s\n", $p->rate, $p->name; } } } my $urpmidir = urpmidir(); output "$urpmidir/compssUsers.flat", $flat; } sub setSelectedFromCompssList { my ($packages, $rpmsrate_flags_chosen, $min_level, $max_size) = @_; $rpmsrate_flags_chosen->{TRUE} = 1; #- ensure TRUE is set my $nb = selectedSize($packages); foreach my $p (sort { $b->rate <=> $a->rate } @{$packages->{depslist}}) { my @flags = $p->rflags; next if !$p->rate || $p->rate < $min_level || any { !any { /^!(.*)/ ? !$rpmsrate_flags_chosen->{$1} : $rpmsrate_flags_chosen->{$_} } split('\|\|') } @flags; #- determine the packages that will be selected when #- selecting $p. the packages are not selected. my $state = $packages->{state} ||= {}; my @l = $packages->resolve_requested($packages->{rpmdb}, $state, packageRequest($packages, $p) || {}, callback_choices => \&packageCallbackChoices); #- this enable an incremental total size. my $old_nb = $nb; foreach (@l) { $nb += $_->size; } if ($max_size && $nb > $max_size) { $nb = $old_nb; $min_level = $p->rate; $packages->disable_selected($packages->{rpmdb}, $state, @l); last; } } my @flags = map_each { if_($::b, $::a) } %$rpmsrate_flags_chosen; log::l("setSelectedFromCompssList: reached size ", formatXiB($nb), ", up to indice $min_level (less than ", formatXiB($max_size), ") for flags ", join(' ', sort @flags)); log::l("setSelectedFromCompssList: ", join(" ", sort map { $_->name } grep { $_->flag_selected } @{$packages->{depslist}})); $min_level; } #- useful to know the size it would take for a given min_level/max_size #- just save the selected packages, call setSelectedFromCompssList, and restore the selected packages sub saveSelected { my ($packages) = @_; my $state = delete $packages->{state}; my @l = @{$packages->{depslist}}; my @flags = map { ($_->flag_requested && 1) + ($_->flag_required && 2) + ($_->flag_upgrade && 4) } @l; [ $packages, $state, \@l, \@flags ]; } sub restoreSelected { my ($packages, $state, $l, $flags) = @{$_[0]}; $packages->{state} = $state; mapn { my ($pkg, $flag) = @_; $pkg->set_flag_requested($flag & 1); $pkg->set_flag_required($flag & 2); $pkg->set_flag_upgrade($flag & 4); } $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('\|\|'); } @l; } my %or_ify_cache; my $or_ify_cached = sub { $or_ify_cache{$_[0]} ||= join("\t", or_ify(split("\t", $_[0]))); }; sub or_clean { my ($flags) = @_; my @l = split("\t", $flags); @l = map { [ sort split('&&') ] } @l; 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, $slowpart_counter); log::l("pkgs::computeGroupSize"); my $time = time(); my %pkgs_with_same_rflags; foreach (@{$packages->{depslist}}) { next if !$_->rate || $_->rate < $min_level || $_->flag_available; my $flags = join("\t", $_->rflags); next if $flags eq 'FALSE'; push @{$pkgs_with_same_rflags{$flags}}, $_; } foreach my $raw_flags (keys %pkgs_with_same_rflags) { my $flags = $or_ify_cached->($raw_flags); my @pkgs = @{$pkgs_with_same_rflags{$raw_flags}}; #- determine the packages that will be selected when selecting $p. #- make a fast selection (but potentially erroneous). #- installed and upgrade flags must have been computed (see compute_installed_flags). my %newSelection; my @l2 = map { $_->id } @pkgs; my $id; while (defined($id = shift @l2)) { exists $newSelection{$id} and next; $newSelection{$id} = undef; my $pkg = $packages->{depslist}[$id]; foreach ($pkg->requires_nosense) { my @choices = keys %{$packages->{provides}{$_} || {}}; if (@choices <= 1) { push @l2, @choices; } elsif (! find { exists $newSelection{$_} } @choices) { my ($candidate_id, $prefer_id); foreach (@choices) { ++$slowpart_counter; my $ppkg = $packages->{depslist}[$_] or next; $ppkg->flag_available and $prefer_id = $candidate_id = undef, last; exists $preferred{$ppkg->name} and $prefer_id = $_; $ppkg->name =~ /kernel-\d/ and $prefer_id ||= $_; foreach my $l ($ppkg->requires_nosense) { /locales-/ or next; my $pppkg = packageByName($packages, $l) or next; $pppkg->flag_available and $prefer_id ||= $_; } $candidate_id = $_; } if (defined $prefer_id || defined $candidate_id) { push @l2, defined $prefer_id ? $prefer_id : $candidate_id; } } } } foreach (keys %newSelection) { my $p = $packages->{depslist}[$_] or next; next if $p->flag_selected; #- always installed (accounted in system_size) my $s = $group{$p->name} || $or_ify_cached->(join("\t", $p->rflags)); my $m = "$flags\t$s"; $group{$p->name} = ($memo{$m} ||= or_clean($m)); } } my (%sizes, %pkgs); while (my ($k, $v) = each %group) { my $pkg = packageByName($packages, $k) or next; push @{$pkgs{$v}}, $k; $sizes{$v} += $pkg->size - $packages->{sizes}{$pkg->name}; } log::l("pkgs::computeGroupSize took: ", formatTimeRaw(time() - $time)); log::l(sprintf "%s %dMB %s", $_, $sizes{$_} / sqr(1024), join(',', @{$pkgs{$_}})) foreach keys %sizes; \%sizes, \%pkgs; } sub openInstallLog() { my $f = "$::prefix/root/drakx/install.log"; open(my $LOG, ">> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); #-# CORE::select((CORE::select($LOG), $| = 1)[0]); URPM::rpmErrorWriteTo(fileno $LOG); $LOG; } sub rpmDbOpen { my ($o_rebuild_needed) = @_; if ($o_rebuild_needed) { 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); URPM::DB::rebuild($::prefix) or log::l("rebuilding of rpm database failed: " . URPM::rpmErrorString()), c::_exit(2); c::_exit(0); } } my $db; if ($db = URPM::DB::open($::prefix)) { log::l("opened rpm database for examining existing packages"); } else { log::l("unable to open rpm database, using empty rpm db emulation"); $db = new URPM; } $db; } sub rpmDbCleanLogs() { unlink glob("$::prefix/var/lib/rpm/__db.*"); } sub rpmDbOpenForInstall() { my $db = URPM::DB::open($::prefix, 1); $db and log::l("opened rpmdb for writing in $::prefix"); $db; } sub cleanOldRpmDb() { 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 selectPackagesAlreadyInstalled { my ($packages) = @_; log::l("computing installed flags and size of installed packages"); $packages->{sizes} = $packages->compute_installed_flags($packages->{rpmdb}); } sub selectPackagesToUpgrade { my ($packages, $o_medium) = @_; #- check before that if medium is given, it should be valid. $o_medium && (! defined $o_medium->{start} || ! defined $o_medium->{end}) and return; log::l("selecting packages to upgrade"); my $state = $packages->{state} ||= {}; $state->{selected} = {}; my %selection; $packages->request_packages_to_upgrade($packages->{rpmdb}, $state, \%selection, requested => undef, $o_medium ? (start => $o_medium->{start}, end => $o_medium->{end}) : (), ); log::l("resolving dependencies..."); $packages->resolve_requested($packages->{rpmdb}, $state, \%selection, callback_choices => \&packageCallbackChoices); log::l("...done"); } sub allowedToUpgrade { $_[0] !~ /^(kernel|kernel22|kernel2.2|kernel-secure|kernel-smp|kernel-linus|kernel-linus2.2|hackkernel|kernel-enterprise)$/ } sub supplCDMountPoint() { install_medium::by_id(1)->method eq 'cdrom' ? "/tmp/image" : "/mnt/cdrom" } sub installTransactionClosure { my ($packages, $id2pkg) = @_; my ($id, %closure, @l, $medium, $min_id, $max_id); @l = sort { $a <=> $b } keys %$id2pkg; #- search first usable medium (sorted by medium ordering). foreach (sort { $a->{start} <=> $b->{start} } values %{$packages->{mediums}}) { unless ($_->selected) { #- this medium is not selected, but we have to make sure no package is left #- in $id2pkg. if (defined $_->{start} && defined $_->{end}) { foreach ($_->{start} .. $_->{end}) { delete $id2pkg->{$_}; } @l = sort { $a <=> $b } keys %$id2pkg; } #- anyway, examine the next one. next; } if ($l[0] <= $_->{end}) { #- we have a candidate medium, it could be the right one containing #- the first package of @l... $l[0] >= $_->{start} and $medium = $_, last; #- ... but it could be necessary to find the first #- medium containing package of @l. foreach my $id (@l) { $id >= $_->{start} && $id <= $_->{end} and $medium = $_, last; } $medium and last; } } $medium or return (); #- no more medium usable -> end of installation by returning empty list. ($min_id, $max_id) = ($medium->{start}, $medium->{end}); #- Supplementary CD : switch temporarily to "cdrom" method my $suppl_CD = $medium->is_suppl_cd; local $::o->{method} = do { my $cdrom; cat_("/proc/mounts") =~ m,(/dev/\S+)\s+(?:/mnt/cdrom|/tmp/image), and $cdrom = $1; if (!defined $cdrom) { (my $cdromdev) = detect_devices::cdroms(); $cdrom = $cdromdev->{device}; log::l("cdrom redetected at $cdrom"); devices::make($cdrom); install_any::ejectCdrom($cdrom) if $::o->{method} eq 'cdrom'; install_any::mountCdrom(supplCDMountPoint(), $cdrom); } else { log::l("cdrom already found at $cdrom") } 'cdrom'; } if $suppl_CD; #- it is sure at least one package will be installed according to medium chosen. install_any::useMedium($medium->{medium}); if (install_any::method_allows_medium_change($medium->method)) { my $pkg = $packages->{depslist}[$l[0]]; #- force changeCD callback to be called from main process. install_any::getFile($pkg->filename, $::o->{method}, $suppl_CD ? supplCDMountPoint() : undef); #- close opened handle above. install_any::getFile('XXX'); } while (defined($id = shift @l)) { my @l2 = $id; while (defined($id = shift @l2)) { exists $closure{$id} and next; $id >= $min_id && $id <= $max_id or next; $closure{$id} = undef; my $pkg = $packages->{depslist}[$id]; foreach ($pkg->requires_nosense) { foreach (keys %{$packages->{provides}{$_} || {}}) { if ($id2pkg->{$_}) { push @l2, $_; last; } } } } keys %closure >= $limitMinTrans and last; } map { delete $id2pkg->{$_} } grep { $id2pkg->{$_} } sort { $a <=> $b } keys %closure; } sub installCallback { # my $msg = shift; # log::l($msg .": ". join(',', @_)); } sub install { my ($isUpgrade, $toInstall, $packages) = @_; my %packages; delete $packages->{rpmdb}; #- make sure rpmdb is closed before. #- avoid potential problems with rpm db personality change rpmDbCleanLogs(); return if !@$toInstall; #- for root loopback'ed /boot my $loop_boot = fs::loopback::prepare_boot(); #- first stage to extract some important information #- about the selected packages. This is used to select #- one or many transactions. my ($total, $nb); foreach my $pkg (@$toInstall) { $packages{$pkg->id} = $pkg; $nb++; $total += to_int($pkg->size); #- do not correct for upgrade! } log::l("pkgs::install $::prefix"); log::l("pkgs::install the following: ", join(" ", map { $_->name } values %packages)); URPM::read_config_files(); my $LOG = openInstallLog(); #- 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($packages, 'user', undef, 'install', $nb, $total); do { my @transToInstall = installTransactionClosure($packages, \%packages); $nb = values %packages; #- added to exit typically after last media unselected. if ($nb == 0 && scalar(@transToInstall) == 0) { cleanHeaders(); fs::loopback::save_boot($loop_boot); return; } #- extract headers for parent as they are used by callback. extractHeaders(\@transToInstall, $packages->{mediums}); my ($retry_pkg, $retry_count); while ($retry_pkg || @transToInstall) { local (*INPUT, *OUTPUT); pipe INPUT, OUTPUT; if (my $pid = fork()) { close OUTPUT; my $error_msg = ''; local $_; while (<INPUT>) { if (/^die:(.*)/) { $error_msg = $1; last; } else { chomp; my @params = split ":"; if ($params[0] eq 'close') { my $pkg = $packages->{depslist}[$params[1]]; #- update flag associated to package. $pkg->set_flag_installed(1); $pkg->set_flag_upgrade(0); #- update obsoleted entry. foreach (keys %{$packages->{state}{rejected}}) { if (exists $packages->{state}{rejected}{$_}{closure}{$pkg->fullname}) { delete $packages->{state}{rejected}{$_}{closure}{$pkg->fullname}; %{$packages->{state}{rejected}{$_}{closure}} or delete $packages->{state}{rejected}{$_}; } } } else { installCallback($packages, @params); } } } $error_msg and $error_msg .= join('', <INPUT>); 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 @prev_pids = grep { /^\d+$/ } all("/proc"); close INPUT; select((select(OUTPUT), $| = 1)[0]); if ($::testing) { my $size_typical = $nb ? int($total/$nb) : 0; foreach (@transToInstall) { log::l("i would install ", $_->name, " now"); my $id = $_->id; print OUTPUT "inst:$id:start:0:$size_typical\ninst:$id:progress:0:$size_typical\nclose:$id\n"; } } else { eval { my $db = rpmDbOpenForInstall() or die "error opening RPM database: ", URPM::rpmErrorString(); my $trans = $db->create_transaction($::prefix); if ($retry_pkg) { log::l("opened rpm database for retry transaction of 1 package only"); $trans->add($retry_pkg, $isUpgrade && allowedToUpgrade($retry_pkg->name)) or log::l("add failed for " . $retry_pkg->fullname); } else { log::l("opened rpm database for transaction of " . int(@transToInstall) . " new packages, still $nb after that to do"); $trans->add($_, $isUpgrade && allowedToUpgrade($_->name)) foreach @transToInstall; } my @checks = $trans->check; @checks and log::l("check failed : " . join("\n ", @checks)); $trans->order or die "error ordering package list: " . URPM::rpmErrorString(); $trans->set_script_fd(fileno $LOG); log::l("rpm transactions start"); my $fd; #- since we return the "fileno", perl does not know we're still using it, and so closes it, and :-( my @probs = $trans->run($packages, force => 1, nosize => 1, callback_open => sub { my ($data, $_type, $id) = @_; my $pkg = defined $id && $data->{depslist}[$id]; my $medium = packageMedium($packages, $pkg); my $f = $pkg && $pkg->filename; print $LOG "$f\n"; if ($medium->is_suppl_cd) { $fd = install_any::getFile($f, $::o->{method}, supplCDMountPoint()); } else { $fd = install_any::getFile($f, $::o->{method}, $medium->{prefix}); } $fd ? fileno $fd : -1; }, callback_close => sub { my ($data, $_type, $id) = @_; my $pkg = defined $id && $data->{depslist}[$id] or return; my $check_installed; $db->traverse_tag('name', [ $pkg->name ], sub { my ($p) = @_; $check_installed ||= $pkg->compare_pkg($p) == 0; }); $check_installed or log::l($pkg->name . " not installed, " . URPM::rpmErrorString()); $check_installed and print OUTPUT "close:$id\n"; }, callback_inst => sub { my ($_data, $type, $id, $subtype, $amount, $total) = @_; print OUTPUT "$type:$id:$subtype:$amount:$total\n"; }); log::l("transactions done, now trying to close still opened fd"); install_any::getFile('XXX'); #- close still opened fd. @probs and die "installation of rpms failed:\n ", join("\n ", @probs); }; $@ and print OUTPUT "die:$@\n" } close OUTPUT; #- now search for child process which may be locking the cdrom, making it unable to be ejected. my @allpids = grep { /^\d+$/ } all("/proc"); my %ppids; foreach (@allpids) { push @{$ppids{$1 || 1}}, $_ if cat_("/proc/$_/status") =~ /^PPid:\s+(\d+)/m; } my @killpid = difference2(\@allpids, [ @prev_pids, difference2([ $$, hashtree2list(getppid(), \%ppids) ], [ hashtree2list($$, \%ppids) ]) ]); if (@killpid && $::isInstall && !$::local_install && !$::build_globetrotter) { foreach (@killpid) { my ($prog, @para) = split("\0", cat_("/proc/$_/cmdline")); log::l("ERROR: DrakX should not have to clean the packages shit. Killing $_: " . join(' ', $prog, @para) . ".") if $prog ne '/usr/lib/gconfd-2'; } 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. if (!$retry_pkg) { my @badPackages; foreach (@transToInstall) { if (!$_->flag_installed && packageMedium($packages, $_)->selected && !exists($ignoreBadPkg{$_->name})) { push @badPackages, $_; log::l("bad package " . $_->fullname); } else { $_->free_header; } } @transToInstall = @badPackages; #- if we are in retry mode, we have to fetch only one package at a time. $retry_pkg = shift @transToInstall; $retry_count = 3; } else { my $name; if (!$retry_pkg->flag_installed && packageMedium($packages, $retry_pkg)->selected && !exists($ignoreBadPkg{$retry_pkg->name})) { if ($retry_count) { log::l("retrying installing package " . $retry_pkg->fullname . " alone in a transaction"); --$retry_count; } else { log::l("bad package " . $retry_pkg->fullname . " unable to be installed"); $retry_pkg->set_flag_requested(0); $retry_pkg->set_flag_required(0); #- keep name to display (problem of displaying ?). $name = $retry_pkg->fullname; $retry_pkg->free_header; $retry_pkg = shift @transToInstall; $retry_count = 3; #- now it could be safe to display error message ? cdie("error installing package list: $name"); } } #- check if name has been set (so that the following code has been executed already). if (!$name && ($retry_pkg->flag_installed || !$retry_pkg->flag_selected)) { $retry_pkg->free_header; $retry_pkg = shift @transToInstall; $retry_count = 3; } } } cleanHeaders(); } while $nb > 0 && !$pkgs::cancel_install; log::l("closing install.log file"); close $LOG; eval { fs::mount::umount("/mnt/cdrom") }; cleanHeaders(); fs::loopback::save_boot($loop_boot); } sub remove { my ($toRemove, $packages) = @_; delete $packages->{rpmdb}; #- make sure rpmdb is closed before. return if !@{$toRemove || []}; my $db = rpmDbOpenForInstall() or die "error opening RPM database: ", URPM::rpmErrorString(); my $trans = $db->create_transaction($::prefix); foreach my $p (@$toRemove) { #- stuff remove all packages that matches $p, not a problem since $p has name-version-release format. $trans->remove($p); } #- 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($db, 'user', undef, 'remove', scalar @$toRemove); if (my @probs = $trans->run(undef, force => 1)) { die "removing of old rpms failed:\n ", join("\n ", @probs); } else { #- clean ask_remove according to package marked to be deleted. if ($packages) { foreach my $p (@$toRemove) { delete $packages->{state}{ask_remove}{$p}; } } } #- keep in mind removing of these packages by cleaning $toRemove. @{$toRemove || []} = (); } sub selected_leaves { my ($packages) = @_; my @leaves; foreach (@{$packages->{depslist}}) { $_->flag_requested && !$_->flag_base and push @leaves, $_->name; } \@leaves; } sub naughtyServers_list { my ($quiet) = @_; my @_old_81 = qw( freeswan ); my @_old_82 = qw( vnc-server postgresql-server ); my @_old_92 = qw( postfix ypbind bind ibod ); my @_removed_92 = qw( mcserv samba lpr ); my @_moved_to_contrib_92 = qw( boa LPRng wu-ftpd am-utils ); my @new_80 = qw( jabber MySQL am-utils apache boa cfengine cups drakxtools-http finger-server imap leafnode lpr ntp openssh-server pidentd proftpd rwall rwho squid webmin wu-ftpd ); my @new_81 = qw( apache-mod_perl ftp-server-krb5 mcserv samba telnet-server-krb5 ypserv ); my @new_82 = qw( LPRng httpd-naat inn netatalk nfs-utils rusers-server samba-swat tftp-server ucd-snmp ); my @new_92 = qw( apache2 apache2-mod_perl DansGuardian MySQL-Max clusternfs gkrellm-server lisa mon net-snmp openldap-servers samba-server saned vsftpd ); my @not_warned = qw( nfs-utils-clients portmap ); # X server (@new_80, @new_81, @new_82, @new_92, if_(!$quiet, @not_warned)); } sub naughtyServers { my ($packages) = @_; grep { my $p = packageByName($packages, $_); $p && $p->flag_selected; } naughtyServers_list('quiet'); } sub hashtree2list { my ($e, $h) = @_; my @l; my @todo = $e; while (@todo) { my $e = shift @todo; push @l, $e; push @todo, @{$h->{$e} || []}; } @l; } package install_medium; use strict; #- list of fields : #- descr (text description) #- end (last rpm id) #- fakemedium ("$descr ($method$medium_name)", used locally by urpmi) #- hdlist #- hdlist_size #- ignored #- issuppl (is a supplementary media) #- key_ids (hashref, values are key ids) #- medium (number of the medium) #- method #- prefix #- finalprefix (for install_urpmi) #- pubkey #- rpmsdir #- selected #- start (first rpm id) #- synthesis_hdlist_size #- update (for install_urpmi) #- with_hdlist (for install_urpmi) #- create a new medium sub new { my ($class, %h) = @_; bless \%h, $class } #- retrieve medium by id (usually a number) or an empty placeholder sub by_id { my ($medium_id, $o_packages) = @_; $o_packages = $::o->{packages} unless defined $o_packages; defined $o_packages->{mediums}{$medium_id} ? $o_packages->{mediums}{$medium_id} #- if the medium is not known, return a placeholder : bless { invalid => 1, medium => $medium_id }; } #- is this medium a supplementary medium ? sub is_suppl { my ($self) = @_; $self->{issuppl} } sub mark_suppl { my ($self) = @_; $self->{issuppl} = 1 } #- is this medium a supplementary CD ? sub is_suppl_cd { my ($self) = @_; $self->{method} eq 'cdrom' && $self->is_suppl } sub method { my ($self) = @_; $self->{method}; } sub selected { my ($self) = @_; $self->{selected} } sub select { my ($self) = @_; $self->{selected} = 1 } #- unselect, keep it mind it was unselected sub refuse { my ($self) = @_; $self->{selected} = undef } #- XXX this function seems to be obsolete sub ignored { my ($self) = @_; $self->{ignored} } #- guess the CD number for this media. #- XXX lots of heuristics here, must design this properly sub get_cd_number { my ($self) = @_; my $description = $self->{descr}; (my $cd) = $description =~ /\b(?:CD|DVD) ?(\d+)\b/i; if (!$cd) { #- test for single unnumbered DVD $cd = 1 if $description =~ /\bDVD\b/i; } if (!$cd) { #- test for mini-ISO $cd = 1 if $description =~ /\bmini.?cd\b/i; } #- don't mix suppl. cds with regular ones if ($description =~ /suppl/i) { $cd += 100 } $cd; } 1; 6'>1276</a> <a id='n1277' href='#n1277'>1277</a> <a id='n1278' href='#n1278'>1278</a> <a id='n1279' href='#n1279'>1279</a> <a id='n1280' href='#n1280'>1280</a> <a id='n1281' href='#n1281'>1281</a> <a id='n1282' href='#n1282'>1282</a> <a id='n1283' href='#n1283'>1283</a> <a id='n1284' href='#n1284'>1284</a> <a id='n1285' href='#n1285'>1285</a> <a id='n1286' href='#n1286'>1286</a> <a id='n1287' href='#n1287'>1287</a> <a id='n1288' href='#n1288'>1288</a> <a id='n1289' href='#n1289'>1289</a> <a id='n1290' href='#n1290'>1290</a> <a id='n1291' href='#n1291'>1291</a> <a id='n1292' href='#n1292'>1292</a> <a id='n1293' href='#n1293'>1293</a> <a id='n1294' href='#n1294'>1294</a> <a id='n1295' href='#n1295'>1295</a> <a id='n1296' href='#n1296'>1296</a> <a id='n1297' href='#n1297'>1297</a> <a id='n1298' href='#n1298'>1298</a> <a id='n1299' href='#n1299'>1299</a> <a id='n1300' href='#n1300'>1300</a> <a id='n1301' href='#n1301'>1301</a> <a id='n1302' href='#n1302'>1302</a> <a id='n1303' href='#n1303'>1303</a> <a id='n1304' href='#n1304'>1304</a> <a id='n1305' href='#n1305'>1305</a> <a id='n1306' href='#n1306'>1306</a> <a id='n1307' href='#n1307'>1307</a> <a id='n1308' href='#n1308'>1308</a> <a id='n1309' href='#n1309'>1309</a> <a id='n1310' href='#n1310'>1310</a> <a id='n1311' href='#n1311'>1311</a> <a id='n1312' href='#n1312'>1312</a> <a id='n1313' href='#n1313'>1313</a> <a id='n1314' href='#n1314'>1314</a> <a id='n1315' href='#n1315'>1315</a> <a id='n1316' href='#n1316'>1316</a> <a id='n1317' href='#n1317'>1317</a> <a id='n1318' href='#n1318'>1318</a> <a id='n1319' href='#n1319'>1319</a> <a id='n1320' href='#n1320'>1320</a> <a id='n1321' href='#n1321'>1321</a> <a id='n1322' href='#n1322'>1322</a> <a id='n1323' href='#n1323'>1323</a> <a id='n1324' href='#n1324'>1324</a> <a id='n1325' href='#n1325'>1325</a> <a id='n1326' href='#n1326'>1326</a> <a id='n1327' href='#n1327'>1327</a> <a id='n1328' href='#n1328'>1328</a> <a id='n1329' href='#n1329'>1329</a> <a id='n1330' href='#n1330'>1330</a> <a id='n1331' href='#n1331'>1331</a> <a id='n1332' href='#n1332'>1332</a> <a id='n1333' href='#n1333'>1333</a> <a id='n1334' href='#n1334'>1334</a> <a id='n1335' href='#n1335'>1335</a> <a id='n1336' href='#n1336'>1336</a> <a id='n1337' href='#n1337'>1337</a> <a id='n1338' href='#n1338'>1338</a> <a id='n1339' href='#n1339'>1339</a> <a id='n1340' href='#n1340'>1340</a> <a id='n1341' href='#n1341'>1341</a> <a id='n1342' href='#n1342'>1342</a> <a id='n1343' href='#n1343'>1343</a> <a id='n1344' href='#n1344'>1344</a> <a id='n1345' href='#n1345'>1345</a> <a id='n1346' href='#n1346'>1346</a> <a id='n1347' href='#n1347'>1347</a> <a id='n1348' href='#n1348'>1348</a> <a id='n1349' href='#n1349'>1349</a> <a id='n1350' href='#n1350'>1350</a> <a id='n1351' href='#n1351'>1351</a> <a id='n1352' href='#n1352'>1352</a> <a id='n1353' href='#n1353'>1353</a> <a id='n1354' href='#n1354'>1354</a> <a id='n1355' href='#n1355'>1355</a> <a id='n1356' href='#n1356'>1356</a> <a id='n1357' href='#n1357'>1357</a> <a id='n1358' href='#n1358'>1358</a> <a id='n1359' href='#n1359'>1359</a> <a id='n1360' href='#n1360'>1360</a> <a id='n1361' href='#n1361'>1361</a> <a id='n1362' href='#n1362'>1362</a> <a id='n1363' href='#n1363'>1363</a> <a id='n1364' href='#n1364'>1364</a> <a id='n1365' href='#n1365'>1365</a> <a id='n1366' href='#n1366'>1366</a> <a id='n1367' href='#n1367'>1367</a> <a id='n1368' href='#n1368'>1368</a> <a id='n1369' href='#n1369'>1369</a> <a id='n1370' href='#n1370'>1370</a> <a id='n1371' href='#n1371'>1371</a> <a id='n1372' href='#n1372'>1372</a> <a id='n1373' href='#n1373'>1373</a> <a id='n1374' href='#n1374'>1374</a> <a id='n1375' href='#n1375'>1375</a> <a id='n1376' href='#n1376'>1376</a> <a id='n1377' href='#n1377'>1377</a> <a id='n1378' href='#n1378'>1378</a> <a id='n1379' href='#n1379'>1379</a> <a id='n1380' href='#n1380'>1380</a> <a id='n1381' href='#n1381'>1381</a> <a id='n1382' href='#n1382'>1382</a> <a id='n1383' href='#n1383'>1383</a> <a id='n1384' href='#n1384'>1384</a> <a id='n1385' href='#n1385'>1385</a> <a id='n1386' href='#n1386'>1386</a> <a id='n1387' href='#n1387'>1387</a> <a id='n1388' href='#n1388'>1388</a> <a id='n1389' href='#n1389'>1389</a> <a id='n1390' href='#n1390'>1390</a> <a id='n1391' href='#n1391'>1391</a> <a id='n1392' href='#n1392'>1392</a> <a id='n1393' href='#n1393'>1393</a> <a id='n1394' href='#n1394'>1394</a> <a id='n1395' href='#n1395'>1395</a> <a id='n1396' href='#n1396'>1396</a> <a id='n1397' href='#n1397'>1397</a> <a id='n1398' href='#n1398'>1398</a> <a id='n1399' href='#n1399'>1399</a> <a id='n1400' href='#n1400'>1400</a> <a id='n1401' href='#n1401'>1401</a> <a id='n1402' href='#n1402'>1402</a> <a id='n1403' href='#n1403'>1403</a> <a id='n1404' href='#n1404'>1404</a> <a id='n1405' href='#n1405'>1405</a> <a id='n1406' href='#n1406'>1406</a> <a id='n1407' href='#n1407'>1407</a> <a id='n1408' href='#n1408'>1408</a> <a id='n1409' href='#n1409'>1409</a> <a id='n1410' href='#n1410'>1410</a> <a id='n1411' href='#n1411'>1411</a> <a id='n1412' href='#n1412'>1412</a> <a id='n1413' href='#n1413'>1413</a> <a id='n1414' href='#n1414'>1414</a> <a id='n1415' href='#n1415'>1415</a> <a id='n1416' href='#n1416'>1416</a> <a id='n1417' href='#n1417'>1417</a> <a id='n1418' href='#n1418'>1418</a> <a id='n1419' href='#n1419'>1419</a> <a id='n1420' href='#n1420'>1420</a> <a id='n1421' href='#n1421'>1421</a> <a id='n1422' href='#n1422'>1422</a> <a id='n1423' href='#n1423'>1423</a> <a id='n1424' href='#n1424'>1424</a> <a id='n1425' href='#n1425'>1425</a> <a id='n1426' href='#n1426'>1426</a> <a id='n1427' href='#n1427'>1427</a> <a id='n1428' href='#n1428'>1428</a> <a id='n1429' href='#n1429'>1429</a> <a id='n1430' href='#n1430'>1430</a> <a id='n1431' href='#n1431'>1431</a> <a id='n1432' href='#n1432'>1432</a> <a id='n1433' href='#n1433'>1433</a> <a id='n1434' href='#n1434'>1434</a> <a id='n1435' href='#n1435'>1435</a> <a id='n1436' href='#n1436'>1436</a> <a id='n1437' href='#n1437'>1437</a> <a id='n1438' href='#n1438'>1438</a> <a id='n1439' href='#n1439'>1439</a> <a id='n1440' href='#n1440'>1440</a> <a id='n1441' href='#n1441'>1441</a> <a id='n1442' href='#n1442'>1442</a> <a id='n1443' href='#n1443'>1443</a> <a id='n1444' href='#n1444'>1444</a> <a id='n1445' href='#n1445'>1445</a> <a id='n1446' href='#n1446'>1446</a> <a id='n1447' href='#n1447'>1447</a> <a id='n1448' href='#n1448'>1448</a> <a id='n1449' href='#n1449'>1449</a> <a id='n1450' href='#n1450'>1450</a> <a id='n1451' href='#n1451'>1451</a> <a id='n1452' href='#n1452'>1452</a> <a id='n1453' href='#n1453'>1453</a> <a id='n1454' href='#n1454'>1454</a> <a id='n1455' href='#n1455'>1455</a> <a id='n1456' href='#n1456'>1456</a> <a id='n1457' href='#n1457'>1457</a> <a id='n1458' href='#n1458'>1458</a> <a id='n1459' href='#n1459'>1459</a> <a id='n1460' href='#n1460'>1460</a> <a id='n1461' href='#n1461'>1461</a> <a id='n1462' href='#n1462'>1462</a> <a id='n1463' href='#n1463'>1463</a> <a id='n1464' href='#n1464'>1464</a> <a id='n1465' href='#n1465'>1465</a> <a id='n1466' href='#n1466'>1466</a> <a id='n1467' href='#n1467'>1467</a> <a id='n1468' href='#n1468'>1468</a> <a id='n1469' href='#n1469'>1469</a> <a id='n1470' href='#n1470'>1470</a> <a id='n1471' href='#n1471'>1471</a> <a id='n1472' href='#n1472'>1472</a> <a id='n1473' href='#n1473'>1473</a> <a id='n1474' href='#n1474'>1474</a> <a id='n1475' href='#n1475'>1475</a> <a id='n1476' href='#n1476'>1476</a> <a id='n1477' href='#n1477'>1477</a> <a id='n1478' href='#n1478'>1478</a> <a id='n1479' href='#n1479'>1479</a> <a id='n1480' href='#n1480'>1480</a> <a id='n1481' href='#n1481'>1481</a> <a id='n1482' href='#n1482'>1482</a> <a id='n1483' href='#n1483'>1483</a> <a id='n1484' href='#n1484'>1484</a> <a id='n1485' href='#n1485'>1485</a> <a id='n1486' href='#n1486'>1486</a> <a id='n1487' href='#n1487'>1487</a> <a id='n1488' href='#n1488'>1488</a> <a id='n1489' href='#n1489'>1489</a> <a id='n1490' href='#n1490'>1490</a> <a id='n1491' href='#n1491'>1491</a> <a id='n1492' href='#n1492'>1492</a> <a id='n1493' href='#n1493'>1493</a> <a id='n1494' href='#n1494'>1494</a> <a id='n1495' href='#n1495'>1495</a> <a id='n1496' href='#n1496'>1496</a> <a id='n1497' href='#n1497'>1497</a> <a id='n1498' href='#n1498'>1498</a> <a id='n1499' href='#n1499'>1499</a> <a id='n1500' href='#n1500'>1500</a> <a id='n1501' href='#n1501'>1501</a> <a id='n1502' href='#n1502'>1502</a> <a id='n1503' href='#n1503'>1503</a> <a id='n1504' href='#n1504'>1504</a> <a id='n1505' href='#n1505'>1505</a> <a id='n1506' href='#n1506'>1506</a> <a id='n1507' href='#n1507'>1507</a> <a id='n1508' href='#n1508'>1508</a> <a id='n1509' href='#n1509'>1509</a> <a id='n1510' href='#n1510'>1510</a> <a id='n1511' href='#n1511'>1511</a> <a id='n1512' href='#n1512'>1512</a> <a id='n1513' href='#n1513'>1513</a> <a id='n1514' href='#n1514'>1514</a> <a id='n1515' href='#n1515'>1515</a> <a id='n1516' href='#n1516'>1516</a> <a id='n1517' href='#n1517'>1517</a> <a id='n1518' href='#n1518'>1518</a> <a id='n1519' href='#n1519'>1519</a> <a id='n1520' href='#n1520'>1520</a> <a id='n1521' href='#n1521'>1521</a> <a id='n1522' href='#n1522'>1522</a> <a id='n1523' href='#n1523'>1523</a> <a id='n1524' href='#n1524'>1524</a> <a id='n1525' href='#n1525'>1525</a> <a id='n1526' href='#n1526'>1526</a> <a id='n1527' href='#n1527'>1527</a> <a id='n1528' href='#n1528'>1528</a> <a id='n1529' href='#n1529'>1529</a> <a id='n1530' href='#n1530'>1530</a> <a id='n1531' href='#n1531'>1531</a> <a id='n1532' href='#n1532'>1532</a> <a id='n1533' href='#n1533'>1533</a> <a id='n1534' href='#n1534'>1534</a> <a id='n1535' href='#n1535'>1535</a> <a id='n1536' href='#n1536'>1536</a> <a id='n1537' href='#n1537'>1537</a> <a id='n1538' href='#n1538'>1538</a> <a id='n1539' href='#n1539'>1539</a> <a id='n1540' href='#n1540'>1540</a> <a id='n1541' href='#n1541'>1541</a> <a id='n1542' href='#n1542'>1542</a> <a id='n1543' href='#n1543'>1543</a> <a id='n1544' href='#n1544'>1544</a> <a id='n1545' href='#n1545'>1545</a> <a id='n1546' href='#n1546'>1546</a> <a id='n1547' href='#n1547'>1547</a> <a id='n1548' href='#n1548'>1548</a> <a id='n1549' href='#n1549'>1549</a> <a id='n1550' href='#n1550'>1550</a> <a id='n1551' href='#n1551'>1551</a> <a id='n1552' href='#n1552'>1552</a> <a id='n1553' href='#n1553'>1553</a> <a id='n1554' href='#n1554'>1554</a> <a id='n1555' href='#n1555'>1555</a> <a id='n1556' href='#n1556'>1556</a> <a id='n1557' href='#n1557'>1557</a> <a id='n1558' href='#n1558'>1558</a> <a id='n1559' href='#n1559'>1559</a> <a id='n1560' href='#n1560'>1560</a> <a id='n1561' href='#n1561'>1561</a> <a id='n1562' href='#n1562'>1562</a> <a id='n1563' href='#n1563'>1563</a> <a id='n1564' href='#n1564'>1564</a> <a id='n1565' href='#n1565'>1565</a> <a id='n1566' href='#n1566'>1566</a> <a id='n1567' href='#n1567'>1567</a> <a id='n1568' href='#n1568'>1568</a> <a id='n1569' href='#n1569'>1569</a> <a id='n1570' href='#n1570'>1570</a> <a id='n1571' href='#n1571'>1571</a> <a id='n1572' href='#n1572'>1572</a> <a id='n1573' href='#n1573'>1573</a> <a id='n1574' href='#n1574'>1574</a> <a id='n1575' href='#n1575'>1575</a> <a id='n1576' href='#n1576'>1576</a> <a id='n1577' href='#n1577'>1577</a> <a id='n1578' href='#n1578'>1578</a> <a id='n1579' href='#n1579'>1579</a> <a id='n1580' href='#n1580'>1580</a> <a id='n1581' href='#n1581'>1581</a> <a id='n1582' href='#n1582'>1582</a> <a id='n1583' href='#n1583'>1583</a> <a id='n1584' href='#n1584'>1584</a> <a id='n1585' href='#n1585'>1585</a> <a id='n1586' href='#n1586'>1586</a> <a id='n1587' href='#n1587'>1587</a> <a id='n1588' href='#n1588'>1588</a> <a id='n1589' href='#n1589'>1589</a> <a id='n1590' href='#n1590'>1590</a> <a id='n1591' href='#n1591'>1591</a> <a id='n1592' href='#n1592'>1592</a> <a id='n1593' href='#n1593'>1593</a> <a id='n1594' href='#n1594'>1594</a> <a id='n1595' href='#n1595'>1595</a> <a id='n1596' href='#n1596'>1596</a> <a id='n1597' href='#n1597'>1597</a> <a id='n1598' href='#n1598'>1598</a> <a id='n1599' href='#n1599'>1599</a> <a id='n1600' href='#n1600'>1600</a> <a id='n1601' href='#n1601'>1601</a> <a id='n1602' href='#n1602'>1602</a> <a id='n1603' href='#n1603'>1603</a> <a id='n1604' href='#n1604'>1604</a> <a id='n1605' href='#n1605'>1605</a> <a id='n1606' href='#n1606'>1606</a> <a id='n1607' href='#n1607'>1607</a> <a id='n1608' href='#n1608'>1608</a> <a id='n1609' href='#n1609'>1609</a> <a id='n1610' href='#n1610'>1610</a> <a id='n1611' href='#n1611'>1611</a> <a id='n1612' href='#n1612'>1612</a> <a id='n1613' href='#n1613'>1613</a> <a id='n1614' href='#n1614'>1614</a> <a id='n1615' href='#n1615'>1615</a> <a id='n1616' href='#n1616'>1616</a> <a id='n1617' href='#n1617'>1617</a> <a id='n1618' href='#n1618'>1618</a> <a id='n1619' href='#n1619'>1619</a> <a id='n1620' href='#n1620'>1620</a> <a id='n1621' href='#n1621'>1621</a> <a id='n1622' href='#n1622'>1622</a> <a id='n1623' href='#n1623'>1623</a> <a id='n1624' href='#n1624'>1624</a> <a id='n1625' href='#n1625'>1625</a> <a id='n1626' href='#n1626'>1626</a> <a id='n1627' href='#n1627'>1627</a> <a id='n1628' href='#n1628'>1628</a> <a id='n1629' href='#n1629'>1629</a> <a id='n1630' href='#n1630'>1630</a> <a id='n1631' href='#n1631'>1631</a> <a id='n1632' href='#n1632'>1632</a> <a id='n1633' href='#n1633'>1633</a> <a id='n1634' href='#n1634'>1634</a> <a id='n1635' href='#n1635'>1635</a> <a id='n1636' href='#n1636'>1636</a> <a id='n1637' href='#n1637'>1637</a> <a id='n1638' href='#n1638'>1638</a> <a id='n1639' href='#n1639'>1639</a> <a id='n1640' href='#n1640'>1640</a> <a id='n1641' href='#n1641'>1641</a> <a id='n1642' href='#n1642'>1642</a> <a id='n1643' href='#n1643'>1643</a> <a id='n1644' href='#n1644'>1644</a> <a id='n1645' href='#n1645'>1645</a> <a id='n1646' href='#n1646'>1646</a> <a id='n1647' href='#n1647'>1647</a> <a id='n1648' href='#n1648'>1648</a> <a id='n1649' href='#n1649'>1649</a> <a id='n1650' href='#n1650'>1650</a> <a id='n1651' href='#n1651'>1651</a> <a id='n1652' href='#n1652'>1652</a> <a id='n1653' href='#n1653'>1653</a> <a id='n1654' href='#n1654'>1654</a> <a id='n1655' href='#n1655'>1655</a> <a id='n1656' href='#n1656'>1656</a> <a id='n1657' href='#n1657'>1657</a> <a id='n1658' href='#n1658'>1658</a> <a id='n1659' href='#n1659'>1659</a> <a id='n1660' href='#n1660'>1660</a> <a id='n1661' href='#n1661'>1661</a> <a id='n1662' href='#n1662'>1662</a> <a id='n1663' href='#n1663'>1663</a> <a id='n1664' href='#n1664'>1664</a> <a id='n1665' href='#n1665'>1665</a> <a id='n1666' href='#n1666'>1666</a> <a id='n1667' href='#n1667'>1667</a> <a id='n1668' href='#n1668'>1668</a> <a id='n1669' href='#n1669'>1669</a> <a id='n1670' href='#n1670'>1670</a> <a id='n1671' href='#n1671'>1671</a> <a id='n1672' href='#n1672'>1672</a> <a id='n1673' href='#n1673'>1673</a> <a id='n1674' href='#n1674'>1674</a> <a id='n1675' href='#n1675'>1675</a> <a id='n1676' href='#n1676'>1676</a> <a id='n1677' href='#n1677'>1677</a> <a id='n1678' href='#n1678'>1678</a> <a id='n1679' href='#n1679'>1679</a> <a id='n1680' href='#n1680'>1680</a> <a id='n1681' href='#n1681'>1681</a> <a id='n1682' href='#n1682'>1682</a> <a id='n1683' href='#n1683'>1683</a> <a id='n1684' href='#n1684'>1684</a> <a id='n1685' href='#n1685'>1685</a> <a id='n1686' href='#n1686'>1686</a> <a id='n1687' href='#n1687'>1687</a> <a id='n1688' href='#n1688'>1688</a> <a id='n1689' href='#n1689'>1689</a> <a id='n1690' href='#n1690'>1690</a> <a id='n1691' href='#n1691'>1691</a> <a id='n1692' href='#n1692'>1692</a> <a id='n1693' href='#n1693'>1693</a> <a id='n1694' href='#n1694'>1694</a> <a id='n1695' href='#n1695'>1695</a> <a id='n1696' href='#n1696'>1696</a> <a id='n1697' href='#n1697'>1697</a> <a id='n1698' href='#n1698'>1698</a> <a id='n1699' href='#n1699'>1699</a> <a id='n1700' href='#n1700'>1700</a> <a id='n1701' href='#n1701'>1701</a> <a id='n1702' href='#n1702'>1702</a> <a id='n1703' href='#n1703'>1703</a> <a id='n1704' href='#n1704'>1704</a> <a id='n1705' href='#n1705'>1705</a> <a id='n1706' href='#n1706'>1706</a> <a id='n1707' href='#n1707'>1707</a> <a id='n1708' href='#n1708'>1708</a> <a id='n1709' href='#n1709'>1709</a> <a id='n1710' href='#n1710'>1710</a> <a id='n1711' href='#n1711'>1711</a> <a id='n1712' href='#n1712'>1712</a> <a id='n1713' href='#n1713'>1713</a> <a id='n1714' href='#n1714'>1714</a> <a id='n1715' href='#n1715'>1715</a> <a id='n1716' href='#n1716'>1716</a> <a id='n1717' href='#n1717'>1717</a> <a id='n1718' href='#n1718'>1718</a> <a id='n1719' href='#n1719'>1719</a> <a id='n1720' href='#n1720'>1720</a> <a id='n1721' href='#n1721'>1721</a> <a id='n1722' href='#n1722'>1722</a> <a id='n1723' href='#n1723'>1723</a> <a id='n1724' href='#n1724'>1724</a> <a id='n1725' href='#n1725'>1725</a> <a id='n1726' href='#n1726'>1726</a> <a id='n1727' href='#n1727'>1727</a> <a id='n1728' href='#n1728'>1728</a> <a id='n1729' href='#n1729'>1729</a> <a id='n1730' href='#n1730'>1730</a> <a id='n1731' href='#n1731'>1731</a> <a id='n1732' href='#n1732'>1732</a> <a id='n1733' href='#n1733'>1733</a> <a id='n1734' href='#n1734'>1734</a> <a id='n1735' href='#n1735'>1735</a> <a id='n1736' href='#n1736'>1736</a> <a id='n1737' href='#n1737'>1737</a> <a id='n1738' href='#n1738'>1738</a> <a id='n1739' href='#n1739'>1739</a> <a id='n1740' href='#n1740'>1740</a> <a id='n1741' href='#n1741'>1741</a> <a id='n1742' href='#n1742'>1742</a> <a id='n1743' href='#n1743'>1743</a> <a id='n1744' href='#n1744'>1744</a> <a id='n1745' href='#n1745'>1745</a> <a id='n1746' href='#n1746'>1746</a> <a id='n1747' href='#n1747'>1747</a> <a id='n1748' href='#n1748'>1748</a> <a id='n1749' href='#n1749'>1749</a> <a id='n1750' href='#n1750'>1750</a> <a id='n1751' href='#n1751'>1751</a> <a id='n1752' href='#n1752'>1752</a> <a id='n1753' href='#n1753'>1753</a> <a id='n1754' href='#n1754'>1754</a> <a id='n1755' href='#n1755'>1755</a> <a id='n1756' href='#n1756'>1756</a> <a id='n1757' href='#n1757'>1757</a> <a id='n1758' href='#n1758'>1758</a> <a id='n1759' href='#n1759'>1759</a> <a id='n1760' href='#n1760'>1760</a> <a id='n1761' href='#n1761'>1761</a> <a id='n1762' href='#n1762'>1762</a> <a id='n1763' href='#n1763'>1763</a> <a id='n1764' href='#n1764'>1764</a> <a id='n1765' href='#n1765'>1765</a> <a id='n1766' href='#n1766'>1766</a> <a id='n1767' href='#n1767'>1767</a> <a id='n1768' href='#n1768'>1768</a> <a id='n1769' href='#n1769'>1769</a> <a id='n1770' href='#n1770'>1770</a> <a id='n1771' href='#n1771'>1771</a> <a id='n1772' href='#n1772'>1772</a> <a id='n1773' href='#n1773'>1773</a> <a id='n1774' href='#n1774'>1774</a> <a id='n1775' href='#n1775'>1775</a> <a id='n1776' href='#n1776'>1776</a> <a id='n1777' href='#n1777'>1777</a> <a id='n1778' href='#n1778'>1778</a> <a id='n1779' href='#n1779'>1779</a> <a id='n1780' href='#n1780'>1780</a> <a id='n1781' href='#n1781'>1781</a> <a id='n1782' href='#n1782'>1782</a> <a id='n1783' href='#n1783'>1783</a> <a id='n1784' href='#n1784'>1784</a> <a id='n1785' href='#n1785'>1785</a> <a id='n1786' href='#n1786'>1786</a> <a id='n1787' href='#n1787'>1787</a> <a id='n1788' href='#n1788'>1788</a> <a id='n1789' href='#n1789'>1789</a> <a id='n1790' href='#n1790'>1790</a> <a id='n1791' href='#n1791'>1791</a> <a id='n1792' href='#n1792'>1792</a> <a id='n1793' href='#n1793'>1793</a> <a id='n1794' href='#n1794'>1794</a> <a id='n1795' href='#n1795'>1795</a> <a id='n1796' href='#n1796'>1796</a> <a id='n1797' href='#n1797'>1797</a> <a id='n1798' href='#n1798'>1798</a> <a id='n1799' href='#n1799'>1799</a> <a id='n1800' href='#n1800'>1800</a> <a id='n1801' href='#n1801'>1801</a> <a id='n1802' href='#n1802'>1802</a> <a id='n1803' href='#n1803'>1803</a> <a id='n1804' href='#n1804'>1804</a> <a id='n1805' href='#n1805'>1805</a> <a id='n1806' href='#n1806'>1806</a> <a id='n1807' href='#n1807'>1807</a> <a id='n1808' href='#n1808'>1808</a> <a id='n1809' href='#n1809'>1809</a> <a id='n1810' href='#n1810'>1810</a> <a id='n1811' href='#n1811'>1811</a> <a id='n1812' href='#n1812'>1812</a> <a id='n1813' href='#n1813'>1813</a> <a id='n1814' href='#n1814'>1814</a> <a id='n1815' href='#n1815'>1815</a> <a id='n1816' href='#n1816'>1816</a> <a id='n1817' href='#n1817'>1817</a> <a id='n1818' href='#n1818'>1818</a> <a id='n1819' href='#n1819'>1819</a> <a id='n1820' href='#n1820'>1820</a> <a id='n1821' href='#n1821'>1821</a> <a id='n1822' href='#n1822'>1822</a> <a id='n1823' href='#n1823'>1823</a> <a id='n1824' href='#n1824'>1824</a> <a id='n1825' href='#n1825'>1825</a> <a id='n1826' href='#n1826'>1826</a> <a id='n1827' href='#n1827'>1827</a> <a id='n1828' href='#n1828'>1828</a> <a id='n1829' href='#n1829'>1829</a> <a id='n1830' href='#n1830'>1830</a> <a id='n1831' href='#n1831'>1831</a> <a id='n1832' href='#n1832'>1832</a> <a id='n1833' href='#n1833'>1833</a> <a id='n1834' href='#n1834'>1834</a> <a id='n1835' href='#n1835'>1835</a> <a id='n1836' href='#n1836'>1836</a> <a id='n1837' href='#n1837'>1837</a> <a id='n1838' href='#n1838'>1838</a> <a id='n1839' href='#n1839'>1839</a> <a id='n1840' href='#n1840'>1840</a> <a id='n1841' href='#n1841'>1841</a> <a id='n1842' href='#n1842'>1842</a> <a id='n1843' href='#n1843'>1843</a> <a id='n1844' href='#n1844'>1844</a> <a id='n1845' href='#n1845'>1845</a> <a id='n1846' href='#n1846'>1846</a> <a id='n1847' href='#n1847'>1847</a> <a id='n1848' href='#n1848'>1848</a> <a id='n1849' href='#n1849'>1849</a> <a id='n1850' href='#n1850'>1850</a> <a id='n1851' href='#n1851'>1851</a> <a id='n1852' href='#n1852'>1852</a> <a id='n1853' href='#n1853'>1853</a> <a id='n1854' href='#n1854'>1854</a> <a id='n1855' href='#n1855'>1855</a> <a id='n1856' href='#n1856'>1856</a> <a id='n1857' href='#n1857'>1857</a> <a id='n1858' href='#n1858'>1858</a> <a id='n1859' href='#n1859'>1859</a> <a id='n1860' href='#n1860'>1860</a> <a id='n1861' href='#n1861'>1861</a> <a id='n1862' href='#n1862'>1862</a> <a id='n1863' href='#n1863'>1863</a> <a id='n1864' href='#n1864'>1864</a> <a id='n1865' href='#n1865'>1865</a> <a id='n1866' href='#n1866'>1866</a> <a id='n1867' href='#n1867'>1867</a> <a id='n1868' href='#n1868'>1868</a> <a id='n1869' href='#n1869'>1869</a> <a id='n1870' href='#n1870'>1870</a> <a id='n1871' href='#n1871'>1871</a> <a id='n1872' href='#n1872'>1872</a> <a id='n1873' href='#n1873'>1873</a> <a id='n1874' href='#n1874'>1874</a> <a id='n1875' href='#n1875'>1875</a> <a id='n1876' href='#n1876'>1876</a> <a id='n1877' href='#n1877'>1877</a> <a id='n1878' href='#n1878'>1878</a> <a id='n1879' href='#n1879'>1879</a> <a id='n1880' href='#n1880'>1880</a> <a id='n1881' href='#n1881'>1881</a> <a id='n1882' href='#n1882'>1882</a> <a id='n1883' href='#n1883'>1883</a> <a id='n1884' href='#n1884'>1884</a> <a id='n1885' href='#n1885'>1885</a> <a id='n1886' href='#n1886'>1886</a> <a id='n1887' href='#n1887'>1887</a> <a id='n1888' href='#n1888'>1888</a> <a id='n1889' href='#n1889'>1889</a> <a id='n1890' href='#n1890'>1890</a> <a id='n1891' href='#n1891'>1891</a> <a id='n1892' href='#n1892'>1892</a> <a id='n1893' href='#n1893'>1893</a> <a id='n1894' href='#n1894'>1894</a> <a id='n1895' href='#n1895'>1895</a> <a id='n1896' href='#n1896'>1896</a> <a id='n1897' href='#n1897'>1897</a> <a id='n1898' href='#n1898'>1898</a> <a id='n1899' href='#n1899'>1899</a> <a id='n1900' href='#n1900'>1900</a> <a id='n1901' href='#n1901'>1901</a> <a id='n1902' href='#n1902'>1902</a> <a id='n1903' href='#n1903'>1903</a> <a id='n1904' href='#n1904'>1904</a> <a id='n1905' href='#n1905'>1905</a> <a id='n1906' href='#n1906'>1906</a> <a id='n1907' href='#n1907'>1907</a> <a id='n1908' href='#n1908'>1908</a> <a id='n1909' href='#n1909'>1909</a> <a id='n1910' href='#n1910'>1910</a> <a id='n1911' href='#n1911'>1911</a> <a id='n1912' href='#n1912'>1912</a> <a id='n1913' href='#n1913'>1913</a> <a id='n1914' href='#n1914'>1914</a> <a id='n1915' href='#n1915'>1915</a> <a id='n1916' href='#n1916'>1916</a> <a id='n1917' href='#n1917'>1917</a> <a id='n1918' href='#n1918'>1918</a> <a id='n1919' href='#n1919'>1919</a> <a id='n1920' href='#n1920'>1920</a> <a id='n1921' href='#n1921'>1921</a> <a id='n1922' href='#n1922'>1922</a> <a id='n1923' href='#n1923'>1923</a> <a id='n1924' href='#n1924'>1924</a> <a id='n1925' href='#n1925'>1925</a> <a id='n1926' href='#n1926'>1926</a> <a id='n1927' href='#n1927'>1927</a> <a id='n1928' href='#n1928'>1928</a> <a id='n1929' href='#n1929'>1929</a> <a id='n1930' href='#n1930'>1930</a> <a id='n1931' href='#n1931'>1931</a> <a id='n1932' href='#n1932'>1932</a> <a id='n1933' href='#n1933'>1933</a> <a id='n1934' href='#n1934'>1934</a> <a id='n1935' href='#n1935'>1935</a> <a id='n1936' href='#n1936'>1936</a> <a id='n1937' href='#n1937'>1937</a> <a id='n1938' href='#n1938'>1938</a> <a id='n1939' href='#n1939'>1939</a> <a id='n1940' href='#n1940'>1940</a> <a id='n1941' href='#n1941'>1941</a> <a id='n1942' href='#n1942'>1942</a> <a id='n1943' href='#n1943'>1943</a> <a id='n1944' href='#n1944'>1944</a> <a id='n1945' href='#n1945'>1945</a> <a id='n1946' href='#n1946'>1946</a> <a id='n1947' href='#n1947'>1947</a> <a id='n1948' href='#n1948'>1948</a> <a id='n1949' href='#n1949'>1949</a> <a id='n1950' href='#n1950'>1950</a> <a id='n1951' href='#n1951'>1951</a> <a id='n1952' href='#n1952'>1952</a> <a id='n1953' href='#n1953'>1953</a> <a id='n1954' href='#n1954'>1954</a> <a id='n1955' href='#n1955'>1955</a> <a id='n1956' href='#n1956'>1956</a> <a id='n1957' href='#n1957'>1957</a> <a id='n1958' href='#n1958'>1958</a> <a id='n1959' href='#n1959'>1959</a> <a id='n1960' href='#n1960'>1960</a> <a id='n1961' href='#n1961'>1961</a> <a id='n1962' href='#n1962'>1962</a> <a id='n1963' href='#n1963'>1963</a> <a id='n1964' href='#n1964'>1964</a> <a id='n1965' href='#n1965'>1965</a> <a id='n1966' href='#n1966'>1966</a> <a id='n1967' href='#n1967'>1967</a> <a id='n1968' href='#n1968'>1968</a> <a id='n1969' href='#n1969'>1969</a> <a id='n1970' href='#n1970'>1970</a> <a id='n1971' href='#n1971'>1971</a> <a id='n1972' href='#n1972'>1972</a> <a id='n1973' href='#n1973'>1973</a> <a id='n1974' href='#n1974'>1974</a> <a id='n1975' href='#n1975'>1975</a> <a id='n1976' href='#n1976'>1976</a> <a id='n1977' href='#n1977'>1977</a> <a id='n1978' href='#n1978'>1978</a> <a id='n1979' href='#n1979'>1979</a> <a id='n1980' href='#n1980'>1980</a> <a id='n1981' href='#n1981'>1981</a> <a id='n1982' href='#n1982'>1982</a> <a id='n1983' href='#n1983'>1983</a> <a id='n1984' href='#n1984'>1984</a> <a id='n1985' href='#n1985'>1985</a> <a id='n1986' href='#n1986'>1986</a> <a id='n1987' href='#n1987'>1987</a> <a id='n1988' href='#n1988'>1988</a> <a id='n1989' href='#n1989'>1989</a> <a id='n1990' href='#n1990'>1990</a> <a id='n1991' href='#n1991'>1991</a> <a id='n1992' href='#n1992'>1992</a> <a id='n1993' href='#n1993'>1993</a> <a id='n1994' href='#n1994'>1994</a> <a id='n1995' href='#n1995'>1995</a> <a id='n1996' href='#n1996'>1996</a> <a id='n1997' href='#n1997'>1997</a> <a id='n1998' href='#n1998'>1998</a> <a id='n1999' href='#n1999'>1999</a> <a id='n2000' href='#n2000'>2000</a> <a id='n2001' href='#n2001'>2001</a> <a id='n2002' href='#n2002'>2002</a> <a id='n2003' href='#n2003'>2003</a> <a id='n2004' href='#n2004'>2004</a> <a id='n2005' href='#n2005'>2005</a> <a id='n2006' href='#n2006'>2006</a> <a id='n2007' href='#n2007'>2007</a> <a id='n2008' href='#n2008'>2008</a> <a id='n2009' href='#n2009'>2009</a> <a id='n2010' href='#n2010'>2010</a> <a id='n2011' href='#n2011'>2011</a> <a id='n2012' href='#n2012'>2012</a> <a id='n2013' href='#n2013'>2013</a> <a id='n2014' href='#n2014'>2014</a> <a id='n2015' href='#n2015'>2015</a> <a id='n2016' href='#n2016'>2016</a> <a id='n2017' href='#n2017'>2017</a> <a id='n2018' href='#n2018'>2018</a> <a id='n2019' href='#n2019'>2019</a> <a id='n2020' href='#n2020'>2020</a> <a id='n2021' href='#n2021'>2021</a> <a id='n2022' href='#n2022'>2022</a> <a id='n2023' href='#n2023'>2023</a> <a id='n2024' href='#n2024'>2024</a> <a id='n2025' href='#n2025'>2025</a> <a id='n2026' href='#n2026'>2026</a> <a id='n2027' href='#n2027'>2027</a> <a id='n2028' href='#n2028'>2028</a> <a id='n2029' href='#n2029'>2029</a> <a id='n2030' href='#n2030'>2030</a> <a id='n2031' href='#n2031'>2031</a> <a id='n2032' href='#n2032'>2032</a> <a id='n2033' href='#n2033'>2033</a> <a id='n2034' href='#n2034'>2034</a> <a id='n2035' href='#n2035'>2035</a> <a id='n2036' href='#n2036'>2036</a> <a id='n2037' href='#n2037'>2037</a> <a id='n2038' href='#n2038'>2038</a> <a id='n2039' href='#n2039'>2039</a> <a id='n2040' href='#n2040'>2040</a> <a id='n2041' href='#n2041'>2041</a> <a id='n2042' href='#n2042'>2042</a> <a id='n2043' href='#n2043'>2043</a> <a id='n2044' href='#n2044'>2044</a> <a id='n2045' href='#n2045'>2045</a> <a id='n2046' href='#n2046'>2046</a> <a id='n2047' href='#n2047'>2047</a> <a id='n2048' href='#n2048'>2048</a> <a id='n2049' href='#n2049'>2049</a> <a id='n2050' href='#n2050'>2050</a> <a id='n2051' href='#n2051'>2051</a> <a id='n2052' href='#n2052'>2052</a> <a id='n2053' href='#n2053'>2053</a> <a id='n2054' href='#n2054'>2054</a> <a id='n2055' href='#n2055'>2055</a> <a id='n2056' href='#n2056'>2056</a> <a id='n2057' href='#n2057'>2057</a> <a id='n2058' href='#n2058'>2058</a> <a id='n2059' href='#n2059'>2059</a> <a id='n2060' href='#n2060'>2060</a> <a id='n2061' href='#n2061'>2061</a> <a id='n2062' href='#n2062'>2062</a> <a id='n2063' href='#n2063'>2063</a> <a id='n2064' href='#n2064'>2064</a> <a id='n2065' href='#n2065'>2065</a> <a id='n2066' href='#n2066'>2066</a> <a id='n2067' href='#n2067'>2067</a> <a id='n2068' href='#n2068'>2068</a> <a id='n2069' href='#n2069'>2069</a> <a id='n2070' href='#n2070'>2070</a> <a id='n2071' href='#n2071'>2071</a> <a id='n2072' href='#n2072'>2072</a> <a id='n2073' href='#n2073'>2073</a> <a id='n2074' href='#n2074'>2074</a> <a id='n2075' href='#n2075'>2075</a> <a id='n2076' href='#n2076'>2076</a> <a id='n2077' href='#n2077'>2077</a> <a id='n2078' href='#n2078'>2078</a> <a id='n2079' href='#n2079'>2079</a> <a id='n2080' href='#n2080'>2080</a> <a id='n2081' href='#n2081'>2081</a> <a id='n2082' href='#n2082'>2082</a> <a id='n2083' href='#n2083'>2083</a> <a id='n2084' href='#n2084'>2084</a> <a id='n2085' href='#n2085'>2085</a> <a id='n2086' href='#n2086'>2086</a> <a id='n2087' href='#n2087'>2087</a> <a id='n2088' href='#n2088'>2088</a> <a id='n2089' href='#n2089'>2089</a> <a id='n2090' href='#n2090'>2090</a> <a id='n2091' href='#n2091'>2091</a> <a id='n2092' href='#n2092'>2092</a> <a id='n2093' href='#n2093'>2093</a> <a id='n2094' href='#n2094'>2094</a> <a id='n2095' href='#n2095'>2095</a> <a id='n2096' href='#n2096'>2096</a> <a id='n2097' href='#n2097'>2097</a> <a id='n2098' href='#n2098'>2098</a> <a id='n2099' href='#n2099'>2099</a> <a id='n2100' href='#n2100'>2100</a> <a id='n2101' href='#n2101'>2101</a> <a id='n2102' href='#n2102'>2102</a> <a id='n2103' href='#n2103'>2103</a> <a id='n2104' href='#n2104'>2104</a> <a id='n2105' href='#n2105'>2105</a> <a id='n2106' href='#n2106'>2106</a> <a id='n2107' href='#n2107'>2107</a> <a id='n2108' href='#n2108'>2108</a> <a id='n2109' href='#n2109'>2109</a> <a id='n2110' href='#n2110'>2110</a> <a id='n2111' href='#n2111'>2111</a> <a id='n2112' href='#n2112'>2112</a> <a id='n2113' href='#n2113'>2113</a> <a id='n2114' href='#n2114'>2114</a> <a id='n2115' href='#n2115'>2115</a> <a id='n2116' href='#n2116'>2116</a> <a id='n2117' href='#n2117'>2117</a> <a id='n2118' href='#n2118'>2118</a> <a id='n2119' href='#n2119'>2119</a> <a id='n2120' href='#n2120'>2120</a> <a id='n2121' href='#n2121'>2121</a> <a id='n2122' href='#n2122'>2122</a> <a id='n2123' href='#n2123'>2123</a> <a id='n2124' href='#n2124'>2124</a> <a id='n2125' href='#n2125'>2125</a> <a id='n2126' href='#n2126'>2126</a> <a id='n2127' href='#n2127'>2127</a> <a id='n2128' href='#n2128'>2128</a> <a id='n2129' href='#n2129'>2129</a> <a id='n2130' href='#n2130'>2130</a> <a id='n2131' href='#n2131'>2131</a> <a id='n2132' href='#n2132'>2132</a> <a id='n2133' href='#n2133'>2133</a> <a id='n2134' href='#n2134'>2134</a> <a id='n2135' href='#n2135'>2135</a> <a id='n2136' href='#n2136'>2136</a> <a id='n2137' href='#n2137'>2137</a> <a id='n2138' href='#n2138'>2138</a> <a id='n2139' href='#n2139'>2139</a> <a id='n2140' href='#n2140'>2140</a> <a id='n2141' href='#n2141'>2141</a> <a id='n2142' href='#n2142'>2142</a> <a id='n2143' href='#n2143'>2143</a> <a id='n2144' href='#n2144'>2144</a> <a id='n2145' href='#n2145'>2145</a> <a id='n2146' href='#n2146'>2146</a> <a id='n2147' href='#n2147'>2147</a> <a id='n2148' href='#n2148'>2148</a> <a id='n2149' href='#n2149'>2149</a> <a id='n2150' href='#n2150'>2150</a> <a id='n2151' href='#n2151'>2151</a> <a id='n2152' href='#n2152'>2152</a> <a id='n2153' href='#n2153'>2153</a> <a id='n2154' href='#n2154'>2154</a> <a id='n2155' href='#n2155'>2155</a> <a id='n2156' href='#n2156'>2156</a> <a id='n2157' href='#n2157'>2157</a> <a id='n2158' href='#n2158'>2158</a> <a id='n2159' href='#n2159'>2159</a> <a id='n2160' href='#n2160'>2160</a> <a id='n2161' href='#n2161'>2161</a> <a id='n2162' href='#n2162'>2162</a> <a id='n2163' href='#n2163'>2163</a> <a id='n2164' href='#n2164'>2164</a> <a id='n2165' href='#n2165'>2165</a> <a id='n2166' href='#n2166'>2166</a> <a id='n2167' href='#n2167'>2167</a> <a id='n2168' href='#n2168'>2168</a> <a id='n2169' href='#n2169'>2169</a> <a id='n2170' href='#n2170'>2170</a> <a id='n2171' href='#n2171'>2171</a> <a id='n2172' href='#n2172'>2172</a> <a id='n2173' href='#n2173'>2173</a> <a id='n2174' href='#n2174'>2174</a> <a id='n2175' href='#n2175'>2175</a> <a id='n2176' href='#n2176'>2176</a> <a id='n2177' href='#n2177'>2177</a> <a id='n2178' href='#n2178'>2178</a> <a id='n2179' href='#n2179'>2179</a> <a id='n2180' href='#n2180'>2180</a> <a id='n2181' href='#n2181'>2181</a> <a id='n2182' href='#n2182'>2182</a> <a id='n2183' href='#n2183'>2183</a> <a id='n2184' href='#n2184'>2184</a> <a id='n2185' href='#n2185'>2185</a> <a id='n2186' href='#n2186'>2186</a> </pre></td> <td class='lines'><pre><code><span class="hl slc"># translation of drakwizard-uk.po to ukrainian</span> <span class="hl slc"># Ukrainian translation of drakwizard</span> <span class="hl slc"># Copyright (C) 2003 Free Software Foundation, Inc.</span> <span class="hl slc"># Gladky Dima <gladimdim@mail.ru>, 2002.</span> <span class="hl slc"># Taras Boychuk <btr1@torba.com>, 2003</span> <span class="hl slc">#</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"Project-Id-Version: drakwizard-uk</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"POT-Creation-Date: 2003-11-14 14:18+0000</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"PO-Revision-Date: 2003-09-09 09:04+0300</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"Last-Translator: Taras Boychuk <btr1@torba.com></span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"Language-Team: ukrainian <uk@li.org></span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"MIME-Version: 1.0</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"Content-Type: text/plain; charset=KOI8-U</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"Content-Transfer-Encoding: 8bit</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"X-Generator: KBabel 1.0.1</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl slc">#: ../Wiztemplate.pm_.c:31</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"configuration wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ ��ͦ�����"</span> <span class="hl slc">#: ../Wiztemplate.pm_.c:60 ../ftp_wizard/Proftpd.pm_.c:63</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:71 ../proxy_wizard/Squid.pm_.c:81</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:88 ../samba_wizard/Samba.pm_.c:140</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:188 ../time_wizard/Ntp.pm_.c:137</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:83</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"Warning."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������"</span> <span class="hl slc">#: ../Wiztemplate.pm_.c:64 ../ftp_wizard/Proftpd.pm_.c:68</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:76 ../news_wizard/Inn.pm_.c:81</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:83 ../postfix_wizard/Postfix.pm_.c:67</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:80 ../samba_wizard/Samba.pm_.c:96</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:157 ../samba_wizard/Samba.pm_.c:194</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:115 ../web_wizard/Apache.pm_.c:123</span> <span class="hl kwa">msgid</span> <span class="hl str">"Error."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������."</span> <span class="hl slc">#: ../Wiztemplate.pm_.c:78 ../client_wizard/Bind_client.pm_.c:97</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:110 ../dns_wizard/Bind.pm_.c:84</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:87 ../news_wizard/Inn.pm_.c:96</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:102 ../postfix_wizard/Postfix.pm_.c:91</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:172 ../samba_wizard/Samba.pm_.c:221</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:144</span> <span class="hl kwa">msgid</span> <span class="hl str">"Congratulations"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���������Ѥ��"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:38 ../client_wizard/Bind_client.pm_.c:55</span> <span class="hl kwa">msgid</span> <span class="hl str">"DNS Client Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ������������ �̦���� DNS"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:47</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"You must first run the DNS server wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������, �� ����� ���� ��ͦΦ���������, ��� ��������� ��� ��ͦ����"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:55</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"A client of your local network is a machine connected to the network having "</span> <span class="hl str">"its own name and IP number."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�̦��� ���ϧ ͦ����ϧ ����֦ - �� ������, Ц�'������ �� ���������, �� ��� "</span> <span class="hl str">"������ ����� �� IP-������."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:55</span> <span class="hl kwa">msgid</span> <span class="hl str">"Press next to begin, or Cancel to leave this wizard."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�����Φ�� '��̦', ��� ������, ��� '���������', ��� ����� � ��ͦ�����."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:55</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The server will use the informations you enter here to make the name of the "</span> <span class="hl str">"client available to other machines into your network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"������ ���������� �������æ�, ��� �� ����� ���, ��� ������� ��'� �̦���� "</span> <span class="hl str">"צ����� ��� ����� ����� � ���ϧ ����֦."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:55</span> <span class="hl kwa">msgid</span> <span class="hl str">"This wizard will help you in adding a new client in your local DNS."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ��ͦ���� �������� ������ ������ �̦���� �� ������ ���������� DNS."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:61</span> <span class="hl kwa">msgid</span> <span class="hl str">"(you don't need to type the domain after the name)"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"(��� �� ���Ҧ��� ��������� ������ Ц��� �����)"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:61</span> <span class="hl kwa">msgid</span> <span class="hl str">"Client identification:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������Ʀ��æ� �̦����:"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:61</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Note that the given IP number and client name should be unique in the "</span> <span class="hl str">"network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��������, �� IP-������ � ��'� �̦���� ����� ���� �Φ�������� � ����֦."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:61</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Your client on the network will be identified by name, as in clientname."</span> <span class="hl str">"company.net. Every machine on the network must have a (unique) IP address, "</span> <span class="hl str">"in the usual dotted syntax."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� �̦��� � ����֦ ���� ������Ʀ������� �� ��'��, ��������� clientname."</span> <span class="hl str">"company.net. ����� ������ � ����֦ ������� ���� ���� (�Φ������) IP-������."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:67</span> <span class="hl kwa">msgid</span> <span class="hl str">"Name of the machine:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� ������:"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:68</span> <span class="hl kwa">msgid</span> <span class="hl str">"IP number of the machine:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"IP-������ ������:"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:73 ../dhcp_wizard/Dhcp.pm_.c:80</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:90</span> <span class="hl kwa">msgid</span> <span class="hl str">"Warning"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:73 ../dhcp_wizard/Dhcp.pm_.c:80</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:83</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"You are in dhcp, server may not work with your configuration."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"������������</span><span class="hl esc">\\</span><span class="hl str">n�� ����������� � dhcp, ������ ���� �� ��������� � ����� "</span> <span class="hl str">"���Ʀ����æ��."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:78 ../client_wizard/Bind_client.pm_.c:83</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:85 ../dhcp_wizard/Dhcp.pm_.c:95</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"Error"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:78</span> <span class="hl kwa">msgid</span> <span class="hl str">"System error, no configuration done"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� �������, ���Ʀ����æ� �� �ͦ����"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:83 ../dns_wizard/Bind.pm_.c:64</span> <span class="hl kwa">msgid</span> <span class="hl str">"This is not a valid address... press next to continue"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�� ��צ��� ������... �����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span><span class="hl str">, ��� ����������"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:88</span> <span class="hl kwa">msgid</span> <span class="hl str">"Adding a new client to your network"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� ������ �̦���� �� ���ϧ ����֦"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:88</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters needed to add a client to your "</span> <span class="hl str">"network:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ��Φ, �˦ ���Ҧ�Φ ��� ����, ��� ������ �̦���� �� "</span> <span class="hl str">"���ϧ ����֦:"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:88</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"To accept these values, and add your client, click the Next button or use "</span> <span class="hl str">"the Back button to correct them."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� �������� æ �������� � ������ �̦����, �����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span><span class="hl str">, ��� �����Φ�� "</span> <span class="hl str">"</span><span class="hl esc">\"</span><span class="hl str">�����</span><span class="hl esc">\"</span><span class="hl str">, ��� �� ���������."</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:90</span> <span class="hl kwa">msgid</span> <span class="hl str">"Client name"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� �̦����"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:91</span> <span class="hl kwa">msgid</span> <span class="hl str">"Client IP:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"IP-������ �̦����:"</span> <span class="hl slc">#: ../client_wizard/Bind_client.pm_.c:97</span> <span class="hl kwa">msgid</span> <span class="hl str">"The wizard successfully added the client."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ����� �̦����."</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:38 ../dhcp_wizard/Dhcp.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"DHCP Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� DHCP"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"DHCP is a service that automatically assigns networking addresses to your "</span> <span class="hl str">"workstations."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"DHCP - �� ���צ�, ���� ����������� ����� ������צ ������ ����� ������� "</span> <span class="hl str">"����æ��."</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"This wizard will help you configuring the DHCP services of your server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ��ͦ���� �������� ����������� ���צ�� DHCP ������ �������."</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:57</span> <span class="hl kwa">msgid</span> <span class="hl str">"Range of addresses used by dhcp"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� �����, �˦ ����������դ dhcp"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:57</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Select the range of addresses assigned to the workstations by the DHCP "</span> <span class="hl str">"service; unless you have special needs, you can safely accept the proposed "</span> <span class="hl str">"values."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"���֦�� �������� �����, ������� ������� ����æ�� ���צ��� DHCP; ���� � �� �� "</span> <span class="hl str">"����� ���æ������ ������, �� ������ �������� �������� �����������Φ ��������."</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:64 ../dhcp_wizard/Dhcp.pm_.c:102</span> <span class="hl kwa">msgid</span> <span class="hl str">"Lowest IP Address:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� IP-������:"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:65 ../dhcp_wizard/Dhcp.pm_.c:103</span> <span class="hl kwa">msgid</span> <span class="hl str">"Highest IP Address:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������� IP-������:"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:70</span> <span class="hl kwa">msgid</span> <span class="hl str">"Interface the dhcp server must listen to"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:85</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"The IP range specified is not correct."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� IP-����� ������� ��צ���."</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:90</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"The IP range specified is not in server address range."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�������� �������� IP-����� �� ����������� � �������̦ ��������� ����� �������"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:95</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"The IP of the server must not be in range."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"IP ������� �� ������� ���� � �������̦"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:100</span> <span class="hl kwa">msgid</span> <span class="hl str">"Configuring the DHCP Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���������� ������ DHCP"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:100</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters needed to configure your DHCP "</span> <span class="hl str">"service:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ���������, �˦ ���Ҧ�Φ, ��� ���������� ��� DHCP "</span> <span class="hl str">"���צ�:"</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:104</span> <span class="hl kwa">msgid</span> <span class="hl str">"Interface:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl slc">#: ../dhcp_wizard/Dhcp.pm_.c:110</span> <span class="hl kwa">msgid</span> <span class="hl str">"The wizard successfully configured the DHCP services of your server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ���������� ���צ�� DHCP �� ������ �����Ҧ."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:47</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"DNS (Domain Name Server) is the service that maps an IP address of a machine "</span> <span class="hl str">"with an internet host name."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"DNS (Domain Name Server) - �� ���צ�, ���� ����� ����Φ ����� � �������Ԧ."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:47</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"DNS configuration wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ������������ DNS"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:47</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"This wizard will help you configuring the DNS services of your server. This "</span> <span class="hl str">"configuration will provide a local DNS service for local computers names, "</span> <span class="hl str">"with non-local requests forwarded to an outside DNS."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� ��ͦ���� �������� ����Ʀ�������� ���צ�� DNS �� ������ �����Ҧ. �� "</span> <span class="hl str">"���Ʀ����æ� ������� ��������� ���צ� DNS ��� ��������� ���� ����'���Ҧ�, � "</span> <span class="hl str">"��������Φ ������ צĦ��� �� ���Φ������ DNS."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:52</span> <span class="hl kwa">msgid</span> <span class="hl str">"DNS Server Addresses"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ DNS-�������"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:52</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"DNS will allow your network to communicate with the Internet using standard "</span> <span class="hl str">"internet host names. In order to configure DNS, you must provide the IP "</span> <span class="hl str">"address of primary and secondary DNS server; usually this address are given "</span> <span class="hl str">"by your Internet provider."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"DNS ������� �����צ��� ��ۦ� ����֦ ��'������� � ����������, �������������� "</span> <span class="hl str">"��������Φ ����� �����. ��� ����������� DNS, ��� ���Ҧ��� ���������� IP-"</span> <span class="hl str">"������ ��������� � ��������� �����Ҧ� DNS; �� �������, �� ������ ��������� "</span> <span class="hl str">"����� ����������� ���������."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:52</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"IP addresses are a dotted list of four numbers smaller than 256"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"IP-������ - �� ���̦���Φ��� ���� ����� ������, �˦ ���ۦ �� 256."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:58</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"Primary DNS Address"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� ������ DNS:"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:59 ../dns_wizard/Bind.pm_.c:78</span> <span class="hl kwa">msgid</span> <span class="hl str">"Secondary DNS Address:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� ������ DNS:"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:69</span> <span class="hl kwa">msgid</span> <span class="hl str">"You have entered an empty address for the DNS server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�� ����� ������� ������ DNS-�������."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:70</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Your setting could be accepted, but you will not be able to identify machine "</span> <span class="hl str">"names outside your local network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ۦ ��������� ������ ���� ������Ԧ, ��� �� �� ������� ������Ʀ������ ����� "</span> <span class="hl str">"����� ���� ����� �������."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:71</span> <span class="hl kwa">msgid</span> <span class="hl str">"Press next to leave these values empty, or back to enter a value."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span><span class="hl str">, ��� �������� æ �������� �����Φ��, ���</span> <span class="hl esc">\"</span><span class="hl str">�����</span><span class="hl esc">\"</span><span class="hl str">, ��� "</span> <span class="hl str">"������ ��."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:75</span> <span class="hl kwa">msgid</span> <span class="hl str">"Configuring the DNS Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���������� DNS-������"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:75</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters needed to configure your DNS "</span> <span class="hl str">"service:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ���������, ����Ȧ�Φ ��� ������������ ������ "</span> <span class="hl str">"���צ�� DNS:"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:75 ../ftp_wizard/Proftpd.pm_.c:74</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"To accept these values, and configure your server, click the Next button or "</span> <span class="hl str">"use the Back button to correct them"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� �������� æ �������� � ����������� ��� ������, �����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span> <span class="hl str">��� "</span> <span class="hl str">"�����Φ��</span> <span class="hl esc">\"</span><span class="hl str">�����</span><span class="hl esc">\"</span><span class="hl str">, ��� �ͦ���� ��."</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:77</span> <span class="hl kwa">msgid</span> <span class="hl str">"Primary DNS Address:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� ������ DNS:"</span> <span class="hl slc">#: ../dns_wizard/Bind.pm_.c:85</span> <span class="hl kwa">msgid</span> <span class="hl str">"The wizard successfully configured the DNS services of your server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ��������� ���צ�� DNS �� ������ �����Ҧ."</span> <span class="hl slc">#: ../drakwizard.pl_.c:57</span> <span class="hl kwa">msgid</span> <span class="hl str">"Drakwizard wizard selection"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��¦� ��ͦ����� Drakwizard"</span> <span class="hl slc">#: ../drakwizard.pl_.c:58</span> <span class="hl kwa">msgid</span> <span class="hl str">"Please select a wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���� �����, ����Ҧ�� ��ͦ�����"</span> <span class="hl slc">#: ../drakwizard.pl_.c:137</span> <span class="hl slc">#, c-format</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"</span><span class="hl ipl">%s</span> <span class="hl str">is not installed</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"Click</span> <span class="hl esc">\"</span><span class="hl str">Next</span><span class="hl esc">\"</span> <span class="hl str">to install or</span> <span class="hl esc">\"</span><span class="hl str">Cancel</span><span class="hl esc">\"</span> <span class="hl str">to quit"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"</span><span class="hl ipl">%s</span> <span class="hl str">�� �����������</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"�����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span><span class="hl str">, ��� ����������, ���</span> <span class="hl esc">\"</span><span class="hl str">���������</span><span class="hl esc">\"</span><span class="hl str">, ��� �����"</span> <span class="hl slc">#: ../drakwizard.pl_.c:141</span> <span class="hl kwa">msgid</span> <span class="hl str">"installation failed"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ �������"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:45</span> <span class="hl kwa">msgid</span> <span class="hl str">"FTP Server Configuration Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ������������ ������� FTP"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:45</span> <span class="hl kwa">msgid</span> <span class="hl str">"This wizard will help you configuring the FTP Server for your network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ��ͦ���� �������� ��� ����������� FTP-������ ��� ���ϧ ����֦."</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"Don't check any box if you don't want to activate your FTP Server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ��ͦ����� ������� ������, ���� �� �� ������ ����צ������ FTP-������."</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"FTP Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ FTP"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"Select the kind of FTP service you want to activate:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����Ҧ�� ��� ���צ�� FTP, ���� �� ������ ����������:"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Your server can act as an FTP Server toward your internal network (intranet) "</span> <span class="hl str">"and as an FTP Server for the Internet."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� ������ ���� Ħ��� �� FTP-������ ���ϧ ����Ҧ���ϧ (��������) ����֦, ��� "</span> <span class="hl str">"�� FTP-������ ��� ���������."</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:57</span> <span class="hl kwa">msgid</span> <span class="hl str">"Enable the FTP Server for the Intranet"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��������� FTP-������ ��� Intranet"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:58</span> <span class="hl kwa">msgid</span> <span class="hl str">"Enable the FTP Server for the Internet"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��������� FTP-������ ��� ���������"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:63</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Warning</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"You are in dhcp, server may not work with your configuration."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"������������</span><span class="hl esc">\\</span><span class="hl str">n�� ����������� � dhcp, ������ ���� �� ��������� � ����� "</span> <span class="hl str">"���Ʀ����æ��."</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:68</span> <span class="hl kwa">msgid</span> <span class="hl str">"Sorry, you must be root to do this..."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������, ��� ���Ҧ��� ���� ����� ��ͦΦ��������, ��� �� �������..."</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:73</span> <span class="hl kwa">msgid</span> <span class="hl str">"Configuring the FTP Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ ������� FTP"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:73</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"needed to configure your FTP Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ��Φ, �˦ ���Ҧ�Φ ��� ������������ ������ FTP- "</span> <span class="hl str">"�������"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:76 ../ftp_wizard/Proftpd.pm_.c:77</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:204 ../samba_wizard/Samba.pm_.c:205</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:206 ../web_wizard/Apache.pm_.c:131</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:132</span> <span class="hl kwa">msgid</span> <span class="hl str">"disabled"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��������"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:76 ../ftp_wizard/Proftpd.pm_.c:77</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:204 ../samba_wizard/Samba.pm_.c:205</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:206 ../web_wizard/Apache.pm_.c:131</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:132</span> <span class="hl kwa">msgid</span> <span class="hl str">"enabled"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�צ������"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:80</span> <span class="hl kwa">msgid</span> <span class="hl str">"Intranet FTP Server:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� FTP-������: "</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:81</span> <span class="hl kwa">msgid</span> <span class="hl str">"Internet FTP Server:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� FTP-������:"</span> <span class="hl slc">#: ../ftp_wizard/Proftpd.pm_.c:87</span> <span class="hl kwa">msgid</span> <span class="hl str">"The wizard successfully configured your Intranet/Internet FTP Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ���������� ��� ��������/�������� FTP-������"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:44</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"This wizard will help you configuring the Internet News services for your "</span> <span class="hl str">"network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� �������� ��� ����������� ���צ�� ��������-����� ��� ���ϧ ����֦."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:44</span> <span class="hl kwa">msgid</span> <span class="hl str">"Welcome to the News Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������� ������� �� ��ͦ����� �����"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:49</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Internet host names must be in the form</span> <span class="hl esc">\"</span><span class="hl str">host.domain.domaintype</span><span class="hl esc">\"</span><span class="hl str">; for "</span> <span class="hl str">"example, if your provider is</span> <span class="hl esc">\"</span><span class="hl str">provider.com</span><span class="hl esc">\"</span><span class="hl str">, the internet news server is "</span> <span class="hl str">"usually</span> <span class="hl esc">\"</span><span class="hl str">news.provider.com</span><span class="hl esc">\"</span><span class="hl str">."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"����� ����� � �������Ԧ �����Φ ���� � �����Ħ</span> <span class="hl esc">\\</span><span class="hl str">������.�����.���_������</span><span class="hl esc">\"</span><span class="hl str">; "</span> <span class="hl str">"���������, ���� ��� ��������� �</span> <span class="hl esc">\"</span><span class="hl str">provider.com</span><span class="hl esc">\"</span><span class="hl str">, ��Ħ ������ ����� �������� "</span> <span class="hl str">"�</span> <span class="hl esc">\"</span><span class="hl str">news.provider.com</span><span class="hl esc">\"</span><span class="hl str">."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:49</span> <span class="hl kwa">msgid</span> <span class="hl str">"News Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ �����"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:49</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The news server name is the name of the host providing the Internet news to "</span> <span class="hl str">"your network; the name is usually provided by your provider."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"����� ������� ����� - �� ����� ������, ��� �������� ��������-������ �� ���ϧ "</span> <span class="hl str">"����֦; �� ����� �������� �������������� ����� �����������."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:54</span> <span class="hl kwa">msgid</span> <span class="hl str">"News Server Name:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� ������� �����:"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:60</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Depending on the kind of internet connection you have, an appropriate "</span> <span class="hl str">"polling period can change between 6 and 24 hours."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"� ��������Ԧ צ� ����Ԧ ������ ��������-��'���� ��Ҧ�� ���������� ���� "</span> <span class="hl str">"�ͦ�������� ͦ� 6 � 24 ��������."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:60</span> <span class="hl kwa">msgid</span> <span class="hl str">"Polling Period"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��Ҧ�� ����������"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:60</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Your server will regularly poll the News Server for obtaning the latest "</span> <span class="hl str">"Internet News; the polling period set the interval between two consecutive "</span> <span class="hl str">"polling."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� ������ ���� ��������� Ц�'���������� �� ������� ����� ��� ��������� "</span> <span class="hl str">"��������Φ��� �����; ��Ҧ�� ��������� ���������� �������� ͦ� ����� "</span> <span class="hl str">"���̦������� ������������."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:65</span> <span class="hl kwa">msgid</span> <span class="hl str">"Polling Period (Hours):"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��Ҧ�� ���������� (� �������):"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:76</span> <span class="hl kwa">msgid</span> <span class="hl str">"The news server name is not correct"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� ������� ����� ��צ���"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:81</span> <span class="hl kwa">msgid</span> <span class="hl str">"The polling period is not correct"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��Ҧ�� ��������� ��צ����."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:86</span> <span class="hl kwa">msgid</span> <span class="hl str">"Configuring the Internet News"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ ��������-�����"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:86</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters</span><span class="hl esc">\n</span><span class="hl str">"</span> <span class="hl str">"needed to configure your Internet News Service:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ���������, �˦ ���Ҧ�Φ ��� ������������ ���צ�� "</span> <span class="hl str">"��������-�����:"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:87 ../postfix_wizard/Postfix.pm_.c:82</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:148 ../proxy_wizard/Squid.pm_.c:161</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:201 ../web_wizard/Apache.pm_.c:129</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"To accept these values, and configure your server, click the Next button or "</span> <span class="hl str">"use the Back button to correct them."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� �������� æ �������� � ����������� ��� ������, �����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span> <span class="hl str">��� "</span> <span class="hl str">"�����Φ��</span> <span class="hl esc">\"</span><span class="hl str">�����</span><span class="hl esc">\"</span><span class="hl str">, ��� �ͦ���� ��."</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:89</span> <span class="hl kwa">msgid</span> <span class="hl str">"News Server:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ �����:"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:90</span> <span class="hl kwa">msgid</span> <span class="hl str">"Polling Interval:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� ����������:"</span> <span class="hl slc">#: ../news_wizard/Inn.pm_.c:96</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard successfully configured your Internet News service of your server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ���������� ��� ������ ��������-�����."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:34</span> <span class="hl kwa">msgid</span> <span class="hl str">"NFS Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� NFS "</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:45 ../proxy_wizard/Squid.pm_.c:37</span> <span class="hl slc">#: ../samba_wizard/Samba.pm_.c:58</span> <span class="hl kwa">msgid</span> <span class="hl str">"All - No access restriction"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� - ��� ��������� �������."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:46 ../proxy_wizard/Squid.pm_.c:38</span> <span class="hl kwa">msgid</span> <span class="hl str">"Local Network - access for local network (recommended)"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� ������ - ������ �� �������ϧ ����֦ (�������������)"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"NFS Server Configuration Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ������������ NFS-�������"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:51</span> <span class="hl kwa">msgid</span> <span class="hl str">"This wizard will help you configuring the NFS Server for your network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ��ͦ���� �������� ��� ����������� ������ NFS ��� ���ϧ ����֦."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:56</span> <span class="hl kwa">msgid</span> <span class="hl str">"NFS Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ NFS"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:59</span> <span class="hl kwa">msgid</span> <span class="hl str">"Directory:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����:"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:64 ../proxy_wizard/Squid.pm_.c:104</span> <span class="hl kwa">msgid</span> <span class="hl str">"Access Control"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������� �������"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:64 ../proxy_wizard/Squid.pm_.c:104</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Choose the level that suits your needs. If you don't know, the Local Network "</span> <span class="hl str">"level is usually the most appropriate. Beware that the All level may be not "</span> <span class="hl str">"secure."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"����Ҧ�� Ҧ����, ���� ��¦���� צ���צ��� ����� ��������. ���� �� �� ������, "</span> <span class="hl str">"�� ��� ���Ҧ���, �� Ҧ���� �������ϧ ����֦ ���� ��������� �������. ����Φ�� "</span> <span class="hl str">"����� �� ��, �� Ҧ���� ��� ���� �� ����������� ������ϧ �������."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:64</span> <span class="hl kwa">msgid</span> <span class="hl str">"NFS can be restricted to a certain ip class"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"NFS ������� צ���צ���� ������� ip-�����צ"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:75 ../proxy_wizard/Squid.pm_.c:117</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Access will be allowed for hosts on the network. Here is the information "</span> <span class="hl str">"found about your current local network, you can modify it if needed."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"������ ���� ��������� ��� ����� � ����֦. ��� �������æ�, ��� �������� ��� "</span> <span class="hl str">"���� �������� ������, �� ������ ��������� ��, ���� � ����� � �������."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:75 ../proxy_wizard/Squid.pm_.c:117</span> <span class="hl kwa">msgid</span> <span class="hl str">"Grant access on local network"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ ������ �� �������ϧ ����֦"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:77</span> <span class="hl kwa">msgid</span> <span class="hl str">"Authorized network:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ ������:"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:83 ../samba_wizard/Samba.pm_.c:157</span> <span class="hl slc">#: ../web_wizard/Apache.pm_.c:117</span> <span class="hl kwa">msgid</span> <span class="hl str">"The path you entered does not exist."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�����, ���� �� �����, �� ���դ."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:88</span> <span class="hl kwa">msgid</span> <span class="hl str">"The wizard collected the following parameters."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ���������."</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:94</span> <span class="hl kwa">msgid</span> <span class="hl str">"Exported dir:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���� ��� ��������:"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:95</span> <span class="hl kwa">msgid</span> <span class="hl str">"Access :"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������:"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:96</span> <span class="hl kwa">msgid</span> <span class="hl str">"Netmask :"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�����:"</span> <span class="hl slc">#: ../nfs_wizard/NFS.pm_.c:102</span> <span class="hl kwa">msgid</span> <span class="hl str">"The wizard successfully configured your NFS Server"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ���������� ��� NFS-������"</span> <span class="hl slc">#: ../placeholder.h:7</span> <span class="hl kwa">msgid</span> <span class="hl str">"Cancel"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���������"</span> <span class="hl slc">#: ../placeholder.h:8</span> <span class="hl kwa">msgid</span> <span class="hl str">"Next ->"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��̦ ->"</span> <span class="hl slc">#: ../placeholder.h:9</span> <span class="hl kwa">msgid</span> <span class="hl str">"<- Previous"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"<- �����"</span> <span class="hl slc">#. I18N: it is important to have this properly aligned.</span> <span class="hl slc">#. it will be displayed with a monospace font; and the alignment</span> <span class="hl slc">#. must be the same as for the command "df -h" on the command line</span> <span class="hl slc">#.</span> <span class="hl slc">#: ../placeholder.h:14</span> <span class="hl kwa">msgid</span> <span class="hl str">"Filesystem Size Used Avail Use% Mounted on"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������� ������� ���ͦ� ����� ����� ���% ����� ����������"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:47</span> <span class="hl kwa">msgid</span> <span class="hl str">"Internet Mail Configuration Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ������������ ��������-�����"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:47</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"This wizard will help you configuring the Internet Mail services for your "</span> <span class="hl str">"network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� �������� ��� ����������� ���צ�� ��������-����� ��� ���ϧ ����֦."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:52</span> <span class="hl kwa">msgid</span> <span class="hl str">"Outgoing Mail Address"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������ ��Ȧ��ϧ �����"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:52</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"This should be chosen consistently with the address you use for incoming "</span> <span class="hl str">"mail."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ��� ���� ������� צ���צ��� �� ������, ��� �� ����������դ�� ��� �Ȧ��ϧ "</span> <span class="hl str">"�����."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:52</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"You can select the kind of address that outgoing mail will show in the "</span> <span class="hl str">"</span><span class="hl esc">\"</span><span class="hl str">From:</span><span class="hl esc">\"</span> <span class="hl str">and</span> <span class="hl esc">\"</span><span class="hl str">Reply-to</span><span class="hl esc">\"</span> <span class="hl str">field."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ������ ������� ��� ������, ��� ������������ ��Ȧ��� ����� � �����</span> <span class="hl esc">\"</span><span class="hl str">���:"</span> <span class="hl str">"</span><span class="hl esc">\"</span> <span class="hl str">�</span> <span class="hl esc">\"</span><span class="hl str">�����צ���</span><span class="hl esc">\"</span><span class="hl str">."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:58</span> <span class="hl kwa">msgid</span> <span class="hl str">"Masquerade domain name:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��������� ����� ������"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:63</span> <span class="hl kwa">msgid</span> <span class="hl str">"Warning:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������:"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:63</span> <span class="hl kwa">msgid</span> <span class="hl str">"You entered an empty address for the mail gateway."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�� ����� ������� ������ ��� ����� �����."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:63</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Your choice can be accepted, but this will not allow you to send mail "</span> <span class="hl str">"outside your local network. Press next to continue, or back to enter a value."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� ��¦� ���� ��������, ��� �� �� ��������� ��� צ��������� ����� �� ��֦ "</span> <span class="hl str">"���ϧ �������ϧ ����֦. �����Φ��</span> <span class="hl esc">\"</span><span class="hl str">��̦</span><span class="hl esc">\"</span><span class="hl str">, ��� ����������, ���</span> <span class="hl esc">\"</span><span class="hl str">�����</span><span class="hl esc">\"</span><span class="hl str">, "</span> <span class="hl str">"��� ������ ��������."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:67</span> <span class="hl kwa">msgid</span> <span class="hl str">"Masquerade not good!"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�ͦ��æ� ������!"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:71 ../postfix_wizard/Postfix.pm_.c:84</span> <span class="hl kwa">msgid</span> <span class="hl str">"Internet Mail Gateway"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���� ��������-�����"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:71</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Internet host names must be in the form</span> <span class="hl esc">\"</span><span class="hl str">host.domain.domaintype</span><span class="hl esc">\"</span><span class="hl str">; for "</span> <span class="hl str">"example, if your provider is</span> <span class="hl esc">\"</span><span class="hl str">provider.com</span><span class="hl esc">\"</span><span class="hl str">, the internet mail server is "</span> <span class="hl str">"usually</span> <span class="hl esc">\"</span><span class="hl str">smtp.provider.com</span><span class="hl esc">\"</span><span class="hl str">."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"����� ����� � �������Ԧ ������� ���� � ��˦� ���ͦ</span> <span class="hl esc">\\</span><span class="hl str">������.�����.���_������"</span> <span class="hl str">"</span><span class="hl esc">\"</span><span class="hl str">; ���������, ���� ��� ���������</span> <span class="hl esc">\"</span><span class="hl str">provider.com</span><span class="hl esc">\"</span><span class="hl str">, �� ������ ����� "</span> <span class="hl str">"��������� �</span> <span class="hl esc">\"</span><span class="hl str">smtp.provider.com</span><span class="hl esc">\"</span><span class="hl str">."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:71</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Your server will send the outgoing through a mail gateway, that will take "</span> <span class="hl str">"care of the final delivery."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��� ������ ���� צ������� ��Ȧ��� ����� ����� �������� ����, ���� ������ ��� "</span> <span class="hl str">"��������� ��������."</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:77</span> <span class="hl kwa">msgid</span> <span class="hl str">"Mail Server Name:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� ������� �����:"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:82</span> <span class="hl kwa">msgid</span> <span class="hl str">"Configuring the Internet Mail"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ ��������-�����"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:82</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters needed to configure your "</span> <span class="hl str">"Internet Mail Service:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ���������, �˦ ���Ҧ�Φ ��� ������������ ������ "</span> <span class="hl str">"���צ�� ��������-�����:"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:85</span> <span class="hl kwa">msgid</span> <span class="hl str">"Form of the Address"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� ������"</span> <span class="hl slc">#: ../postfix_wizard/Postfix.pm_.c:91</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard successfully configured your Internet Mail service of your server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ��Ц��� ���������� ������ ��������-����� �� ������ �����Ҧ."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:39</span> <span class="hl kwa">msgid</span> <span class="hl str">"Localhost - access restricted to this server only"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"Localhost - ������ ��������� Ԧ���� ��� ����� �������."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:42</span> <span class="hl kwa">msgid</span> <span class="hl str">"No upper level proxy (recommended)"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ������ Ҧ��� ����Ӧ (�������������)"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:43</span> <span class="hl kwa">msgid</span> <span class="hl str">"Define an upper level proxy"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������צ�� ����� Ҧ���� ����Ӧ"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:65</span> <span class="hl kwa">msgid</span> <span class="hl str">"Proxy Configuration Wizard"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��ͦ���� ������������ ����Ӧ"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:65</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Squid is a web caching proxy server, it allows faster web access for your "</span> <span class="hl str">"local network."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"Squid -�� ����Ӧ-������ ��� ��������� ���, צ� ������Ѥ ������� ���-������ "</span> <span class="hl str">"�� �������ϧ ����֦."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:65</span> <span class="hl kwa">msgid</span> <span class="hl str">"This wizard will help you in configuring your proxy server."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ��ͦ���� �������� ��� ����������� ����Ӧ-������."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:70</span> <span class="hl kwa">msgid</span> <span class="hl str">"Proxy Port"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���� ����Ӧ"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:70</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Proxy port value sets what port the proxy server will listen on for http "</span> <span class="hl str">"requests. Default is 3128, other common value can be 8080, the port value "</span> <span class="hl str">"needs to be greater than 1024."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�������� ����� ����Ӧ ����������, ����� ���� ���� ����Ӧ-������ ���� "</span> <span class="hl str">"�������������� http-������. ������ �������� 3128, ����� �������������� "</span> <span class="hl str">"��������� � 8080, �������� ����� ��� ���� ¦����� �� 1024."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:76</span> <span class="hl kwa">msgid</span> <span class="hl str">"Proxy port:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���� ����Ӧ:"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:81</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Press Next if you want to keep this value, or Back to correct your choice."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�����Φ�� ��̦, ���� ������ �������� �� ��������, ��� �����, ��� ��������� "</span> <span class="hl str">"����."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:81</span> <span class="hl kwa">msgid</span> <span class="hl str">"You have entered a port that may be useful for this service:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�� ����� ����, ���� ���� ����������������� ��� ���צ���:"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:88</span> <span class="hl kwa">msgid</span> <span class="hl str">"Press back to change the value."</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�����Φ�� �����, ��� �ͦ���� ��������."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:88</span> <span class="hl kwa">msgid</span> <span class="hl str">"You must choose a port greater than 1024 and lower than 65535"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ���Ҧ��� ������� ����, ¦����� �� 1024 � ������ �� 65535"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:92</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Disk Cache is the amount of disk space that can be used for caching on disk."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"����-��� - �� ����� ˦��˦��� ��������, ���� ���� ���� ������������ ��� "</span> <span class="hl str">"��������� �����."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:92</span> <span class="hl kwa">msgid</span> <span class="hl str">"For your information, here is /var/spool/squid space on disk:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�������æ� ��� ���: ��� ��� /var/spool/squid � ͦ��� �� �����:"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:92</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Memory Cache is the amount of RAM dedicated to cache memory operations (note "</span> <span class="hl str">"that actual memory usage of the whole squid process is bigger)."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"���-���'��� - �� ����� ˦��˦��� RAM, ���������� ��� �����æ� � ���-���'���� "</span> <span class="hl str">"(����Φ�� �����, �� Ħ���� ˦��˦��� ���'�Ԧ �Ӧ�� ������ squid ¦����)."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:92</span> <span class="hl kwa">msgid</span> <span class="hl str">"Proxy Cache Size"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"���ͦ� ���� ����Ӧ"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:98 ../proxy_wizard/Squid.pm_.c:151</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:164</span> <span class="hl kwa">msgid</span> <span class="hl str">"Memory cache (MB):"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"��� ���'�Ԧ (��):"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:99 ../proxy_wizard/Squid.pm_.c:152</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:165</span> <span class="hl kwa">msgid</span> <span class="hl str">"Disk space (MB):"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����� �� ����� (��):"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:104</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">"The proxy can be configured to use different access control levels"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"����Ӧ ���� ���� ������������, ��� ��������������� Ҧ�Φ Ҧ�Φ �������."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:117</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"You can use either a numeric format like</span> <span class="hl esc">\"</span><span class="hl str">192.168.1.0/255.255.255.0</span><span class="hl esc">\"</span> <span class="hl str">or a "</span> <span class="hl str">"text format like</span> <span class="hl esc">\"</span><span class="hl str">.domain.net</span><span class="hl esc">\"</span><span class="hl str">"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ������ ��������������� �������� ������, ��������� "</span> <span class="hl str">"</span><span class="hl esc">\"</span><span class="hl str">192.168.1.0/255.255.255.0</span><span class="hl esc">\"</span><span class="hl str">, ��� ���������, ���������:</span> <span class="hl esc">\"</span><span class="hl str">domain.net</span><span class="hl esc">\"</span><span class="hl str">"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:122</span> <span class="hl slc">#, fuzzy</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Use numeric format like</span> <span class="hl esc">\"</span><span class="hl str">192.168.1.0/255.255.255.0</span><span class="hl esc">\"</span> <span class="hl str">or a text format like "</span> <span class="hl str">"</span><span class="hl esc">\"</span><span class="hl str">.domain.net</span><span class="hl esc">\"</span><span class="hl str">"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ������ ��������������� �������� ������, ��������� "</span> <span class="hl str">"</span><span class="hl esc">\"</span><span class="hl str">192.168.1.0/255.255.255.0</span><span class="hl esc">\"</span><span class="hl str">, ��� ���������, ���������:</span> <span class="hl esc">\"</span><span class="hl str">domain.net</span><span class="hl esc">\"</span><span class="hl str">"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:127</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"As an option, Squid can be configured in proxy cascading. You can add a new "</span> <span class="hl str">"upper level proxy by specifying its hostname and port."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ��������, Squid ���� ���� ������������ � �����Ħ ����Ӧ. �� ������ ������ "</span> <span class="hl str">"����� ����� Ҧ���� ����Ӧ ������ �������� ���� ����� � �����."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:127 ../proxy_wizard/Squid.pm_.c:140</span> <span class="hl kwa">msgid</span> <span class="hl str">"Cache hierarchy"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"�����Ȧ� ����"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:127</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"You can safely select</span> <span class="hl esc">\"</span><span class="hl str">No upper level proxy</span><span class="hl esc">\"</span> <span class="hl str">if you don't need this "</span> <span class="hl str">"feature."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"�� ������ �������� �������</span> <span class="hl esc">\"</span><span class="hl str">��� ������ Ҧ��� ����Ӧ</span><span class="hl esc">\"</span><span class="hl str">, ���� ��� �� ���Ҧ��� "</span> <span class="hl str">"���� �����צ���."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:140</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"Enter the qualified hostname (like</span> <span class="hl esc">\"</span><span class="hl str">cache.domain.net</span><span class="hl esc">\"</span><span class="hl str">) and the port of the "</span> <span class="hl str">"proxy to use."</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"���Ħ�� ����� ����� ������ (���������</span> <span class="hl esc">\"</span><span class="hl str">cache.domain.net</span><span class="hl esc">\"</span><span class="hl str">) � ���� ����Ӧ."</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:148 ../proxy_wizard/Squid.pm_.c:161</span> <span class="hl kwa">msgid</span> <span class="hl str">"Configuring the Proxy"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"������������ ����Ӧ"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:148 ../proxy_wizard/Squid.pm_.c:161</span> <span class="hl kwa">msgid</span> <span class="hl str">""</span> <span class="hl str">"The wizard collected the following parameters needed to configure your proxy:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">""</span> <span class="hl str">"��ͦ���� ڦ���� ������Φ ���������, �˦ ���Ҧ�Φ ��� ������������ ����Ӧ:"</span> <span class="hl slc">#: ../proxy_wizard/Squid.pm_.c:150 ../proxy_wizard/Squid.pm_.c:163</span> <span class="hl kwa">msgid</span> <span class="hl str">"Port:"</span> <span class="hl kwa">msgstr</span> <span class="hl str">"����:"</span>