summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>1999-09-28 15:53:43 +0000
committerFrancois Pons <fpons@mandriva.com>1999-09-28 15:53:43 +0000
commit99c9b0680ce235c7e5bb6d18a8154a147e70947c (patch)
treee42f58e16872cdf6f4030936f9050ebc5bb99b20
parent4d1e2e9740a607609d497adf72dbef43e9f1a4c8 (diff)
downloaddrakx-backup-do-not-use-99c9b0680ce235c7e5bb6d18a8154a147e70947c.tar
drakx-backup-do-not-use-99c9b0680ce235c7e5bb6d18a8154a147e70947c.tar.gz
drakx-backup-do-not-use-99c9b0680ce235c7e5bb6d18a8154a147e70947c.tar.bz2
drakx-backup-do-not-use-99c9b0680ce235c7e5bb6d18a8154a147e70947c.tar.xz
drakx-backup-do-not-use-99c9b0680ce235c7e5bb6d18a8154a147e70947c.zip
*** empty log message ***
-rw-r--r--perl-install/Xconfig.pm2
-rw-r--r--perl-install/common.pm3
-rw-r--r--perl-install/fs.pm23
-rw-r--r--perl-install/install2.pm138
-rw-r--r--perl-install/install_steps.pm2
-rw-r--r--perl-install/install_steps_interactive.pm13
-rw-r--r--perl-install/interactive.pm4
-rw-r--r--perl-install/keyboard.pm14
-rw-r--r--perl-install/modules.pm29
-rw-r--r--perl-install/mouse.pm9
-rw-r--r--perl-install/network.pm15
-rw-r--r--perl-install/printer.pm3
-rw-r--r--perl-install/share/po/Makefile2
-rw-r--r--perl-install/share/po/no.po465
-rw-r--r--perl-install/timezone.pm7
15 files changed, 482 insertions, 247 deletions
diff --git a/perl-install/Xconfig.pm b/perl-install/Xconfig.pm
index f09a3e0e6..57f310d6a 100644
--- a/perl-install/Xconfig.pm
+++ b/perl-install/Xconfig.pm
@@ -79,7 +79,7 @@ sub getinfoFromXF86Config {
sub getinfoFromSysconfig {
my $o = shift || {};
- add2hash($o->{mouse}, { mouse::read("/etc/sysconfig/mouse") });
+ add2hash($o->{mouse}, getVarsFromSh("/etc/sysconfig/mouse"));
if (my %keyboard = getVarsFromSh "/etc/sysconfig/keyboard") {
$keyboard{KEYTABLE} or last;
diff --git a/perl-install/common.pm b/perl-install/common.pm
index 35bed9e67..8d6bf4307 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -6,7 +6,7 @@ use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK $printable_chars $sizeof_int $bitof_int
@ISA = qw(Exporter);
%EXPORT_TAGS = (
- common => [ qw(__ even odd min max sqr sum sign product bool listlength bool2text to_int to_float ikeys member divide is_empty_array_ref is_empty_hash_ref add2hash add2hash_ set_new set_add round round_up round_down first second top uniq translate untranslate warp_text formatAlaTeX) ],
+ common => [ qw(__ even odd min max sqr sum sign product bool listlength bool2text text2bool to_int to_float ikeys member divide is_empty_array_ref is_empty_hash_ref add2hash add2hash_ set_new set_add round round_up round_down first second top uniq translate untranslate warp_text formatAlaTeX) ],
functional => [ qw(fold_left compose map_index grep_index map_each grep_each map_tab_hash mapn mapn_ difference2 before_leaving catch_cdie cdie) ],
file => [ qw(dirname basename touch all glob_ cat_ chop_ mode) ],
system => [ qw(sync makedev unmakedev psizeof strcpy gettimeofday syscall_ crypt_ getVarsFromSh setVarsInSh) ],
@@ -60,6 +60,7 @@ sub basename { @_ == 1 or die "usage: basename <name>\n"; local $_ = shift; s|/*
sub bool { $_[0] ? 1 : 0 }
sub listlength { scalar @_ }
sub bool2text { $_[0] ? "true" : "false" }
+sub text2bool { my $t = lc($_[0]); $t eq "true" || $t eq "yes" ? 1 : 0 }
sub strcpy { substr($_[0], $_[2] || 0, length $_[1]) = $_[1] }
sub cat_ { local *F; open F, $_[0] or $_[1] ? die "cat of file $_[0] failed: $!\n" : return; my @l = <F>; wantarray ? @l : join '', @l }
sub chop_ { map { my $l = $_; chomp $l; $l } @_ }
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 3e0d82c8b..23ef5e380 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -39,7 +39,7 @@ sub check_mounted($) {
open H, "/proc/swaps";
foreach (<F>, <G>, <H>) {
foreach my $p (@$fstab) {
- /$p->{device}\s/ and $p->{isMounted} = $p->{isFormatted} = 1;
+ /$p->{device}\s+([^\s]*)\s+/ and $p->{currentMntpoint} = $1, $p->{isMounted} = $p->{isFormatted} = 1;
}
}
}
@@ -130,6 +130,7 @@ sub mount($$$;$) {
#- takes the mount point to umount (can also be the device)
sub umount($) {
my ($mntpoint) = @_;
+ log::l("calling umount($mntpoint)");
syscall_('umount', $mntpoint) or die _("error unmounting %s: %s", $mntpoint, "$!");
my @mtab = cat_('/etc/mtab'); #- don't care about error, if we can't read, we won't manage to write... (and mess mtab)
@@ -147,7 +148,8 @@ sub mount_part($;$) {
swap::swapon($part->{device});
} else {
$part->{mntpoint} or die "missing mount point";
- mount(devices::make($part->{device}), ($prefix || '') . $part->{mntpoint}, type2fs($part->{type}), 0);
+ mount(devices::make($part->{device}), ($prefix || '') . $part->{mntpoint}, type2fs($part->{type}),
+ $part->{mntreadonly} ? 1 : 0);
}
$part->{isMounted} = $part->{isFormatted} = 1; #- assume that if mount works, partition is formatted
}
@@ -252,3 +254,20 @@ sub write_fstab($;$$) {
}
print F join(" ", @$_), "\n" foreach @to_add;
}
+
+sub check_mount_all_fstab($;$) {
+ my ($fstab, $prefix) = @_;
+ $prefix ||= '';
+
+ foreach (sort { ($a->{mntpoint} || '') cmp ($b->{mntpoint} || '') } @$fstab) {
+ #- avoid unwanted mount in fstab.
+ next if ($_->{device} =~ /none/ || $_->{type} =~ /nfs|smbfs|ncpfs|proc/ || $_->{options} =~ /noauto|ro/);
+
+ #- TODO fsck
+
+ eval { mount(devices::make($_->{device}), $prefix . $_->{mntpoint}, $_->{type}, 0); };
+ if ($@) {
+ log::l("unable to mount partition $_->{device} on $prefix/$_->{mntpoint}");
+ }
+ }
+}
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index cd53e4b6c..fd6aae4a6 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -36,11 +36,11 @@ use run_program;
my @installStepsFields = qw(text redoable onError needs entered reachable toBeDone help next done);
my @installSteps = (
selectLanguage => [ __("Choose your language"), 1, 1 ],
- selectPath => [ __("Choose install or upgrade"), 0, 0 ],
- selectInstallClass => [ __("Select installation class"), 1, 1, "selectPath" ],
+ selectInstallClass => [ __("Select installation class"), 1, 1 ],
+ setupSCSI => [ __("Setup SCSI"), 1, 0 ],
+ selectPath => [ __("Choose install or upgrade"), 0, 0, "selectInstallClass" ],
selectMouse => [ __("Configure mouse"), 1, 1 ],
selectKeyboard => [ __("Choose your keyboard"), 1, 1 ],
- setupSCSI => [ __("Setup SCSI"), 1, 0 ],
partitionDisks => [ __("Setup filesystems"), 1, 0 ],
formatPartitions => [ __("Format partitions"), 1, -1, "partitionDisks" ],
choosePackages => [ __("Choose packages to install"), 1, 1, "selectInstallClass" ],
@@ -138,12 +138,12 @@ $o = $::o = {
timezone => {
#- timezone => "Europe/Paris",
- GMT => 1,
+#- GMT => 1,
},
printer => {
- want => 1,
+ want => 0,
complete => 0,
- str_type => $printer::printer_type[0],
+ str_type => $printer::printer_type_default,
QUEUE => "lp",
SPOOLDIR => "/var/spool/lpd/lp",
DBENTRY => "DeskJet670",
@@ -209,16 +209,24 @@ sub selectLanguage {
#------------------------------------------------------------------------------
sub selectMouse {
- $o->selectMouse($_[0]);
- addToBeDone { mouse::write($o->{mouse}, $o->{prefix}); } 'formatPartitions';
+ my ($clicked) = $_[0];
+
+ $o->{mouse} or $o->{mouse} = {};
+ add2hash($o->{mouse}, { mouse::read($o->{prefix}) }) if $o->{isUpgrade} && !$clicked;
+
+ $o->selectMouse($clicked);
+ addToBeDone { mouse::write($o->{prefix}, $o->{mouse}); } 'formatPartitions';
}
#------------------------------------------------------------------------------
sub selectKeyboard {
my ($clicked) = $_[0];
- return if $::beginner && !$clicked;
- $o->selectKeyboard;
+ return unless $o->{isUpgrade} || !$::beginner || $clicked;
+
+ $o->{keyboard} = (keyboard::read($o->{prefix}))[0] if $o->{isUpgrade} && !$clicked && !$o->{keyboard};
+ $o->selectKeyboard if !$::beginner || $clicked;
+
#- if we go back to the selectKeyboard, you must rewrite
addToBeDone {
keyboard::write($o->{prefix}, $o->{keyboard});
@@ -226,7 +234,88 @@ sub selectKeyboard {
}
#------------------------------------------------------------------------------
-sub selectPath { $o->selectPath; }
+sub selectPath {
+ $o->selectPath;
+
+ if ($o->{isUpgrade}) {
+ #- try to find the partition where the system is installed if beginner
+ #- else ask the user the right partition, and test it after.
+ unless ($o->{hds}) {
+ $o->{drives} = [ detect_devices::hds() ];
+ $o->{hds} = catch_cdie { fsedit::hds($o->{drives}, $o->{partitioning}) }
+ sub { 1; };
+
+ unless (@{$o->{hds}} > 0) {
+ $o->setupSCSI if $o->{autoSCSI}; #- ask for an unautodetected scsi card
+ }
+ }
+
+ my @normal_partitions = fsedit::get_fstab(@{$o->{hds}});
+
+ fs::check_mounted([@normal_partitions]);
+
+ #- get all ext2 partition that may be root partition.
+ my %partitions_lookup;
+ my @partitions = map {
+ $partitions_lookup{$_->{device}} = $_;
+ type2fs($_->{type}) eq 'ext2' ? $_->{device} : (); } @normal_partitions;
+
+ my $root;
+ my $root_partition;
+ my $selected_partition;
+ do {
+ if ($selected_partition->{mntpoint} && !$selected_partition->{currentMntpoint}) {
+ $o->ask_warn(_("Information"), "$selected_partition->{device}" . _(" : This is not a root partition, try again."))
+ unless $::beginner;
+ log::l("umounting non root partition $selected_partition->{device}");
+ eval { fs::umount_part($selected_partition); };
+ $selected_partition->{mntpoint} = '';
+ $selected_partition->{mntreadonly} = undef;
+ }
+
+ $root_partition = $::beginner ? $partitions[0] : $o->selectRootPartition(@partitions);
+ $selected_partition = $partitions_lookup{$root_partition};
+
+ unless ($root = $selected_partition->{currentMntpoint}) {
+ $selected_partition->{mntpoint} = $root = $o->{prefix};
+ $selected_partition->{mntreadonly} = 1;
+ log::l("trying to mount root partition $root_partition");
+ eval { fs::mount_part($selected_partition); };
+ }
+
+ #- avoid testing twice a partition.
+ for my $i (0..$#partitions) {
+ splice @partitions, $i, 1 if $partitions[$i] eq $root_partition;
+ }
+ } until $root && -d "$root/etc/sysconfig" && -r "$root/etc/fstab" || !(scalar @partitions);
+
+
+ if ($root && -d "$root/etc/sysconfig" && -r "$root/etc/fstab") {
+ $o->ask_warn(_("Information"), _("Found root partition : ") . $root_partition);
+ $o->{prefix} = $root;
+ $o->{fstab} = \@normal_partitions;
+
+ #- test if the partition has to be fschecked and remounted rw.
+ if ($selected_partition->{mntpoint} && !$selected_partition->{currentMntpoint}) {
+ my @fstab = fs::read_fstab("$root/etc/fstab");
+
+ eval { fs::umount_part($selected_partition); };
+ $selected_partition->{mntpoint} = '';
+ $selected_partition->{mntreadonly} = undef;
+
+ foreach (@fstab) {
+ if ($selected_partition = $partitions_lookup{$_->{device}}) {
+ $selected_partition->{mntpoint} = $_->{mntpoint};
+ }
+ }
+ #- TODO fsck, create check_mount_all ?
+ fs::mount_all([ grep { isExt2($_) || isSwap($_) } @{$o->{fstab}} ], $o->{prefix});
+ }
+ } else {
+ $o->ask_warn(_("Error"), _("No root partition found"));
+ }
+ }
+}
#------------------------------------------------------------------------------
sub selectInstallClass {
@@ -250,6 +339,8 @@ sub setupSCSI {
#------------------------------------------------------------------------------
sub partitionDisks {
+ return if ($o->{isUpgrade});
+
unless ($o->{hds}) {
$o->{drives} = [ detect_devices::hds() ];
$o->{hds} = catch_cdie { fsedit::hds($o->{drives}, $o->{partitioning}) }
@@ -291,6 +382,8 @@ I'll try to go on blanking bad partitions"));
}
sub formatPartitions {
+ return if ($o->{isUpgrade});
+
$o->choosePartitionsToFormat($o->{fstab});
unless ($::testing) {
@@ -321,6 +414,18 @@ sub doInstallStep {
#------------------------------------------------------------------------------
sub configureNetwork {
my ($clicked, $entered) = @_;
+
+ if ($o->{isUpgrade} && !$clicked) {
+ $o->{netc} or $o->{netc} = {};
+ add2hash($o->{netc}, { network::read_conf("$o->{prefix}/etc/sysconfig/network") });
+ add2hash($o->{netc}, { network::read_resolv_conf("$o->{prefix}/etc/resolv.conf") });
+ foreach (all("$o->{prefix}/etc/sysconfig/network-scripts")) {
+ if (/ifcfg-(\w*)/) {
+ push @{$o->{intf}}, { network::read_conf("$o->{prefix}/etc/sysconfig/network-scripts/$_") };
+ }
+ }
+ }
+
$o->configureNetwork($entered == 1 && !$clicked)
}
#------------------------------------------------------------------------------
@@ -330,6 +435,9 @@ sub configureTimezone {
my $f = "$o->{prefix}/etc/sysconfig/clock";
return if ((-s $f) || 0) > 0 && $_[1] == 1 && !$clicked && !$::testing;
+ add2hash($o->{timezone}, { timezone::read($f) }) if $o->{isUpgrade} && !$clicked;
+ $o->{timezone}{GMT} = 1 unless exists $o->{timezone}{GMT}; #- take GMT by default if nothing else.
+
$o->timeConfig($f);
}
#------------------------------------------------------------------------------
@@ -337,9 +445,15 @@ sub configureServices { $o->servicesConfig }
#------------------------------------------------------------------------------
sub configurePrinter { $o->printerConfig }
#------------------------------------------------------------------------------
-sub setRootPassword { $o->setRootPassword }
+sub setRootPassword {
+ return if ($o->{isUpgrade});
+
+ $o->setRootPassword;
+}
#------------------------------------------------------------------------------
sub addUser {
+ return if ($o->{isUpgrade});
+
$o->addUser;
addToBeDone {
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index bf68f7971..d86ba2ee5 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -90,7 +90,7 @@ sub selectLanguage {
sub selectKeyboard {
my ($o) = @_;
keyboard::setup($o->{keyboard})
- }
+}
#------------------------------------------------------------------------------
sub selectPath {}
#------------------------------------------------------------------------------
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 6ccbb8451..213347628 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -75,7 +75,16 @@ sub selectPath($) {
[ __("Install"), __("Upgrade") ],
$o->{isUpgrade} ? "Upgrade" : "Install") eq "Upgrade";
install_steps::selectPath($o);
-
+}
+#------------------------------------------------------------------------------
+sub selectRootPartition($@) {
+ my ($o,@partitions) = @_;
+ $o->{upgradeRootPartition} =
+ $o->ask_from_list_(_("Root Partition"),
+ _("What is the root partition of your system?"),
+ [ @partitions ], $o->{upgradeRootPartitions});
+#- TODO check choice, then mount partition in $o->{prefix} and autodetect.
+#- install_steps::selectRootPartition($o);
}
#------------------------------------------------------------------------------
sub selectInstallClass($@) {
@@ -167,7 +176,7 @@ sub configureNetwork($) {
_("Do you want to configure LAN (not dialup) networking for your installed system?")) or $r = "Don't";
}
- if ($r =~ /^Don't/) {
+ if ($r =~ /^Don\'t/) {
$o->{netc}{NETWORKING} = "false";
} elsif ($r !~ /^Keep/) {
$o->setup_thiskind('net', !$::expert, 1);
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index a6a8a1341..ed2c79de4 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -49,12 +49,12 @@ sub ask_warn($$$) {
sub ask_yesorno($$$;$) {
my ($o, $title, $message, $def) = @_;
- ask_from_list2_($o, $title, $message, [ __("Yes"), __("No") ], $def ? "No" : "Yes") eq "Yes";
+ ask_from_list2_($o, $title, $message, [ __("Yes"), __("No") ], $def ? "Yes" : "No") eq "Yes";
}
sub ask_okcancel($$$;$) {
my ($o, $title, $message, $def) = @_;
- ask_from_list2_($o, $title, $message, [ __("Ok"), __("Cancel") ], $def ? "Cancel" : "Ok") eq "Ok";
+ ask_from_list2_($o, $title, $message, [ __("Ok"), __("Cancel") ], $def ? "Ok" : "Cancel") eq "Ok";
}
sub ask_from_list_ {
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm
index 77322e803..9309d1a98 100644
--- a/perl-install/keyboard.pm
+++ b/perl-install/keyboard.pm
@@ -140,18 +140,10 @@ sub write($$) {
}
sub read($) {
- my ($file) = @_;
+ my ($prefix) = @_;
- local *F;
- open F, "$file" or die "failed to read keyboard configuration";
-
- foreach (<F>) {
- ($_) = /^KEYTABLE=(.*)/ or log::l("unrecognized entry in keyboard configuration file ($_)"), next;
- s/^\s*"(.*)"\s*$/$1/;
- s/\.[^.]*//; #- remove extension
- return basename($_);
- }
- die "empty keyboard configuration file";
+ my %keyf = getVarsFromSh("$prefix/etc/sysconfig/keyboard");
+ map { kmap($_) eq $keyf{KEYTABLE} ? $_ : (); } keys %keyboards;
}
#-######################################################################################
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 010e7b48f..a829247fc 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -271,8 +271,13 @@ sub get_stage1_conf {
sub load_thiskind($;&) {
my ($type, $f) = @_;
- my @devs = pci_probing::main::probe($type);
- log::l("pci probe found " . scalar @devs . " $type devices");
+ my @pcidevs = pci_probing::main::probe($type);
+ log::l("pci probe found " . scalar @pcidevs . " $type devices");
+
+ my @pcmciadevs = get_pcmcia_devices($type);
+ log::l("pcmcia probe found " . scalar @pcmciadevs . " $type devices");
+
+ my @devs = (@pcidevs, @pcmciadevs);
my %devs; foreach (@devs) {
my ($text, $mod) = @$_;
@@ -285,6 +290,26 @@ sub load_thiskind($;&) {
@devs;
}
+sub get_pcmcia_devices($) {
+ my ($type) = @_;
+ my $file = "/var/run/stab";
+ my @devs;
+ my $module;
+ my $desc;
+
+ local *F;
+ open F, $file or return; #- no pcmcia is not an error.
+ while (<F>) {
+ $desc = $1 if /^Socket\s+\d+:\s+(.*)/;
+ $module = $1 if /^\d+\s+$type[^\s]*\s+([^\s]+)/;
+ if ($desc && $module) {
+ push @devs, [ $desc, $module ];
+ $desc = $module = undef;
+ }
+ }
+ @devs;
+}
+
#-#- This assumes only one of each driver type is loaded
#-sub removeDeviceDriver {
#- my ($type) = @_;
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm
index 4e91da97c..27979ea8d 100644
--- a/perl-install/mouse.pm
+++ b/perl-install/mouse.pm
@@ -65,10 +65,15 @@ sub serial_ports_names2dev {
/(\w+)/;
}
-sub read($) { getVarsFromSh $_[0]; }
+sub read($) {
+ my ($prefix) = @_;
+ my %mouse = getVarsFromSh "$prefix/etc/sysconfig/mouse";
+ $mouse{device} = readlink "$prefix/dev/mouse" or log::l("reading $prefix/dev/mouse symlink failed");
+ %mouse;
+}
sub write($;$) {
- my ($mouse, $prefix) = @_;
+ my ($prefix, $mouse) = @_;
local $mouse->{FULLNAME} = qq("$mouse->{FULLNAME}");
setVarsInSh("$prefix/etc/sysconfig/mouse", $mouse, qw(MOUSETYPE XMOUSETYPE FULLNAME XEMU3));
symlink $mouse->{device}, "$prefix/dev/mouse" or log::l("creating $prefix/dev/mouse symlink failed");
diff --git a/perl-install/network.pm b/perl-install/network.pm
index 9c7c325c8..31fcd7e0f 100644
--- a/perl-install/network.pm
+++ b/perl-install/network.pm
@@ -22,6 +22,21 @@ sub read_conf {
\%netc;
}
+sub read_resolv_conf {
+ my ($file) = @_;
+ my %netc;
+ my @l;
+
+ local *F;
+ open F, $file or die "cannot open $file: $!";
+ foreach (<F>) {
+ push @l, $1 if (/^\s*nameserver\s+([^\s]+)/);
+ }
+
+ $netc{$_} = shift @l foreach qw(dnsServer dnsServer2 dnsServer3);
+ \%netc;
+}
+
sub read_interface_conf {
my ($file) = @_;
my %intf = getVarsFromSh($file) or die "cannot open file $file: $!";
diff --git a/perl-install/printer.pm b/perl-install/printer.pm
index f7f31ced0..2f66e01ab 100644
--- a/perl-install/printer.pm
+++ b/perl-install/printer.pm
@@ -28,7 +28,7 @@ use strict;
=cut
#-#####################################################################################
-use vars qw(%thedb %printer_type %printer_type_inv @papersize_type %fields $spooldir @entries_db_short @entry_db_description %descr_to_db %db_to_descr);
+use vars qw(%thedb %printer_type %printer_type_inv $printer_type_default @papersize_type %fields $spooldir @entries_db_short @entry_db_description %descr_to_db %db_to_descr);
#-#####################################################################################
=head2 Imports
@@ -246,6 +246,7 @@ my $PRINTER_FILTER_DIR = "/usr/lib/rhs/rhs-printfilters";
"NetWare" => "NCP",
);
%printer_type_inv = reverse %printer_type;
+$printer_type_default = "local";
%fields = (
STANDARD => [qw(QUEUE SPOOLDIR IF)],
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile
index 879f17a6c..2d0aa6db6 100644
--- a/perl-install/share/po/Makefile
+++ b/perl-install/share/po/Makefile
@@ -9,7 +9,7 @@ clean:
$(POFILES): panoramix.pot
cp -f $@ $@t
- msgmerge $@t $< > $@
+ msgmerge $@t $< > $@ || true
rm $@t
panoramix.pot: $(PMSFILES)
diff --git a/perl-install/share/po/no.po b/perl-install/share/po/no.po
index 71a821a00..15e46c0e3 100644
--- a/perl-install/share/po/no.po
+++ b/perl-install/share/po/no.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: panoramix VERSION\n"
-"POT-Creation-Date: 1999-09-26 12:55+0200\n"
+"POT-Creation-Date: 1999-09-28 17:12+0200\n"
"PO-Revision-Date: 1999-08-25 11:07+0200\n"
"Last-Translator: Terje Bjerkelia <terje@bjerkelia.com>\n"
"Language-Team: norwegian\n"
@@ -57,114 +57,126 @@ msgstr "Vil du teste konfigurasjonen?"
msgid "Test configuration"
msgstr "Test konfigurasjon"
-#: ../Xconfigurator.pm_.c:295
+#: ../Xconfigurator.pm_.c:286
+#, fuzzy
+msgid "An error occurred:"
+msgstr "En feil oppsto"
+
+#: ../Xconfigurator.pm_.c:288
+#, fuzzy
+msgid ""
+"\n"
+"try changing some parameters"
+msgstr "En feil oppsto, prv endre noen parametere"
+
+#: ../Xconfigurator.pm_.c:314
#, c-format
msgid "(leaving in %d seconds)"
msgstr "(slutter om %d sekunder)"
-#: ../Xconfigurator.pm_.c:299
+#: ../Xconfigurator.pm_.c:318
msgid "Is this ok?"
msgstr "Er dette ok?"
-#: ../Xconfigurator.pm_.c:307
+#: ../Xconfigurator.pm_.c:326
msgid "An error occurred, try changing some parameters"
msgstr "En feil oppsto, prv endre noen parametere"
-#: ../Xconfigurator.pm_.c:315 ../Xconfigurator.pm_.c:464
+#: ../Xconfigurator.pm_.c:334 ../Xconfigurator.pm_.c:483
msgid "Automatic resolutions"
msgstr "Automatiske opplsninger"
-#: ../Xconfigurator.pm_.c:363 ../install_steps_interactive.pm_.c:392
-#: ../install_steps_interactive.pm_.c:393
+#: ../Xconfigurator.pm_.c:382 ../install_steps_interactive.pm_.c:404
+#: ../install_steps_interactive.pm_.c:405
msgid "Resolution"
msgstr "Opplsning"
-#: ../Xconfigurator.pm_.c:397
+#: ../Xconfigurator.pm_.c:416
msgid "Choose resolution and color depth"
msgstr "Velg opplsning og fargedybde"
-#: ../Xconfigurator.pm_.c:656
+#: ../Xconfigurator.pm_.c:675
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatur-oppsett: %s\n"
-#: ../Xconfigurator.pm_.c:657
+#: ../Xconfigurator.pm_.c:676
#, c-format
msgid "Mouse type: %s\n"
msgstr "Type mus: %s\n"
-#: ../Xconfigurator.pm_.c:658
+#: ../Xconfigurator.pm_.c:677
#, c-format
msgid "Mouse device: %s\n"
msgstr "Enhet mus: %s\n"
-#: ../Xconfigurator.pm_.c:659
+#: ../Xconfigurator.pm_.c:678
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../Xconfigurator.pm_.c:660
+#: ../Xconfigurator.pm_.c:679
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../Xconfigurator.pm_.c:661
+#: ../Xconfigurator.pm_.c:680
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../Xconfigurator.pm_.c:662
+#: ../Xconfigurator.pm_.c:681
#, c-format
msgid "Graphic card: %s\n"
msgstr "Grafikk-kort: %s\n"
-#: ../Xconfigurator.pm_.c:663
+#: ../Xconfigurator.pm_.c:682
#, c-format
msgid "Graphic memory: %s KB\n"
msgstr "Minne grafikk: %s KB\n"
-#: ../Xconfigurator.pm_.c:664
+#: ../Xconfigurator.pm_.c:683
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-tjener: %s\n"
-#: ../Xconfigurator.pm_.c:689
+#: ../Xconfigurator.pm_.c:708
msgid "Change Monitor"
msgstr "Endre monitor"
-#: ../Xconfigurator.pm_.c:690
+#: ../Xconfigurator.pm_.c:709
msgid "Change Graphic card"
msgstr "Endre grafikk-kort"
-#: ../Xconfigurator.pm_.c:691
+#: ../Xconfigurator.pm_.c:710
msgid "Change Resolution"
msgstr "Endre opplsning"
-#: ../Xconfigurator.pm_.c:692
+#: ../Xconfigurator.pm_.c:711
msgid "Automatical resolutions search"
msgstr "Automatisk opplsningssk"
-#: ../Xconfigurator.pm_.c:696
+#: ../Xconfigurator.pm_.c:715
msgid "Show information"
msgstr "Vis informasjon"
-#: ../Xconfigurator.pm_.c:697
+#: ../Xconfigurator.pm_.c:716
msgid "Test again"
msgstr "Test igjen"
-#: ../Xconfigurator.pm_.c:698
+#: ../Xconfigurator.pm_.c:717
msgid "Quit"
msgstr "Slutt"
-#: ../Xconfigurator.pm_.c:701
+#: ../Xconfigurator.pm_.c:720
msgid "What do you want to do?"
msgstr "Hva vil du gjre?"
-#: ../Xconfigurator.pm_.c:706
+#: ../Xconfigurator.pm_.c:725
msgid "X at startup"
msgstr "X ved oppstart"
-#: ../Xconfigurator.pm_.c:712
+#: ../Xconfigurator.pm_.c:731
msgid "X successfully configured"
msgstr "Konfigurasjon av X vellykket"
@@ -436,7 +448,7 @@ msgstr "Formater"
msgid "Move"
msgstr "Flytt"
-#: ../diskdrake.pm_.c:17 ../diskdrake.pm_.c:427
+#: ../diskdrake.pm_.c:17 ../diskdrake.pm_.c:429
msgid "Resize"
msgstr "Endre strrelse"
@@ -476,7 +488,7 @@ msgstr "Gjenopprett fra diskett"
msgid "Save on floppy"
msgstr "Lagre p diskett"
-#: ../diskdrake.pm_.c:39 ../install_steps_interactive.pm_.c:582
+#: ../diskdrake.pm_.c:39 ../install_steps_interactive.pm_.c:594
msgid "Done"
msgstr "Ferdig"
@@ -533,12 +545,12 @@ msgstr "Les nye!"
msgid "all data on this partition will be lost"
msgstr "alle data p denne partisjonen vil g tapt"
-#: ../diskdrake.pm_.c:136 ../install2.pm_.c:257 ../install_steps.pm_.c:66
-#: ../install_steps_interactive.pm_.c:36
+#: ../diskdrake.pm_.c:136 ../install2.pm_.c:315 ../install2.pm_.c:348
+#: ../install_steps.pm_.c:66 ../install_steps_interactive.pm_.c:36
msgid "Error"
msgstr "Feil"
-#: ../diskdrake.pm_.c:157 ../diskdrake.pm_.c:504
+#: ../diskdrake.pm_.c:157 ../diskdrake.pm_.c:506
msgid "Mount point: "
msgstr "Monteringspunkt: "
@@ -686,51 +698,51 @@ msgstr "Du m starte maskinen p nytt for at modifiseringene skal tre i kraft"
msgid "Computing fat filesystem bounds"
msgstr "Beregner fat filsystemgrense"
-#: ../diskdrake.pm_.c:413 ../diskdrake.pm_.c:455 ../interactive_gtk.pm_.c:207
+#: ../diskdrake.pm_.c:413 ../diskdrake.pm_.c:457 ../interactive_gtk.pm_.c:207
msgid "Resizing"
msgstr "Endrer strrelse"
-#: ../diskdrake.pm_.c:424
+#: ../diskdrake.pm_.c:426
msgid "resizing"
msgstr "endrer strrelse"
-#: ../diskdrake.pm_.c:434
+#: ../diskdrake.pm_.c:436
msgid "Choose the new size"
msgstr "Velg ny strrelse"
-#: ../diskdrake.pm_.c:434
+#: ../diskdrake.pm_.c:436 ../install_steps_graphical.pm_.c:269
msgid "MB"
msgstr "MB"
-#: ../diskdrake.pm_.c:481
+#: ../diskdrake.pm_.c:483
msgid "Create a new partition"
msgstr "Opprette en ny partisjon"
-#: ../diskdrake.pm_.c:497
+#: ../diskdrake.pm_.c:499
msgid "Start sector: "
msgstr "Start sektor: "
-#: ../diskdrake.pm_.c:500
+#: ../diskdrake.pm_.c:502
msgid "Size in MB: "
msgstr "Strrelse i MB: "
-#: ../diskdrake.pm_.c:503
+#: ../diskdrake.pm_.c:505
msgid "Filesystem type: "
msgstr "Filsystemtype: "
-#: ../diskdrake.pm_.c:505
+#: ../diskdrake.pm_.c:507
msgid "Preference: "
msgstr "Valg: "
-#: ../diskdrake.pm_.c:547 ../diskdrake.pm_.c:563
+#: ../diskdrake.pm_.c:549 ../diskdrake.pm_.c:565
msgid "Select file"
msgstr "Velg fil"
-#: ../diskdrake.pm_.c:564
+#: ../diskdrake.pm_.c:566
msgid "Warning"
msgstr "Advarsel"
-#: ../diskdrake.pm_.c:579
+#: ../diskdrake.pm_.c:581
msgid "Searching for your lost partition table"
msgstr "Sker etter din tapte partisjonstabell"
@@ -752,7 +764,7 @@ msgstr "nfs montering mislykket"
msgid "mount failed: "
msgstr "montering mislykket: "
-#: ../fs.pm_.c:133
+#: ../fs.pm_.c:134
#, c-format
msgid "error unmounting %s: %s"
msgstr "feil ved demontering av %s: %s"
@@ -771,7 +783,7 @@ msgstr "Monteringspunkter m begynne med /"
msgid "There is already a partition with mount point %s"
msgstr "Det finnes allerede en partisjon med monteringspunkt %s"
-#: ../fsedit.pm_.c:262
+#: ../fsedit.pm_.c:267
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Feil ved pning av %s for skriving: %s"
@@ -1037,25 +1049,25 @@ msgid "Choose your language"
msgstr "Velg sprk"
#: ../install2.pm_.c:39
-msgid "Choose install or upgrade"
-msgstr "Velg installering eller oppgradering"
-
-#: ../install2.pm_.c:40
msgid "Select installation class"
msgstr "Velg installasjonsklasse"
+#: ../install2.pm_.c:40
+msgid "Setup SCSI"
+msgstr "Oppsett SCSI"
+
#: ../install2.pm_.c:41
+msgid "Choose install or upgrade"
+msgstr "Velg installering eller oppgradering"
+
+#: ../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Konfigurer mus"
-#: ../install2.pm_.c:42
+#: ../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Velg tastatur"
-#: ../install2.pm_.c:43
-msgid "Setup SCSI"
-msgstr "Oppsett SCSI"
-
#: ../install2.pm_.c:44
msgid "Setup filesystems"
msgstr "Oppsett filsystemer"
@@ -1084,8 +1096,8 @@ msgstr "Konfigurer tidssone"
msgid "Configure printer"
msgstr "Konfigurer skriver"
-#: ../install2.pm_.c:52 ../install_steps_interactive.pm_.c:450
-#: ../install_steps_interactive.pm_.c:451
+#: ../install2.pm_.c:52 ../install_steps_interactive.pm_.c:462
+#: ../install_steps_interactive.pm_.c:463
msgid "Set root password"
msgstr "Sett root-passord"
@@ -1125,7 +1137,26 @@ msgstr "ekspert"
msgid "server"
msgstr "tjener"
-#: ../install2.pm_.c:269
+#: ../install2.pm_.c:268
+msgid " : This is not a root partition, try again."
+msgstr ""
+
+#: ../install2.pm_.c:268 ../install2.pm_.c:294
+#, fuzzy
+msgid "Information"
+msgstr "formatering"
+
+#: ../install2.pm_.c:294
+#, fuzzy
+msgid "Found root partition : "
+msgstr "Formater partisjoner"
+
+#: ../install2.pm_.c:315
+#, fuzzy
+msgid "No root partition found"
+msgstr "Formater partisjoner"
+
+#: ../install2.pm_.c:360
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1133,15 +1164,15 @@ msgstr ""
"En feil har oppsttt - ingen gyldige enheter ble funnet for opprette nye "
"filsystemer. Vennligst sjekk maskinvaren din for rsaken til dette problemet"
-#: ../install2.pm_.c:286
+#: ../install2.pm_.c:381
msgid "partitioning failed: no root filesystem"
msgstr "partisjonering feilet: intet root-filsystem"
-#: ../install2.pm_.c:427
+#: ../install2.pm_.c:543
msgid "Error reading file $f"
msgstr "Feil ved lesing av fil $f"
-#: ../install2.pm_.c:432
+#: ../install2.pm_.c:548
#, c-format
msgid "Bad kickstart file %s (failed %s)"
msgstr "Drlig kickstart-fil %s (mislykket %s)"
@@ -1150,6 +1181,10 @@ msgstr "Drlig kickstart-fil %s (mislykket %s)"
msgid "no floppy available"
msgstr "ingen diskett tilgjengelig"
+#: ../install_steps_graphical.pm_.c:269
+msgid "Total size: "
+msgstr "Total strrelse: "
+
#: ../install_steps_graphical.pm_.c:288
msgid "Hide"
msgstr "Gjem"
@@ -1170,14 +1205,6 @@ msgstr "Fjern alle valg"
msgid "Choose the packages you want to install"
msgstr "Velg pakkene du nsker installere"
-#: ../install_steps_graphical.pm_.c:370
-msgid " Mb"
-msgstr "Mb"
-
-#: ../install_steps_graphical.pm_.c:370
-msgid "Total size: "
-msgstr "Total strrelse: "
-
#: ../install_steps_graphical.pm_.c:371
msgid "Info"
msgstr "Info"
@@ -1207,13 +1234,13 @@ msgstr "forbereder installasjon"
msgid "installing package %s"
msgstr "installerer pakke %s"
-#: ../install_steps_graphical.pm_.c:459
-msgid "Package ordering failed"
-msgstr "Pakkelevering mislykket"
+#: ../install_steps_graphical.pm_.c:457
+msgid "Go on anyway?"
+msgstr ""
#: ../install_steps_graphical.pm_.c:549 ../interactive.pm_.c:47
-#: ../interactive.pm_.c:57 ../my_gtk.pm_.c:191 ../my_gtk.pm_.c:343
-#: ../my_gtk.pm_.c:427
+#: ../interactive.pm_.c:57 ../my_gtk.pm_.c:194 ../my_gtk.pm_.c:346
+#: ../my_gtk.pm_.c:430
msgid "Ok"
msgstr "Ok"
@@ -1245,82 +1272,92 @@ msgstr "Installer"
msgid "Upgrade"
msgstr "Oppgrader"
+#: ../install_steps_interactive.pm_.c:83
+#, fuzzy
+msgid "Root Partition"
+msgstr "Formater partisjoner"
+
#: ../install_steps_interactive.pm_.c:84
+#, fuzzy
+msgid "What is the root partition of your system?"
+msgstr "Hvilken partisjonstype nsker du?"
+
+#: ../install_steps_interactive.pm_.c:93
msgid "Install Class"
msgstr "Installeringsklasse"
-#: ../install_steps_interactive.pm_.c:85
+#: ../install_steps_interactive.pm_.c:94
msgid "What type of user will you have?"
msgstr "Hva slags type bruker vil du ha?"
-#: ../install_steps_interactive.pm_.c:96
+#: ../install_steps_interactive.pm_.c:105
msgid "Which mouse do you have"
msgstr "Hvilken mus har du?"
-#: ../install_steps_interactive.pm_.c:100
+#: ../install_steps_interactive.pm_.c:109
msgid "Emulate third button"
msgstr "Emulere tredje knapp"
-#: ../install_steps_interactive.pm_.c:103
+#: ../install_steps_interactive.pm_.c:112
msgid "Mouse Port"
msgstr "Museport"
-#: ../install_steps_interactive.pm_.c:104
+#: ../install_steps_interactive.pm_.c:113
msgid "Which serial port is your mouse connected to?"
msgstr "Hvilken serieport er musen din koblet til?"
-#: ../install_steps_interactive.pm_.c:114
+#: ../install_steps_interactive.pm_.c:123
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Du m starte maskinen p nytt for at modifiseringene av partisjonstabellen "
"skal tre i kraft"
-#: ../install_steps_interactive.pm_.c:124
+#: ../install_steps_interactive.pm_.c:136
msgid "Choose the partitions you want to format"
msgstr "Velg de partisjonene du nsker formatere"
-#: ../install_steps_interactive.pm_.c:134
+#: ../install_steps_interactive.pm_.c:146
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partisjon %s"
-#: ../install_steps_interactive.pm_.c:142
+#: ../install_steps_interactive.pm_.c:154
msgid "Searching for available packages"
msgstr "Sker etter tilgjengelige pakker"
-#: ../install_steps_interactive.pm_.c:153
+#: ../install_steps_interactive.pm_.c:165
msgid "Keep the current IP configuration"
msgstr "Behold nvrende IP-konfigurasjon"
-#: ../install_steps_interactive.pm_.c:154
+#: ../install_steps_interactive.pm_.c:166
msgid "Reconfigure network now"
msgstr "Rekonfigurer nettverket n"
-#: ../install_steps_interactive.pm_.c:155
+#: ../install_steps_interactive.pm_.c:167
msgid "Don't set up networking"
msgstr "Ikke sett opp nettverk"
-#: ../install_steps_interactive.pm_.c:157
-#: ../install_steps_interactive.pm_.c:163
+#: ../install_steps_interactive.pm_.c:169
+#: ../install_steps_interactive.pm_.c:175
msgid "Network Configuration"
msgstr "Nettverks-konfigurasjon"
-#: ../install_steps_interactive.pm_.c:158
+#: ../install_steps_interactive.pm_.c:170
msgid "LAN networking has already been configured. Do you want to:"
msgstr "LAN-nettverket har allerede blitt konfigurert. Vil du:"
-#: ../install_steps_interactive.pm_.c:164
+#: ../install_steps_interactive.pm_.c:176
msgid ""
"Do you want to configure LAN (not dialup) networking for your installed "
"system?"
msgstr ""
"Vil du konfigurere LAN (ikke oppringt) nettverk for ditt installerte system?"
-#: ../install_steps_interactive.pm_.c:269
+#: ../install_steps_interactive.pm_.c:281
msgid "Standard Printer Options"
msgstr "Standard skriveropsjoner"
-#: ../install_steps_interactive.pm_.c:270
+#: ../install_steps_interactive.pm_.c:282
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -1330,40 +1367,40 @@ msgstr ""
"(ofte lp) og en spolingskatalog assosiert til denne. Hvilket\n"
"navn og katalog skal brukes for denne ken?"
-#: ../install_steps_interactive.pm_.c:273
+#: ../install_steps_interactive.pm_.c:285
msgid "Name of queue:"
msgstr "Kens navn:"
-#: ../install_steps_interactive.pm_.c:273
+#: ../install_steps_interactive.pm_.c:285
msgid "Spool directory:"
msgstr "Spolingskatalog:"
-#: ../install_steps_interactive.pm_.c:284
+#: ../install_steps_interactive.pm_.c:296
msgid "Select Printer Connection"
msgstr "Velg skrivertilkobling"
-#: ../install_steps_interactive.pm_.c:285
+#: ../install_steps_interactive.pm_.c:297
msgid "How is the printer connected?"
msgstr "Hvordan er skriveren tilkoblet?"
-#: ../install_steps_interactive.pm_.c:293
+#: ../install_steps_interactive.pm_.c:305
msgid "Detecting devices..."
msgstr "Finner enheter..."
-#: ../install_steps_interactive.pm_.c:293
+#: ../install_steps_interactive.pm_.c:305
msgid "Test ports"
msgstr "Test porter"
-#: ../install_steps_interactive.pm_.c:306
+#: ../install_steps_interactive.pm_.c:318
#, c-format
msgid "I have detected a %s on "
msgstr "Jeg har oppdaget en %s p "
-#: ../install_steps_interactive.pm_.c:313
+#: ../install_steps_interactive.pm_.c:325
msgid "Local Printer Device"
msgstr "Lokal skriverenhet"
-#: ../install_steps_interactive.pm_.c:314
+#: ../install_steps_interactive.pm_.c:326
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -1371,15 +1408,15 @@ msgstr ""
"Hvilken enhet er skriveren din koblet til \n"
"(merk at /dev/lp0 er det samme som LPT1:)?\n"
-#: ../install_steps_interactive.pm_.c:315
+#: ../install_steps_interactive.pm_.c:327
msgid "Printer Device:"
msgstr "Skriverenhet:"
-#: ../install_steps_interactive.pm_.c:321
+#: ../install_steps_interactive.pm_.c:333
msgid "Remote lpd Printer Options"
msgstr "Fjern-lpd skriveropsjoner"
-#: ../install_steps_interactive.pm_.c:322
+#: ../install_steps_interactive.pm_.c:334
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -1389,19 +1426,19 @@ msgstr ""
"til skrivertjeneren og knavnet til den tjeneren\n"
"som jobbene skal plasseres i."
-#: ../install_steps_interactive.pm_.c:325
+#: ../install_steps_interactive.pm_.c:337
msgid "Remote hostname:"
msgstr "Fjern-brukernavn:"
-#: ../install_steps_interactive.pm_.c:325
+#: ../install_steps_interactive.pm_.c:337
msgid "Remote queue:"
msgstr "Fjern-k:"
-#: ../install_steps_interactive.pm_.c:331
+#: ../install_steps_interactive.pm_.c:343
msgid "SMB/Windows 95/NT Printer Options"
msgstr "SMB/Windows 95/NT skriveropsjoner"
-#: ../install_steps_interactive.pm_.c:332
+#: ../install_steps_interactive.pm_.c:344
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (this is not always the same as the machines\n"
@@ -1415,41 +1452,41 @@ msgstr ""
"navnet til skriveren du nsker tilgang til og anvendelige brukernavn,\n"
"passord, og arbeidsgruppeinformasjon."
-#: ../install_steps_interactive.pm_.c:337
+#: ../install_steps_interactive.pm_.c:349
msgid "SMB server IP:"
msgstr "SMB-tjener IP:"
-#: ../install_steps_interactive.pm_.c:337
+#: ../install_steps_interactive.pm_.c:349
msgid "SMB server host:"
msgstr "SMB-tjener vert:"
-#: ../install_steps_interactive.pm_.c:338
-#: ../install_steps_interactive.pm_.c:360
+#: ../install_steps_interactive.pm_.c:350
+#: ../install_steps_interactive.pm_.c:372
msgid "Password:"
msgstr "Passord:"
-#: ../install_steps_interactive.pm_.c:338
+#: ../install_steps_interactive.pm_.c:350
msgid "Share name:"
msgstr "Delt navn:"
-#: ../install_steps_interactive.pm_.c:338
-#: ../install_steps_interactive.pm_.c:360
+#: ../install_steps_interactive.pm_.c:350
+#: ../install_steps_interactive.pm_.c:372
msgid "User name:"
msgstr "Brukernavn:"
-#: ../install_steps_interactive.pm_.c:339
+#: ../install_steps_interactive.pm_.c:351
msgid "Workgroup:"
msgstr "Arbeidsgruppe:"
-#: ../install_steps_interactive.pm_.c:346
+#: ../install_steps_interactive.pm_.c:358
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adresse br vre i format 1.2.3.4"
-#: ../install_steps_interactive.pm_.c:354
+#: ../install_steps_interactive.pm_.c:366
msgid "NetWare Printer Options"
msgstr "NetWare skriveropsjoner"
-#: ../install_steps_interactive.pm_.c:355
+#: ../install_steps_interactive.pm_.c:367
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (this is not always the same as the machines\n"
@@ -1461,105 +1498,105 @@ msgstr ""
"vertsnavn) s vel som navnet p skriverken til skriveren du nsker\n"
"adgang til og anvendelige brukernavn og passord."
-#: ../install_steps_interactive.pm_.c:359
+#: ../install_steps_interactive.pm_.c:371
msgid "Print Queue Name:"
msgstr "Skriverk navn:"
-#: ../install_steps_interactive.pm_.c:359
+#: ../install_steps_interactive.pm_.c:371
msgid "Printer Server:"
msgstr "Skrivertjener:"
-#: ../install_steps_interactive.pm_.c:370
+#: ../install_steps_interactive.pm_.c:382
msgid "Configure Printer"
msgstr "Konfigurer skriver"
-#: ../install_steps_interactive.pm_.c:371
+#: ../install_steps_interactive.pm_.c:383
msgid "What type of printer do you have?"
msgstr "Hva slags type skriver har du?"
-#: ../install_steps_interactive.pm_.c:382
-#: ../install_steps_interactive.pm_.c:383
+#: ../install_steps_interactive.pm_.c:394
+#: ../install_steps_interactive.pm_.c:395
msgid "Paper Size"
msgstr "Papirstrrelse"
-#: ../install_steps_interactive.pm_.c:402
+#: ../install_steps_interactive.pm_.c:414
msgid "CRLF"
msgstr "CRLF"
-#: ../install_steps_interactive.pm_.c:403
+#: ../install_steps_interactive.pm_.c:415
msgid "Fix stair-stepping of text?"
msgstr "Fiks trappesteging av tekst?"
-#: ../install_steps_interactive.pm_.c:419
+#: ../install_steps_interactive.pm_.c:431
msgid "Configure Uniprint Driver"
msgstr "Konfigurer Uniprint-driver"
-#: ../install_steps_interactive.pm_.c:420
+#: ../install_steps_interactive.pm_.c:432
msgid "You may now configure the uniprint options for this printer."
msgstr "Du kan n konfigurere uniprint-opsjonene for denne skriveren."
-#: ../install_steps_interactive.pm_.c:428
+#: ../install_steps_interactive.pm_.c:440
msgid "Configure Color Depth"
msgstr "Konfigurer fargedybde"
-#: ../install_steps_interactive.pm_.c:429
+#: ../install_steps_interactive.pm_.c:441
msgid "You may now configure the color options for this printer."
msgstr "Du kan n konfigurere fargeopsjonene for denne skriveren."
-#: ../install_steps_interactive.pm_.c:452
-#: ../install_steps_interactive.pm_.c:477
+#: ../install_steps_interactive.pm_.c:464
+#: ../install_steps_interactive.pm_.c:489
msgid "Password"
msgstr "Passord"
-#: ../install_steps_interactive.pm_.c:452
-#: ../install_steps_interactive.pm_.c:477
+#: ../install_steps_interactive.pm_.c:464
+#: ../install_steps_interactive.pm_.c:489
msgid "Password (again)"
msgstr "Passord (igjen)"
-#: ../install_steps_interactive.pm_.c:456
-#: ../install_steps_interactive.pm_.c:488
+#: ../install_steps_interactive.pm_.c:468
+#: ../install_steps_interactive.pm_.c:500
msgid "Please try again"
msgstr "Vennligst prv igjen"
-#: ../install_steps_interactive.pm_.c:456
-#: ../install_steps_interactive.pm_.c:488
+#: ../install_steps_interactive.pm_.c:468
+#: ../install_steps_interactive.pm_.c:500
msgid "You must enter the same password"
msgstr "Du m skrive inn det samme passordet"
-#: ../install_steps_interactive.pm_.c:457
+#: ../install_steps_interactive.pm_.c:469
msgid "This password is too simple"
msgstr "Dette passordet er for enkelt"
-#: ../install_steps_interactive.pm_.c:475
+#: ../install_steps_interactive.pm_.c:487
msgid "Add user"
msgstr "Legg til bruker"
-#: ../install_steps_interactive.pm_.c:476
+#: ../install_steps_interactive.pm_.c:488
msgid "Enter a user"
msgstr "Entre en bruker"
-#: ../install_steps_interactive.pm_.c:477
+#: ../install_steps_interactive.pm_.c:489
msgid "Real name"
msgstr "Virkelig navn"
-#: ../install_steps_interactive.pm_.c:477
+#: ../install_steps_interactive.pm_.c:489
msgid "Shell"
msgstr "Skall"
-#: ../install_steps_interactive.pm_.c:477
+#: ../install_steps_interactive.pm_.c:489
msgid "User name"
msgstr "Brukernavn"
-#: ../install_steps_interactive.pm_.c:490
+#: ../install_steps_interactive.pm_.c:502
msgid "Please give a user name"
msgstr "Vennligst oppgi et brukernavn"
-#: ../install_steps_interactive.pm_.c:491
+#: ../install_steps_interactive.pm_.c:503
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brukernavnet kan kun inneholde sm bokstaver, tall, `-' og `_'"
-#: ../install_steps_interactive.pm_.c:510
+#: ../install_steps_interactive.pm_.c:522
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -1583,125 +1620,129 @@ msgstr ""
"systemsvikt.\n"
"nsker du opprette en oppstartsdiskett for systemet ditt?"
-#: ../install_steps_interactive.pm_.c:518
+#: ../install_steps_interactive.pm_.c:530
msgid "Sorry, no floppy drive available"
msgstr "Beklager, ingen diskettstasjon tilgjengelig"
-#: ../install_steps_interactive.pm_.c:521
+#: ../install_steps_interactive.pm_.c:533
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Velg diskettstasjonen du nsker bruke for lage oppstartsdisketten"
-#: ../install_steps_interactive.pm_.c:526
+#: ../install_steps_interactive.pm_.c:538
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Sett inn en diskett i stasjon %s"
-#: ../install_steps_interactive.pm_.c:527
+#: ../install_steps_interactive.pm_.c:539
msgid "Creating bootdisk"
msgstr "Oppretter oppstartdiskett"
-#: ../install_steps_interactive.pm_.c:534
+#: ../install_steps_interactive.pm_.c:546
msgid "Preparing bootloader"
msgstr "Klargjr oppstartslaster"
-#: ../install_steps_interactive.pm_.c:543
+#: ../install_steps_interactive.pm_.c:555
msgid "First sector of boot partition"
msgstr "Frste sektor av oppstartspartisjon"
-#: ../install_steps_interactive.pm_.c:543
+#: ../install_steps_interactive.pm_.c:555
msgid "First sector of drive"
msgstr "Frste sektor av disk"
-#: ../install_steps_interactive.pm_.c:548
+#: ../install_steps_interactive.pm_.c:560
msgid "Lilo Installation"
msgstr "Lilo-installasjon"
-#: ../install_steps_interactive.pm_.c:549
+#: ../install_steps_interactive.pm_.c:561
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du installere oppstartslasteren?"
-#: ../install_steps_interactive.pm_.c:552
+#: ../install_steps_interactive.pm_.c:564
msgid "Do you want to use lilo?"
msgstr "nsker du bruke lilo?"
-#: ../install_steps_interactive.pm_.c:556
+#: ../install_steps_interactive.pm_.c:568
msgid "linear"
msgstr "liner"
-#: ../install_steps_interactive.pm_.c:557
+#: ../install_steps_interactive.pm_.c:569
msgid "compact"
msgstr "kompakt"
-#: ../install_steps_interactive.pm_.c:561
+#: ../install_steps_interactive.pm_.c:573
msgid "restrict"
msgstr "begrense"
-#: ../install_steps_interactive.pm_.c:567
+#: ../install_steps_interactive.pm_.c:579
msgid "Lilo main options"
msgstr "Lilo hovedopsjoner"
-#: ../install_steps_interactive.pm_.c:571
+#: ../install_steps_interactive.pm_.c:583
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsjon ``Begrense kommandolinje-opsjoner'' kan ikke brukes uten et passord"
-#: ../install_steps_interactive.pm_.c:582
+#: ../install_steps_interactive.pm_.c:594
msgid "Add"
msgstr "Legg til"
-#: ../install_steps_interactive.pm_.c:660
+#: ../install_steps_interactive.pm_.c:646
+msgid "Lilo failed. The following error occured:"
+msgstr ""
+
+#: ../install_steps_interactive.pm_.c:678
#, c-format
msgid "What %s card have you?"
msgstr "Hvilket %s kort har du?"
-#: ../install_steps_interactive.pm_.c:672
+#: ../install_steps_interactive.pm_.c:690
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../install_steps_interactive.pm_.c:672
+#: ../install_steps_interactive.pm_.c:690
msgid "Specify options"
msgstr "Spesifiser opsjoner"
-#: ../install_steps_interactive.pm_.c:685
+#: ../install_steps_interactive.pm_.c:703
msgid "Module options:"
msgstr "Modulopsjoner:"
-#: ../install_steps_interactive.pm_.c:705
+#: ../install_steps_interactive.pm_.c:723
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../install_steps_interactive.pm_.c:706
+#: ../install_steps_interactive.pm_.c:724
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../install_steps_interactive.pm_.c:718
+#: ../install_steps_interactive.pm_.c:736
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fant %s %s grensesnitt"
-#: ../install_steps_interactive.pm_.c:719
+#: ../install_steps_interactive.pm_.c:737
msgid "Do you have another one?"
msgstr "Har du enda ett?"
-#: ../install_steps_interactive.pm_.c:720
+#: ../install_steps_interactive.pm_.c:738
#, c-format
msgid "Do you have an %s interface?"
msgstr "Har du et %s grensesnitt?"
-#: ../install_steps_interactive.pm_.c:722 ../interactive.pm_.c:52
-#: ../my_gtk.pm_.c:342
+#: ../install_steps_interactive.pm_.c:740 ../interactive.pm_.c:52
+#: ../my_gtk.pm_.c:345
msgid "No"
msgstr "Nei"
-#: ../install_steps_interactive.pm_.c:722 ../interactive.pm_.c:52
-#: ../my_gtk.pm_.c:342
+#: ../install_steps_interactive.pm_.c:740 ../interactive.pm_.c:52
+#: ../my_gtk.pm_.c:345
msgid "Yes"
msgstr "Ja"
-#: ../install_steps_interactive.pm_.c:723
+#: ../install_steps_interactive.pm_.c:741
msgid "See hardware info"
msgstr "Se maskinvareinfo"
@@ -1710,7 +1751,7 @@ msgstr "Se maskinvareinfo"
msgid "Starting step `%s'\n"
msgstr "Starter steg `%s'\n"
-#: ../interactive.pm_.c:57 ../my_gtk.pm_.c:192 ../my_gtk.pm_.c:343
+#: ../interactive.pm_.c:57 ../my_gtk.pm_.c:195 ../my_gtk.pm_.c:346
msgid "Cancel"
msgstr "Avbryt"
@@ -1863,123 +1904,123 @@ msgstr "US-tastatur"
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslavisk (latinsk oppsett)"
-#: ../mouse.pm_.c:14
+#: ../mouse.pm_.c:15
msgid "No Mouse"
msgstr "Ingen mus"
-#: ../mouse.pm_.c:15
+#: ../mouse.pm_.c:16
msgid "Microsoft Rev 2.1A or higher (serial)"
msgstr "Microsoft Rev 2.1A eller hyere (seriell)"
-#: ../mouse.pm_.c:16
+#: ../mouse.pm_.c:17
msgid "Logitech CC Series (serial)"
msgstr "Logitech CC-seriene (seriell)"
-#: ../mouse.pm_.c:17
+#: ../mouse.pm_.c:18
msgid "Logitech MouseMan+/FirstMouse+ (serial)"
msgstr "Logitech MouseMan+/FirstMouse+ (seriell)"
-#: ../mouse.pm_.c:18
+#: ../mouse.pm_.c:19
msgid "ASCII MieMouse (serial)"
msgstr "ASCII MieMouse (seriell)"
-#: ../mouse.pm_.c:19
+#: ../mouse.pm_.c:20
msgid "Genius NetMouse (serial)"
msgstr "Genius NetMouse (seriell)"
-#: ../mouse.pm_.c:20
+#: ../mouse.pm_.c:21
msgid "Microsoft IntelliMouse (serial)"
msgstr "Microsoft IntelliMouse (seriell)"
-#: ../mouse.pm_.c:21
+#: ../mouse.pm_.c:22
msgid "MM Series (serial)"
msgstr "MM-seriene (seriell)"
-#: ../mouse.pm_.c:22
+#: ../mouse.pm_.c:23
msgid "MM HitTablet (serial)"
msgstr "MM HitTablet (seriell)"
-#: ../mouse.pm_.c:23
+#: ../mouse.pm_.c:24
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (seriell, gammel C7 type)"
-#: ../mouse.pm_.c:24
+#: ../mouse.pm_.c:25
msgid "Logitech MouseMan/FirstMouse (serial)"
msgstr "Logitech MouseMan/FirstMouse (seriell)"
-#: ../mouse.pm_.c:25
+#: ../mouse.pm_.c:26
msgid "Generic Mouse (serial)"
msgstr "Generic Mouse (seriell)"
-#: ../mouse.pm_.c:26
+#: ../mouse.pm_.c:27
msgid "Microsoft compatible (serial)"
msgstr "Microsoft-kompatibel (seriell)"
-#: ../mouse.pm_.c:27
+#: ../mouse.pm_.c:28
msgid "Generic 3 Button Mouse (serial)"
msgstr "Generic 3-knappers mus (seriell)"
-#: ../mouse.pm_.c:28
+#: ../mouse.pm_.c:29
msgid "Mouse Systems (serial)"
msgstr "Mouse Systems (seriell)"
-#: ../mouse.pm_.c:29
+#: ../mouse.pm_.c:30
msgid "Generic Mouse (PS/2)"
msgstr "Generic Mouse (PS/2)"
-#: ../mouse.pm_.c:30
+#: ../mouse.pm_.c:31
msgid "Logitech MouseMan/FirstMouse (ps/2)"
msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-#: ../mouse.pm_.c:31
+#: ../mouse.pm_.c:32
msgid "Generic 3 Button Mouse (PS/2)"
msgstr "Generic 3-knappers mus (PS/2)"
-#: ../mouse.pm_.c:32
+#: ../mouse.pm_.c:33
msgid "ALPS GlidePoint (PS/2)"
msgstr "ALPS GlidePoint (PS/2)"
-#: ../mouse.pm_.c:33
+#: ../mouse.pm_.c:34
msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
-#: ../mouse.pm_.c:34
+#: ../mouse.pm_.c:35
msgid "Kensington Thinking Mouse (PS/2)"
msgstr "Kensington Thinking Mouse (PS/2)"
-#: ../mouse.pm_.c:35
+#: ../mouse.pm_.c:36
msgid "ASCII MieMouse (PS/2)"
msgstr "ASCII MieMouse (PS/2)"
-#: ../mouse.pm_.c:36
+#: ../mouse.pm_.c:37
msgid "Genius NetMouse (PS/2)"
msgstr "Genius NetMouse (PS/2)"
-#: ../mouse.pm_.c:37
+#: ../mouse.pm_.c:38
msgid "Genius NetMouse Pro (PS/2)"
msgstr "Genius NetMouse Pro (PS/2)"
-#: ../mouse.pm_.c:38
+#: ../mouse.pm_.c:39
msgid "Genius NetScroll (PS/2)"
msgstr "Genius NetScroll (PS/2)"
-#: ../mouse.pm_.c:39
+#: ../mouse.pm_.c:40
msgid "Microsoft IntelliMouse (PS/2)"
msgstr "Microsoft IntelliMouse (PS/2)"
-#: ../mouse.pm_.c:40
+#: ../mouse.pm_.c:41
msgid "ATI Bus Mouse"
msgstr "ATI Bus Mouse"
-#: ../mouse.pm_.c:41
+#: ../mouse.pm_.c:42
msgid "Microsoft Bus Mouse"
msgstr "Microsoft Bus Mouse"
-#: ../mouse.pm_.c:42
+#: ../mouse.pm_.c:43
msgid "Logitech Bus Mouse"
msgstr "Logitech Bus Mouse"
-#: ../my_gtk.pm_.c:343
+#: ../my_gtk.pm_.c:346
msgid "Is it ok?"
msgstr "Er det ok?"
@@ -2002,6 +2043,12 @@ msgstr "Drlig sikkerhetskopi-fil"
msgid "Error writing to file %s"
msgstr "Feil ved skriving til fil %s"
+#~ msgid " Mb"
+#~ msgstr "Mb"
+
+#~ msgid "Package ordering failed"
+#~ msgstr "Pakkelevering mislykket"
+
#~ msgid ""
#~ "Congratulations, installation is complete.\n"
#~ "Remove the boot media and press return to reboot.\n"
diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm
index 6330cb325..e5851b1dd 100644
--- a/perl-install/timezone.pm
+++ b/perl-install/timezone.pm
@@ -17,6 +17,13 @@ sub getTimeZones {
@l;
}
+sub read ($) {
+ my ($f) = @_;
+ my %t = getVarsFromSh($f) or die "cannot open file $f: $!";
+
+ ("timezone", $t{ZONE}, "GMT", text2bool($t{GMT}));
+}
+
sub write($$$) {
my ($prefix, $t, $f) = @_;
/a> 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360
# translation of ru.po to Russian
# Translation of libDrakX messages to Russian
# Copyright (C) 1999-2008 Mandriva
#
# Pavel Maryanov <acid_jack@ukr.net>, 2002-2009.
# Alice Lafox <alice@lafox.com.ua>, 2003.
# Alice Lafox <alice@lafox.net>, 2004, 2005.
# Alexander Kuzmenkov <rc@mezon.ru>, 2007.
# Alexander Kazancev <kazancas@mandriva.org>, 2008,2009,2010
msgid ""
msgstr ""
"Project-Id-Version: ru\n"
"POT-Creation-Date: 2012-12-11 17:29+0100\n"
"PO-Revision-Date: 2010-06-14 19:10+0300\n"
"Last-Translator: Alexander Kazancev <kazancas@mandriva.ru>\n"
"Language-Team: Russian <gnu@mx.ru>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
"X-Generator: KBabel 1.11.4\n"
"X-Language: ru_RU\n"

#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:588 pkgs.pm:287
#, c-format
msgid "Please wait"
msgstr "Подождите, пожалуйста"

#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Выполняется установка начального загрузчика"

#: any.pm:272
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"LILO желает прописать новый Volume ID для диска %s.  Примите к сведению, "
"что\n"
"изменение Volume ID для загрузочного диска Windows NT, 2000 или XP фатально "
"для Windows.\n"
"Это предупреждение не актуально для Windows 95, 98 или для дисков с данными "
"NT.\n"
"\n"
"Назначить новый Volume ID?"

#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Не удалось установить начальный загрузчик. Возникла следующая ошибка:"

#: any.pm:289
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Возможно, вам необходимо сменить свое загрузочное устройство\n"
"Open Firmware, чтобы заработал начальный загрузчик. Если вы не видите\n"
"приглашения начального загрузчика при перезагрузке, нажмите и\n"
"удерживайте Command-Option-O-F при перезагрузке и введите:\n"
"setenv boot-device %s,\\\\:tbxi\n"
"Затем введите: shut-down\n"
"При следующей загрузке вы должны увидеть приглашение начального загрузчика."

#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard disk drive you boot "
"(eg: System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Вы решили установить начальный загрузчик на раздел.\n"
"Предполагается, что у вас уже есть начальный загрузчик на жестком диске,\n"
"с которого вы загрузились (напр., System Commander).\n"
"\n"
"С какого диска вы загружаетесь?"

#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Установка загрузчика"

#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Куда установить начальный загрузчик?"

#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Первый сектор диска %s (MBR)"

#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Первый сектор диска (MBR)"

#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Первый сектор корневого раздела"

#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "На дискету"

#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Пропустить"

#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Настройка стиля загрузки"

#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Главные параметры начального загрузчика"

#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Начальный загрузчик"

#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Используемый начальный загрузчик"

#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Загрузочное устройство"

#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Основные параметры"

#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Пауза перед загрузкой образа по умолчанию"

#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Включить ACPI"

#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Включить SMP"

#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Включить APIC"

#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Включить Local APIC"

#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Безопасность"

#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"

#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Пароли не совпадают"

#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Попробуйте ещё раз"

#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Нельзя использовать пароль с %s"

#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Пароль (повтор)"

#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Очищать /tmp при каждой загрузке"

#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Сообщение инициализации"

#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Задержка Open Firmware"

#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Тайм-аут при загрузке ядра"

#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Включить загрузку с CD?"

#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Включить загрузку OF?"

#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "ОС по умолчанию?"

#: any.pm:546
#, c-format
msgid "Image"
msgstr "Образ"

#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"

#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Дополнение"

#: any.pm:550
#, c-format
msgid "Xen append"
msgstr "Дополнение Xen"

#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Требовать пароль при загрузке"

#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Видеорежим"

#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Сетевой профиль"

#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Метка"

#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По умолчанию"

#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "Без видео"

#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не допускается"

#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Вы должны указать образ ядра"

#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Вы должны указать корневой раздел"

#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Эта метка уже используется"

#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какой тип пункта вы хотите добавить?"

#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Другая ОС (SunOS...)"

#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Другая ОС (MacOS...)"

#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Другая ОС (Windows...)"

#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Настройка загрузчика"

#: any.pm:656
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"На данный момент в вашем меню загрузки имеются следующие пункты.\n"
"Вы можете добавить еще несколько или изменить существующие."

#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "доступ к Х-программам"

#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "доступ к инструментам rpm"

#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "разрешить \"su\""

#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "доступ к административным файлам"

#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "доступ к сетевым утилитам"

#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "доступ к утилитам компиляции"

#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(уже добавлено %s)"

#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Укажите имя пользователя"

#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
"Имя пользователя должно содержать только буквы в нижнем регистре, цифры , "
"`-' и `_'"

#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Имя пользователя слишком длинное"

#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Это имя пользователя уже добавлено"

#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID пользователя"

#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID группы"

#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr " %s должно быть числом"

#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s должно быть больше 500. Принять в любом случае?"

#: any.pm:899
#, c-format
msgid "User management"
msgstr "Управление пользователями"

#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Включить аккаунт гостя"

#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Установка пароля администратора (root)"

#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Добавление пользователя"

#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Значок"

#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Настоящее имя"

#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Логин"

#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Командный процессор"

#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Подождите. Добавляется источник..."

#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматический вход"

#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Я могу настроить ваш компьютер на автовход в систему одного пользователя."

#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Использовать эту возможность"

#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Выберите пользователя по умолчанию:"

#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Выберите запускаемый оконный менеджер:"

#: any.pm:1018 any.pm:1032 any.pm:1100
#, c-format
msgid "Release Notes"
msgstr "Заметки о релизе"

#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Закрыть"

#: any.pm:1086
#, c-format
msgid "License agreement"
msgstr "Лицензионное соглашение"

#: any.pm:1088 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Выход"

#: any.pm:1095
#, c-format
msgid "Do you accept this license ?"
msgstr "Вы согласны с условиями лицензионного соглашения?"

#: any.pm:1096
#, c-format
msgid "Accept"
msgstr "Принять"

#: any.pm:1096
#, c-format
msgid "Refuse"
msgstr "Отказаться"

#: any.pm:1122 any.pm:1185
#, c-format
msgid "Please choose a language to use"
msgstr "Выберите используемый язык"

#: any.pm:1150
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"В ОС Mageia поддерживается несколько языков. Выберите\n"
"языки, которые необходимо установить. Они будут доступны после\n"
"завершения установкаи и перезапуска системы."

#: any.pm:1152 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"

#: any.pm:1153
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Многоязычность"

#: any.pm:1154
#, c-format
msgid "Select Additional Languages"
msgstr ""

#: any.pm:1163 any.pm:1194
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Кодировка для обратной совместимости (не UTF-8)"

#: any.pm:1164
#, c-format
msgid "All languages"
msgstr "Все языки"

#: any.pm:1186
#, c-format
msgid "Language choice"
msgstr "Выбор языка"

#: any.pm:1240
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"

#: any.pm:1241
#, c-format
msgid "Please choose your country"
msgstr "Выберите свою страну"

#: any.pm:1243
#, c-format
msgid "Here is the full list of available countries"
msgstr "Здесь представлен полный список имеющихся стран"

#: any.pm:1244
#, c-format
msgid "Other Countries"
msgstr "Другие страны"

#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Дополнительно"

#: any.pm:1250
#, c-format
msgid "Input method:"
msgstr "Метод ввода:"

#: any.pm:1253
#, c-format
msgid "None"
msgstr "Отсутствует"

#: any.pm:1334
#, c-format
msgid "No sharing"
msgstr "Нет общего доступа"

#: any.pm:1334
#, c-format
msgid "Allow all users"
msgstr "Разрешить всем пользователям"

#: any.pm:1334
#, c-format
msgid "Custom"
msgstr "Выборочно"

#: any.pm:1338
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Хотите разрешить пользователям открывать доступ к некоторым своим\n"
"каталогам? Это позволит пользователям просто нажать на \"Общий доступ\"\n"
"в konqueror и nautilus.\n"
"\"Выборочно\" разрешит настроить доступ отдельным пользователям.\n"

#: any.pm:1350
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: традиционная для Unix система раздачи файлов, имеет слабую поддержку в "
"Mac и Windows."

#: any.pm:1353
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: система совместного использования файлов, используется в Windows, Mac "
"OS X и в большинстве современных систем Linux."

#: any.pm:1361
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Вы можете экспортировать при помощи NFS или SMB. Пожалуйста, выберите, "
"который из них вы желаете использовать."

#: any.pm:1389
#, c-format
msgid "Launch userdrake"
msgstr "Запустить userdrake"

#: any.pm:1391
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Общий доступ каждого пользователя использует группу \"fileshare\". \n"
"Вы можете использовать userdrake для добавления пользователей в эту группу."

#: any.pm:1498
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
"Чтобы изменения вступили в силу, необходимо выполнить повторный вход в "
"систему. Нажмите кнопку «ОК», чтобы выйти сейчас."

#: any.pm:1502
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Вам нужно выйти и зайти снова чтобы изменения вступили в силу"

#: any.pm:1537
#, c-format
msgid "Timezone"
msgstr "Часовой пояс"

#: any.pm:1537
#, c-format
msgid "Which is your timezone?"
msgstr "Какой у вас часовой пояс?"

#: any.pm:1560 any.pm:1562
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Настройка даты, времени и часового пояса"

#: any.pm:1563
#, c-format
msgid "What is the best time?"
msgstr "Какое наилучшее время?"

#: any.pm:1567
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (аппаратные часы выставлены по UTC)"

#: any.pm:1568
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Аппаратные часы выставлены по местному времени)"

#: any.pm:1570
#, c-format
msgid "NTP Server"
msgstr "Сервер NTP"

#: any.pm:1571
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматическая синхронизация времени (через NTP)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Локальный файл"

#: authentication.pm:25
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:26
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:27
#, c-format
msgid "Smart Card"
msgstr "Смарт-карта"

#: authentication.pm:28 authentication.pm:215
#, c-format
msgid "Windows Domain"
msgstr "Домен Windows"

#: authentication.pm:29
#, c-format
msgid "Kerberos 5"
msgstr "Kerberos 5"

#: authentication.pm:65
#, c-format
msgid "Local file:"
msgstr "Локальный файл:"

#: authentication.pm:65
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
"Аутентификация выполняется локально, сведения о пользователях заносится в "
"локальный файл"

#: authentication.pm:66
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:66
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Сообщает вашему компьютеру, что он должен использовать LDAP для всех или "
"некоторых авторизаций. LDAP объединяет определенные типы информации внутри "
"вашей организации."

#: authentication.pm:67
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:67
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
"Позволяет группе компьютеров работать в одинаковом домене Network "
"Information Service с общими файлами паролей и групп."

#: authentication.pm:68
#, c-format
msgid "Windows Domain:"
msgstr "Домен Windows:"

#: authentication.pm:68
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind позволяет системе получать информацию и аутентифицировать "
"пользователей в домене Windows."

#: authentication.pm:69
#, c-format
msgid "Kerberos 5 :"
msgstr "Kerberos 5 :"

#: authentication.pm:69
#, c-format
msgid "With Kerberos and LDAP for authentication in Active Directory Server "
msgstr "С Kerberos и LDAP для аутентификации на сервере с Active Directory"

#: authentication.pm:106 authentication.pm:140 authentication.pm:159
#: authentication.pm:160 authentication.pm:186 authentication.pm:210
#: authentication.pm:865
#, c-format
msgid " "
msgstr " "

#: authentication.pm:107 authentication.pm:141 authentication.pm:187
#: authentication.pm:211
#, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Вас приветствует мастер настройки аутентификации"

#: authentication.pm:109
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr "Выбрана аутентификация типа LDAP. Проверьте конфигурационные параметры"

#: authentication.pm:111 authentication.pm:166
#, c-format
msgid "LDAP Server"
msgstr "LDAP-сервер"

#: authentication.pm:112 authentication.pm:167
#, c-format
msgid "Base dn"
msgstr "База DN"

#: authentication.pm:113
#, c-format
msgid "Fetch base Dn "
msgstr "Получить базу DN"

#: authentication.pm:115 authentication.pm:170
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Использовать шифрованное соединение с TLS"

#: authentication.pm:116 authentication.pm:171
#, c-format
msgid "Download CA Certificate "
msgstr "Загрузить сертификат CA"

#: authentication.pm:118 authentication.pm:151
#, c-format
msgid "Use Disconnect mode "
msgstr "Использовать автономный режим"

#: authentication.pm:119 authentication.pm:172
#, c-format
msgid "Use anonymous BIND "
msgstr "Использовать анонимный BIND"

#: authentication.pm:120 authentication.pm:123 authentication.pm:125
#: authentication.pm:129
#, c-format
msgid "  "
msgstr "  "

#: authentication.pm:121 authentication.pm:173
#, c-format
msgid "Bind DN "
msgstr "Привязка DN"

#: authentication.pm:122 authentication.pm:174
#, c-format
msgid "Bind Password "
msgstr "Привязка пароля"

#: authentication.pm:124
#, c-format
msgid "Advanced path for group "
msgstr "Дополнительный путь для группы"

#: authentication.pm:126
#, c-format
msgid "Password base"
msgstr "База пароля"

#: authentication.pm:127
#, c-format
msgid "Group base"
msgstr "База группы"

#: authentication.pm:128
#, c-format
msgid "Shadow base"
msgstr "База shadow"

#: authentication.pm:143
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""
"Выбрана аутентификация типа Kerberos 5. Проверьте конфигурационные параметры"

#: authentication.pm:145
#, c-format
msgid "Realm "
msgstr "Область"

#: authentication.pm:147
#, c-format
msgid "KDCs Servers"
msgstr "Серверы KDC"

#: authentication.pm:149
#, c-format
msgid "Use DNS to locate KDC for the realm"
msgstr "Использовать DNS для разрешения KDC для области"

#: authentication.pm:150
#, c-format
msgid "Use DNS to locate realms"
msgstr "Использовать DNS для разрешения областей"

#: authentication.pm:155
#, c-format
msgid "Use local file for users information"
msgstr "Использовать локальный файл с данными о пользователях"

#: authentication.pm:156
#, c-format
msgid "Use LDAP for users information"
msgstr "Использовать LDAP с данными о пользователях"

#: authentication.pm:162
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""
"Выбрана аутентификация типа Kerberos 5. Теперь необходимо выбрать тип данных "
"пользователей"

#: authentication.pm:168
#, c-format
msgid "Fecth base Dn "
msgstr "Получить базу Dn"

#: authentication.pm:189
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr "Выбрана аутентификация типа NIS. Проверьте конфигурационные параметры"

#: authentication.pm:191
#, c-format
msgid "NIS Domain"
msgstr "Домен NIS"

#: authentication.pm:192
#, c-format
msgid "NIS Server"
msgstr "Сервер NIS"

#: authentication.pm:213
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""
"Выбрана аутентификация в домене Windows. Проверьте конфигурационные параметры"

#: authentication.pm:217
#, c-format
msgid "Domain Model "
msgstr "Тип домена"

#: authentication.pm:219
#, c-format
msgid "Active Directory Realm "
msgstr "Область Active Directory"

#: authentication.pm:220
#, c-format
msgid "DNS Domain"
msgstr "Домен DNS"

#: authentication.pm:221
#, c-format
msgid "DC Server"
msgstr "Сервер DC"

#: authentication.pm:235 authentication.pm:251
#, c-format
msgid "Authentication"
msgstr "Аутентификация"

#: authentication.pm:237
#, c-format
msgid "Authentication method"
msgstr "Тип аутентификации"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:242
#, c-format
msgid "No password"
msgstr "Без пароля"

#: authentication.pm:263
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Этот пароль слишком прост (его длина должна быть не менее %d символов)"

#: authentication.pm:373
#, c-format
msgid "Cannot use broadcast with no NIS domain"
msgstr "Невозможно использовать широковещание без домена NIS"

#: authentication.pm:860
#, c-format
msgid "Select file"
msgstr "Выберите файл"

#: authentication.pm:866
#, c-format
msgid "Domain Windows for authentication : "
msgstr "Домен Windows для аутентификации:"

#: authentication.pm:868
#, c-format
msgid "Domain Admin User Name"
msgstr "Имя пользователя — администратора домена"

#: authentication.pm:869
#, c-format
msgid "Domain Admin Password"
msgstr "Пароль администратора домена"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:998
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Добро пожаловать в выбор операционной системы!\n"
"\n"
"Выберите ОС из списка или дождитесь загрузки по умолчанию.\n"
"\n"

#: bootloader.pm:1190
#, c-format
msgid "LILO with text menu"
msgstr "LILO с текстовым меню"

#: bootloader.pm:1191
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB с графическим меню"

#: bootloader.pm:1192
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB с графическим меню"

#: bootloader.pm:1193
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB с текстовым меню"

#: bootloader.pm:1194
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1195
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1281
#, c-format
msgid "not enough room in /boot"
msgstr "не хватает места в /boot"

#: bootloader.pm:2030
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Начальный загрузчик нельзя установить на раздел %s\n"

#: bootloader.pm:2197
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Так как был изменён номера раздела, необходимо обновить конфигурацию "
"начального загрузчика"

#: bootloader.pm:2210
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Начальный загрузчик не может быть корректно установлен. Вам необходимо "
"загрузиться в режиме rescue и выбрать \"%s\""

#: bootloader.pm:2211
#, c-format
msgid "Re-install Boot Loader"
msgstr "Переустановка начального загрузчика"

#: common.pm:142
#, c-format
msgid "B"
msgstr "Б"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "КБ"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "МБ"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "ГБ"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "ТБ"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d минут"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 минута"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d секунд"

#: common.pm:393
#, c-format
msgid "command %s missing"
msgstr "отсутствует команда %s"

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV является протоколом, который позволяет вам локально монтировать "
"директорию веб-сервера, интерпретируя ее как локальную файловую систему (при "
"условии, что веб-сервер настроен как сервер WebDAV). Если вы захотите "
"добавить точки монтирования WebDAV, выберите \"Новая\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Новая"

#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Размонтировать"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Монтировать"

#: diskdrake/dav.pm:65
#, c-format
msgid "Server"
msgstr "Сервер"

#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:722 diskdrake/interactive.pm:740
#: diskdrake/interactive.pm:744 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Точка монтирования"

#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1163 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Параметры"

#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
#, c-format
msgid "Remove"
msgstr "Удалить"

#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:193 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Готово"

#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
#: diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
#, c-format
msgid "Error"
msgstr "Ошибка"

#: diskdrake/dav.pm:86
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Пожалуйста, введите URL сервера WebDAV"

#: diskdrake/dav.pm:90
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL должен начинаться с  http:// или https://"

#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:815 diskdrake/interactive.pm:880
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Внимание"

#: diskdrake/dav.pm:106
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Вы уверены, что хотите удалить эту точку монтирования?"

#: diskdrake/dav.pm:124
#, c-format
msgid "Server: "
msgstr "Сервер: "

#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1371 diskdrake/interactive.pm:1459
#, c-format
msgid "Mount point: "
msgstr "Точка монтирования:"

#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1466
#, c-format
msgid "Options: %s"
msgstr "Параметры: %s"

#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:301
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:108
#: fs/partitioning_wizard.pm:55 fs/partitioning_wizard.pm:238
#: fs/partitioning_wizard.pm:246 fs/partitioning_wizard.pm:285
#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:496
#: fs/partitioning_wizard.pm:579 fs/partitioning_wizard.pm:582
#, c-format
msgid "Partitioning"
msgstr "Разметка диска"

#: diskdrake/hd_gtk.pm:73
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr "Выберите раздел, смените файловую систему, затем выберите действие"

#: diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:1184
#: diskdrake/interactive.pm:1194 diskdrake/interactive.pm:1247
#, c-format
msgid "Read carefully"
msgstr "Прочтите внимательно"

#: diskdrake/hd_gtk.pm:115
#, c-format
msgid "Please make a backup of your data first"
msgstr "Пожалуйста, сделайте резервную копию данных сначала"

#: diskdrake/hd_gtk.pm:116 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Выход"

#: diskdrake/hd_gtk.pm:116
#, c-format
msgid "Continue"
msgstr "Продолжить"

#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
#: ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Справка"

#: diskdrake/hd_gtk.pm:234
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"У вас есть один большой раздел MS Windows.\n"
"Я предлагаю вам сначала изменить размер раздела\n"
"(выберите его, а затем нажмите \"Изменить размер\")"

#: diskdrake/hd_gtk.pm:236
#, c-format
msgid "Please click on a partition"
msgstr "Пожалуйста, щелкните на разделе"

#: diskdrake/hd_gtk.pm:250 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Подробности"

#: diskdrake/hd_gtk.pm:299
#, c-format
msgid "No hard disk drives found"
msgstr "Жесткие диски не найдены"

#: diskdrake/hd_gtk.pm:330
#, c-format
msgid "Unknown"
msgstr "Неизвестный"

#: diskdrake/hd_gtk.pm:395
#, c-format
msgid "Ext4"
msgstr "Ext4"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Swap"
msgstr "Своп"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:396 fs/partitioning_wizard.pm:404 services.pm:193
#, c-format
msgid "Other"
msgstr "Другие"

#: diskdrake/hd_gtk.pm:396 diskdrake/interactive.pm:1386
#: fs/partitioning_wizard.pm:404
#, c-format
msgid "Empty"
msgstr "Пусто"

#: diskdrake/hd_gtk.pm:403
#, c-format
msgid "Filesystem types:"
msgstr "Типы файловых систем:"

#: diskdrake/hd_gtk.pm:424
#, c-format
msgid "This partition is already empty"
msgstr "Этот раздела уже пуст"

#: diskdrake/hd_gtk.pm:433
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Используйте сначала ``Размонтировать''"

#: diskdrake/hd_gtk.pm:433
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Вместо этого используйте ``%s'' (в режиме эксперта)"

#: diskdrake/hd_gtk.pm:433 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:639 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Тип"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Выберите другой раздел"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Выберите раздел"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:382
#: interactive/curses.pm:532
#, c-format
msgid "More"
msgstr "Больше"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
#: diskdrake/interactive.pm:1293
#, c-format
msgid "Confirmation"
msgstr "Подтверждение"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Все-таки продолжить?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Выйти без сохранения"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Выйти без записи таблицы разделов?"

#: diskdrake/interactive.pm:294
#, c-format
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Желаете сохранить изменения /etc/fstab"

#: diskdrake/interactive.pm:301 fs/partitioning_wizard.pm:285
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
"Вам нужно перезагрузиться, чтобы изменения таблицы разделов вступили в силу"

#: diskdrake/interactive.pm:306
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
"Вам следует отформатировать раздел %s.\n"
"Иначе в fstab не будет записи о точке монтирования %s .\n"
"Выйти в любом случае?"

#: diskdrake/interactive.pm:319
#, c-format
msgid "Clear all"
msgstr "Очистить все"

#: diskdrake/interactive.pm:320
#, c-format
msgid "Auto allocate"
msgstr "Разместить автоматически"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to normal mode"
msgstr "Переключиться в нормальный режим"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to expert mode"
msgstr "Переключиться в режим эксперта"

#: diskdrake/interactive.pm:338
#, c-format
msgid "Hard disk drive information"
msgstr "Информация о жестком диске"

#: diskdrake/interactive.pm:371
#, c-format
msgid "All primary partitions are used"
msgstr "Все первичные разделы уже использованы"

#: diskdrake/interactive.pm:372
#, c-format
msgid "I cannot add any more partitions"
msgstr "Добавление новых разделов невозможно"

#: diskdrake/interactive.pm:373
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Чтобы получить больше разделов, удалите один, чтобы получить возможность "
"создать расширенный раздел"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Reload partition table"
msgstr "Перезагрузить таблицу разделов"

#: diskdrake/interactive.pm:391
#, c-format
msgid "Detailed information"
msgstr "Подробная информация"

#: diskdrake/interactive.pm:407
#, c-format
msgid "View"
msgstr "Вид"

#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:828
#, c-format
msgid "Resize"
msgstr "Изменить размер"

#: diskdrake/interactive.pm:413
#, c-format
msgid "Format"
msgstr "Форматировать"

#: diskdrake/interactive.pm:415 diskdrake/interactive.pm:965
#, c-format
msgid "Add to RAID"
msgstr "Добавить в RAID"

#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:984
#, c-format
msgid "Add to LVM"
msgstr "Добавить в LVM"

#: diskdrake/interactive.pm:417
#, c-format
msgid "Use"
msgstr "Использовать"

#: diskdrake/interactive.pm:419
#, c-format
msgid "Delete"
msgstr "Удалить"

#: diskdrake/interactive.pm:420
#, c-format
msgid "Remove from RAID"
msgstr "Удалить из RAID"

#: diskdrake/interactive.pm:421
#, c-format
msgid "Remove from LVM"
msgstr "Удалить из LVM"

#: diskdrake/interactive.pm:422
#, c-format
msgid "Remove from dm"
msgstr "Удалить из dm"

#: diskdrake/interactive.pm:423
#, c-format
msgid "Modify RAID"
msgstr "Изменить RAID"

#: diskdrake/interactive.pm:424
#, c-format
msgid "Use for loopback"
msgstr "Использовать для loopback"

#: diskdrake/interactive.pm:434
#, c-format
msgid "Create"
msgstr "Создать"

#: diskdrake/interactive.pm:456
#, c-format
msgid "Failed to mount partition"
msgstr "Сбой монтирования раздела"

#: diskdrake/interactive.pm:490 diskdrake/interactive.pm:492
#, c-format
msgid "Create a new partition"
msgstr "Создать новый раздел"

#: diskdrake/interactive.pm:494
#, c-format
msgid "Start sector: "
msgstr "Начальный сектор: "

#: diskdrake/interactive.pm:497 diskdrake/interactive.pm:1069
#, c-format
msgid "Size in MB: "
msgstr "Размер в MB: "

#: diskdrake/interactive.pm:499 diskdrake/interactive.pm:1070
#, c-format
msgid "Filesystem type: "
msgstr "Тип файловой системы: "

#: diskdrake/interactive.pm:505
#, c-format
msgid "Preference: "
msgstr "Предпочтение: "

#: diskdrake/interactive.pm:508
#, c-format
msgid "Logical volume name "
msgstr "Имя логического раздела"

#: diskdrake/interactive.pm:510
#, c-format
msgid "Encrypt partition"
msgstr "Шифрование раздела"

#: diskdrake/interactive.pm:511
#, c-format
msgid "Encryption key "
msgstr "Ключ шифрования"

#: diskdrake/interactive.pm:512 diskdrake/interactive.pm:1503
#, c-format
msgid "Encryption key (again)"
msgstr "Ключ шифрования (еще раз)"

#: diskdrake/interactive.pm:524 diskdrake/interactive.pm:1499
#, c-format
msgid "The encryption keys do not match"
msgstr "Ключи шифрования не совпадают"

#: diskdrake/interactive.pm:525
#, c-format
msgid "Missing encryption key"
msgstr "Отсутствует ключ шифрования"

#: diskdrake/interactive.pm:545
#, c-format
msgid ""
"You cannot create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Вы не можете создать новый раздел\n"
"(вы достигли максимального количества первичных разделов).\n"
"Сначала удалите первичный раздел и создайте расширенный раздел."

#: diskdrake/interactive.pm:597
#, c-format
msgid "Remove the loopback file?"
msgstr "Удалить файл loopback?"

#: diskdrake/interactive.pm:620
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"После изменения типа раздела %s, все данные в этом разделе будут потеряны"

#: diskdrake/interactive.pm:636
#, c-format
msgid "Change partition type"
msgstr "Изменить тип раздела"

#: diskdrake/interactive.pm:638 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Какую файловую систему желаете?"

#: diskdrake/interactive.pm:645
#, c-format
msgid "Switching from %s to %s"
msgstr "Переключение с %s на %s"

#: diskdrake/interactive.pm:680
#, c-format
msgid "Set volume label"
msgstr "Установить метку тома"

#: diskdrake/interactive.pm:682
#, c-format
msgid "Beware, this will be written to disk as soon as you validate!"
msgstr "Осторожно, после проверки эти данные будут записаны на диск!"

#: diskdrake/interactive.pm:683
#, c-format
msgid "Beware, this will be written to disk only after formatting!"
msgstr ""
"Осторожно, эти данные будут записаны на диск только после форматирования!"

#: diskdrake/interactive.pm:685
#, c-format
msgid "Which volume label?"
msgstr "Метка тома?"

#: diskdrake/interactive.pm:686
#, c-format
msgid "Label:"
msgstr "Метка:"

#: diskdrake/interactive.pm:707
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Куда вы хотите примонтировать файл loopback %s?"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Куда вы хотите примонтировать устройство %s?"

#: diskdrake/interactive.pm:713
#, c-format
msgid ""
"Cannot unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Невозможно снять точку монтирования, поскольку этот раздел используется для "
"loop back. Удалите сначала loopback"

#: diskdrake/interactive.pm:743
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Куда вы хотите примонтировать %s?"

#: diskdrake/interactive.pm:773 diskdrake/interactive.pm:869
#: fs/partitioning_wizard.pm:131 fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing"
msgstr "Изменение размера"

#: diskdrake/interactive.pm:773
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Вычисляются границы файловой системы FAT"

#: diskdrake/interactive.pm:815
#, c-format
msgid "This partition is not resizeable"
msgstr "Размер этого раздела нельзя изменить"

#: diskdrake/interactive.pm:820
#, c-format
msgid "All data on this partition should be backed up"
msgstr "Для всех данных в этом разделе должна быть сделана резервная копия"

#: diskdrake/interactive.pm:822
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"После изменения размера раздела %s все данные в этом разделе будут потеряны"

#: diskdrake/interactive.pm:829
#, c-format
msgid "Choose the new size"
msgstr "Выбрать новый размер"

#: diskdrake/interactive.pm:830
#, c-format
msgid "New size in MB: "
msgstr "Новый размер в MB: "

#: diskdrake/interactive.pm:831
#, c-format
msgid "Minimum size: %s MB"
msgstr "Минимальный размер: %s МБ"

#: diskdrake/interactive.pm:832
#, c-format
msgid "Maximum size: %s MB"
msgstr "Максимальный размер: %s МБ"

#: diskdrake/interactive.pm:880 fs/partitioning_wizard.pm:215
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Для обеспечения целостности данных после изменения размера\n"
"разделов при следующей загрузке в Microsoft Windows® будет\n"
"запущена проверка файловой системы"

#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1494
#, c-format
msgid "Filesystem encryption key"
msgstr "Ключ шифрования файловой системы: "

#: diskdrake/interactive.pm:947
#, c-format
msgid "Enter your filesystem encryption key"
msgstr "Введите ключ шифрования файловой системы"

#: diskdrake/interactive.pm:948 diskdrake/interactive.pm:1502
#, c-format
msgid "Encryption key"
msgstr "Ключ шифрования"

#: diskdrake/interactive.pm:955
#, c-format
msgid "Invalid key"
msgstr "неправильный ключ"

#: diskdrake/interactive.pm:965
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Выберите существующий RAID для добавления"

#: diskdrake/interactive.pm:967 diskdrake/interactive.pm:986
#, c-format
msgid "new"
msgstr "новый"

#: diskdrake/interactive.pm:984
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Выберите существующий LVM для добавления"

#: diskdrake/interactive.pm:996 diskdrake/interactive.pm:1005
#, c-format
msgid "LVM name"
msgstr "Имя LVM"

#: diskdrake/interactive.pm:997
#, c-format
msgid "Enter a name for the new LVM volume group"
msgstr "Введите имя для новой группы томов LVM"

#: diskdrake/interactive.pm:1002
#, c-format
msgid "\"%s\" already exists"
msgstr "\"%s\" уже существует"

#: diskdrake/interactive.pm:1034
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
"Физический раздел %s используется.\n"
"Желаете ли вы переместить используемые физические области на этом разделе на "
"другие разделы?"

#: diskdrake/interactive.pm:1036
#, c-format
msgid "Moving physical extents"
msgstr "Перемещение физических расширений"

#: diskdrake/interactive.pm:1054
#, c-format
msgid "This partition cannot be used for loopback"
msgstr "Этот раздел не может быть использован для loopback"

#: diskdrake/interactive.pm:1067
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:1068
#, c-format
msgid "Loopback file name: "
msgstr "Имя файла loopback: "

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Give a file name"
msgstr "Укажите имя файла"

#: diskdrake/interactive.pm:1076
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Файл уже используется другим loopback, выберите другой"

#: diskdrake/interactive.pm:1077
#, c-format
msgid "File already exists. Use it?"
msgstr "Файл уже существует. Использовать его?"

#: diskdrake/interactive.pm:1109 diskdrake/interactive.pm:1112
#, c-format
msgid "Mount options"
msgstr "Параметры монтирования"

#: diskdrake/interactive.pm:1119
#, c-format
msgid "Various"
msgstr "Различные"

#: diskdrake/interactive.pm:1165
#, c-format
msgid "device"
msgstr "устройство"

#: diskdrake/interactive.pm:1166
#, c-format
msgid "level"
msgstr "уровень"

#: diskdrake/interactive.pm:1167
#, c-format
msgid "chunk size in KiB"
msgstr "размер куска в KiB"

#: diskdrake/interactive.pm:1185
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Осторожно: эта операция опасна."

#: diskdrake/interactive.pm:1200
#, c-format
msgid "Partitioning Type"
msgstr "Тип разметки"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "What type of partitioning?"
msgstr "Какой тип разбиения на разделы?"

#: diskdrake/interactive.pm:1238
#, c-format
msgid "You'll need to reboot before the modification can take effect"
msgstr "Необходимо выполнить перегрузку, чтобы изменения вступили в силу"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "Таблица разделов устройства %s будет записана на диск"

#: diskdrake/interactive.pm:1266 fs/format.pm:107 fs/format.pm:114
#, c-format
msgid "Formatting partition %s"
msgstr "Форматируется раздел %s"

#: diskdrake/interactive.pm:1279
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"После форматирования раздела %s, все данные на этом разделе будут потеряны"

#: diskdrake/interactive.pm:1293 fs/partitioning.pm:48
#, c-format
msgid "Check for bad blocks?"
msgstr "Выполнить проверку на сбойные сектора?"

#: diskdrake/interactive.pm:1308
#, c-format
msgid "Move files to the new partition"
msgstr "Переместить файлы на новый раздел"

#: diskdrake/interactive.pm:1308
#, c-format
msgid "Hide files"
msgstr "Скрыть файлы"

#: diskdrake/interactive.pm:1309
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""
"Каталог %s уже содержит данные\n"
"(%s)\n"
"\n"
"Вы можете или переместить файлы на раздел, который потом будет примонтирован "
"в этот каталог, или оставить оставить их нетронутыми (в результате чего они "
"будут скрыты примонтированным каталогом)."

#: diskdrake/interactive.pm:1324
#, c-format
msgid "Moving files to the new partition"
msgstr "Перемещение файлов в новый раздел"

#: diskdrake/interactive.pm:1328
#, c-format
msgid "Copying %s"
msgstr "Копируется %s"

#: diskdrake/interactive.pm:1332
#, c-format
msgid "Removing %s"
msgstr "Удаляется %s"

#: diskdrake/interactive.pm:1346
#, c-format
msgid "partition %s is now known as %s"
msgstr "раздел %s теперь известен как %s"

#: diskdrake/interactive.pm:1347
#, c-format
msgid "Partitions have been renumbered: "
msgstr "У Для разделов были изменены номера: "

#: diskdrake/interactive.pm:1372 diskdrake/interactive.pm:1443
#, c-format
msgid "Device: "
msgstr "Устройство: "

#: diskdrake/interactive.pm:1373
#, c-format
msgid "Volume label: "
msgstr "Метка тома: "

#: diskdrake/interactive.pm:1374
#, c-format
msgid "UUID: "
msgstr "UUID: "

#: diskdrake/interactive.pm:1375
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "буква диска DOS: %s (просто предположение)\n"

#: diskdrake/interactive.pm:1379 diskdrake/interactive.pm:1388
#: diskdrake/interactive.pm:1462
#, c-format
msgid "Type: "
msgstr "Тип: "

#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1447
#, c-format
msgid "Name: "
msgstr "Имя: "

#: diskdrake/interactive.pm:1390
#, c-format
msgid "Start: sector %s\n"
msgstr "Начало: сектор %s\n"

#: diskdrake/interactive.pm:1391
#, c-format
msgid "Size: %s"
msgstr "Размер: %s"

#: diskdrake/interactive.pm:1393
#, c-format
msgid ", %s sectors"
msgstr ", %s секторов"

#: diskdrake/interactive.pm:1395
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Цилиндр %d до %d\n"

#: diskdrake/interactive.pm:1396
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Количество логических областей: %d\n"

#: diskdrake/interactive.pm:1397
#, c-format
msgid "Formatted\n"
msgstr "Отформатирован\n"

#: diskdrake/interactive.pm:1398
#, c-format
msgid "Not formatted\n"
msgstr "Не отформатирован\n"

#: diskdrake/interactive.pm:1399
#, c-format
msgid "Mounted\n"
msgstr "Примонтирован\n"

#: diskdrake/interactive.pm:1400
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1402
#, c-format
msgid "Encrypted"
msgstr "Зашифрована"

#: diskdrake/interactive.pm:1404
#, c-format
msgid " (mapped on %s)"
msgstr " (отображено на %s)"

#: diskdrake/interactive.pm:1405
#, c-format
msgid " (to map on %s)"
msgstr "(отобразить на %s)"

#: diskdrake/interactive.pm:1406
#, c-format
msgid " (inactive)"
msgstr "(неактивно)"

#: diskdrake/interactive.pm:1413
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Файл(ы) loopback:\n"
"   %s\n"

#: diskdrake/interactive.pm:1414
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Загрузочный раздел по умолчанию\n"
"    (для загрузки MS-DOS, не для lilo)\n"

#: diskdrake/interactive.pm:1416
#, c-format
msgid "Level %s\n"
msgstr "Уровень %s\n"

#: diskdrake/interactive.pm:1417
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Размер chunk %d KiB\n"

#: diskdrake/interactive.pm:1418
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-диски %s\n"

#: diskdrake/interactive.pm:1420
#, c-format
msgid "Loopback file name: %s"
msgstr "Имя файла loopback: %s"

#: diskdrake/interactive.pm:1423
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Есть вероятность, что этот раздел\n"
"является разделом драйвера.\n"
"Лучше вам его не трогать.\n"

#: diskdrake/interactive.pm:1426
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Этот специальный раздел\n"
"Bootstrap предназначен\n"
"для двойной загрузки системы.\n"

#: diskdrake/interactive.pm:1435
#, c-format
msgid "Free space on %s (%s)"
msgstr "Свободное пространство на %s (%s)"

#: diskdrake/interactive.pm:1444
#, c-format
msgid "Read-only"
msgstr "Только для чтения"

#: diskdrake/interactive.pm:1445
#, c-format
msgid "Size: %s\n"
msgstr "Размер: %s\n"

#: diskdrake/interactive.pm:1446
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрия: %s цилиндров, %s головок, %s секторов\n"

#: diskdrake/interactive.pm:1448
#, c-format
msgid "Medium type: "
msgstr "Тип носителя: "

#: diskdrake/interactive.pm:1449
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-диски %s\n"

#: diskdrake/interactive.pm:1450
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тип таблицы разделов: %s\n"

#: diskdrake/interactive.pm:1451
#, c-format
msgid "on channel %d id %d\n"
msgstr "на канале %d id %d\n"

#: diskdrake/interactive.pm:1495
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Выберите ключ шифрования вашей файловой системы"

#: diskdrake/interactive.pm:1498
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Этот ключ шифрования слишком прост (должен быть длиной по крайней мере в %d "
"символов)"

#: diskdrake/interactive.pm:1505
#, c-format
msgid "Encryption algorithm"
msgstr "Алгоритм шифрования"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Изменить тип"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Отмена"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Cannot login using username %s (bad password?)"
msgstr "Невозможно войти под пользователем %s (неверный пароль?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Требуется аутентификация домена"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Какое имя пользователя"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Еще один"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Пожалуйста, введите свои имя пользователя, пароль и имя домена, чтобы "
"получить доступ к хосту"

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Имя пользователя"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Домен"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Поиск серверов"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search for new servers"
msgstr "Поиск новых серверов"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Необходимо установить пакет %s. Хотите установить его?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "Невозможно установить пакет %s !"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Обязательный пакет %s отсутствует"

#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Следующие пакеты должны быть установлены:\n"

#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Устанавливаются пакеты..."

#: do_pkgs.pm:287 pkgs.pm:287
#, c-format
msgid "Removing packages..."
msgstr "Удаляются пакеты..."

#: fs/any.pm:18
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Произошла ошибка - не были найдены верные устройства для создания новых "
"файловых систем. Пожалуйста, проверьте свое аппаратное обеспечение для "
"выяснения вероятной причины."

#: fs/any.pm:76 fs/partitioning_wizard.pm:64
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "У вас должен быть раздел FAT, примонтированный на /boot/efi"

#: fs/format.pm:111
#, c-format
msgid "Creating and formatting file %s"
msgstr "Создается и форматируется файл %s"

#: fs/format.pm:131
#, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "Неизвестно, как установить метку тома для %s с типом %s"

#: fs/format.pm:143
#, c-format
msgid "setting label on %s failed, is it formatted?"
msgstr "не удалось установить метку для %s. Он отформатирован?"

#: fs/format.pm:184
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Не знаю, как форматировать %s с типом %s"

#: fs/format.pm:189 fs/format.pm:191
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s форматирование %s завершилось неудачно"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Замыкающие монтирования %s\n"

#: fs/mount.pm:85
#, c-format
msgid "Mounting partition %s"
msgstr "Монтируется раздел %s"

#: fs/mount.pm:87
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "монтирование раздела %s в каталог %s завершилось неудачно"

#: fs/mount.pm:92 fs/mount.pm:109
#, c-format
msgid "Checking %s"
msgstr "Проверяется %s"

#: fs/mount.pm:126 partition_table.pm:422
#, c-format
msgid "error unmounting %s: %s"
msgstr "ошибка размонтирования %s: %s"

#: fs/mount.pm:141
#, c-format
msgid "Enabling swap partition %s"
msgstr "Включается раздел swap %s"

#: fs/mount_options.pm:113
#, c-format
msgid "Enable POSIX Access Control Lists"
msgstr "Включить POSIX Access Conrol Lists (ACL)"

#: fs/mount_options.pm:115
#, c-format
msgid "Flush write cache on file close"
msgstr "Очищать кэш записи при закрытии файла"

#: fs/mount_options.pm:117
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""
"Разрешить подсчет дисковых квот для групп и опционально установку лимитов"

#: fs/mount_options.pm:119
#, c-format
msgid ""
"Do not update inode access times on this filesystem\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Не обновлять время доступа к inode на этой файловой системе\n"
"(нужно для более быстрого доступа к спулу новостей для ускорения работы "
"серверов новостей)."

#: fs/mount_options.pm:122
#, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Не обновлять время доступа к inode на этой файловой системе\n"
"(нужно для более быстрого доступа к спулу новостей для ускорения работы "
"серверов новостей)."

#: fs/mount_options.pm:125
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Может быть примонтировано только явным образом (то есть,\n"
"опция -a  не приведет к монтированию файловой системы)."

#: fs/mount_options.pm:128
#, c-format
msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Не интерпретировать символьные или специальные блочные устройства в файловой "
"системе."

#: fs/mount_options.pm:130
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Не позволять выполнение любых бинарников на примонтированной\n"
"файловой системе. Эта опция может быть полезна для серверов,\n"
"которые имеют файловые системы, содержащие бинарники для архитектур,\n"
"отличных от их собственной."

#: fs/mount_options.pm:134
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
"Не разрешать битам set-user-identifier или set-group-identifier\n"
"вступать в силу. (Это вроде бы безопасно, но на деле будет более безопасно \n"
"если у вас установлен suidperl(1).)"

#: fs/mount_options.pm:138
#, c-format
msgid "Mount the filesystem read-only."
msgstr "Монтировать файловую систему в режиме только-для-чтения."

#: fs/mount_options.pm:140
#, c-format
msgid "All I/O to the filesystem should be done synchronously."
msgstr "Все I/O для файловой системы должны быть выполнены синхронно."

#: fs/mount_options.pm:142
#, c-format
msgid "Allow every user to mount and umount the filesystem."
msgstr ""
"Разрешить всем пользователям монтировать и размонтировать файловую систему."

#: fs/mount_options.pm:144
#, c-format
msgid "Allow an ordinary user to mount the filesystem."
msgstr "Разрешить обычному пользователям монтировать файловую систему."

#: fs/mount_options.pm:146
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""
"Включить учёт дисковых квот для пользователей и, опционально, установку "
"лимитов."

#: fs/mount_options.pm:148
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Поддержка расширенных атрибутов \"user.\""

#: fs/mount_options.pm:150
#, c-format
msgid "Give write access to ordinary users"
msgstr "Разрешить запись обычным пользователям."

#: fs/mount_options.pm:152
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Разрешить доступ только-на-чтение обычным пользователям."

#: fs/mount_point.pm:82
#, c-format
msgid "Duplicate mount point %s"
msgstr "Дублирование точки монтирования %s"

#: fs/mount_point.pm:97
#, c-format
msgid "No partition available"
msgstr "Нет доступных разделов"

#: fs/mount_point.pm:100
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Идёт поиск точек монтирования на разделах"

#: fs/mount_point.pm:107
#, c-format
msgid "Choose the mount points"
msgstr "Выберите точки монтирования"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Выберите разделы для форматирования"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Ошибка проверки файловой системы %s. Исправить ошибки? (Внимание: возможна "
"потеря данных!)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Недостаточно пространства для свопинга для завершения установки. Увеличьте "
"его размер"

#: fs/partitioning_wizard.pm:55
#, c-format
msgid ""
"You must have a root partition.\n"
"To accomplish this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Необходимо создать корневой раздел.\n"
"Для этого создайте раздел (или выберите уже существующий).\n"
"Затем выберите действие «Точка монтирования» и установите её в «/»"

#: fs/partitioning_wizard.pm:61
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Отсутствует раздел для свопинга\n"
"\n"
"Продолжить?"

#: fs/partitioning_wizard.pm:95
#, c-format
msgid "Use free space"
msgstr "использовать свободное место"

#: fs/partitioning_wizard.pm:97
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Недостаточно свободного места для размещения новых разделов"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "Use existing partitions"
msgstr "Использовать существующие разделы"

#: fs/partitioning_wizard.pm:107
#, c-format
msgid "There is no existing partition to use"
msgstr "Отсутствуют доступные для использования разделы"

#: fs/partitioning_wizard.pm:131
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Вычисляется размер раздела Microsoft Windows®"

#: fs/partitioning_wizard.pm:167
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Использовать свободное место в разделе Microsoft Windows®"

#: fs/partitioning_wizard.pm:171
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Размер какого из разделов нужно изменить?"

#: fs/partitioning_wizard.pm:174
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the %s installation."
msgstr ""
"Раздел Microsoft Windows® слишком фрагментирован. Перезагрузите компьютер в "
"систему Microsoft Windows®, запустите утилиту «defrag», а затем повторно "
"запустите установку %s."

#: fs/partitioning_wizard.pm:182
#, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"ПРЕДУПРЕЖДЕНИЕ!\n"
"\n"
"\n"
"Сейчас DrakX изменит размер вашего раздела Windows.\n"
"\n"
"\n"
"Будьте осторожны: эта операция опасна. Если вы еще этого не сделали, вам "
"стоит выйти из инсталляции, запустить \"chkdsk c:\" в командной строке под "
"Windows (имейте в виду, что запуска  графической программы \"scandisk\" "
"недостаточно, обязательно запустите \"chkdsk\" в командной строке), по "
"желанию выполнить дефрагментацию (defrag), затем начать установку снова. Вы "
"также должны сделать резервную копию данных.\n"
"\n"
"\n"
"Если уверены, нажмите %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:191 fs/partitioning_wizard.pm:559
#: interactive.pm:550 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Далее"

#: fs/partitioning_wizard.pm:197
#, c-format
msgid "Partitionning"
msgstr "Разметка диска"

#: fs/partitioning_wizard.pm:197
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Какой объём оставить для раздела %s с Microsoft Windows®?"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Size"
msgstr "Размер"

#: fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Изменяется размер раздела Microsoft Windows®"

#: fs/partitioning_wizard.pm:212
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Не удалось измененить размер FAT: %s"

#: fs/partitioning_wizard.pm:228
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Отсутствует раздел FAT для изменения размера (или не хватает места)"

#: fs/partitioning_wizard.pm:233
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Удалить систему Microsoft Windows®"

#: fs/partitioning_wizard.pm:233
#, c-format
msgid "Erase and use entire disk"
msgstr "очистить и использовать весь диск"

#: fs/partitioning_wizard.pm:237
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
"Доступно более одного жёсткого диска. На какой из них нужно установить Linux?"

#: fs/partitioning_wizard.pm:245 fsedit.pm:634
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "На диске %s будут уничтожены ВСЕ существующие разделы и данные"

#: fs/partitioning_wizard.pm:255
#, c-format
msgid "Custom disk partitioning"
msgstr "ручная разметка диска"

#: fs/partitioning_wizard.pm:261
#, c-format
msgid "Use fdisk"
msgstr "Используйте fdisk"

#: fs/partitioning_wizard.pm:264
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Теперь можно разметить диск %s.\n"
"После завершения сохраните настройки с помощью клавиши «w»"

#: fs/partitioning_wizard.pm:403
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"

#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:579
#, c-format
msgid "I cannot find any room for installing"
msgstr "Отсутствует дисковое пространство для установки"

#: fs/partitioning_wizard.pm:442 fs/partitioning_wizard.pm:586
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Мастер разметки диска DrakX предлагает следующие решения:"

#: fs/partitioning_wizard.pm:512
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Это содержимое вашего жесткого диска"

#: fs/partitioning_wizard.pm:596
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ошибка разметки: %s"

#: fs/type.pm:389
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Файловую систему JFS нельзя использовать на разделах размером менее 16 МБ"

#: fs/type.pm:390
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Файловую систему ReiserFS нельзя использовать на разделах размером менее 32 "
"МБ"

#: fsedit.pm:24
#, c-format
msgid "simple"
msgstr "простой"

#: fsedit.pm:28
#, c-format
msgid "with /usr"
msgstr "с /usr"

#: fsedit.pm:33
#, c-format
msgid "server"
msgstr "сервер"

#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "На дисках %s обнаружен программный (BIOS) RAID-массив. Включить его?"

#: fsedit.pm:247
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"Невозможно прочитать таблицу разделов на устройстве %s, она слишком "
"повреждена :(\n"
"Можно попытаться продолжить, очистив плохие разделы (ВСЯ ИНФОРМАЦИЯ будет "
"потеряна!).\n"
"Другой вариант - не разрешить DrakX'у изменить таблицу разделов.\n"
"(ошибка %s)\n"
"\n"
"Вы согласны потерять все разделы?\n"

#: fsedit.pm:427
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Точка монтирования должна начинаться с /"

#: fsedit.pm:428
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Точки монтирования должны содержать только символы букв и цифр"

#: fsedit.pm:429
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Уже есть раздел с точкой монтирования %s\n"

#: fsedit.pm:434
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a separate /boot partition"
msgstr ""
"Вы выбрали программный раздел RAID в качестве корневого (/).\n"
"Никакой загрузчик не в состоянии управлять им без раздела /boot.\n"
"Пожалуйста, убедитесь, что раздел /boot добавлен"

#: fsedit.pm:440
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
"Версия метаданных не подеррживается для загрузочного раздела. Убедитесь, что "
"добавили раздел /boot."

#: fsedit.pm:448
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
"Вы выбрали программный раздел RAID в качестве /boot.\n"
"Никакой загрузчик не в состоянии управлять им."

#: fsedit.pm:452
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Версия метаданных не поддерживается для загрузочного раздела."

#: fsedit.pm:459
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a separate /boot partition"
msgstr ""
"Вы выбрали зашифрованный в качестве корневого (/).\n"
"Никакой загрузчик не в состоянии управлять им без раздела /boot.\n"
"Пожалуйста, убедитесь, что раздел /boot добавлен"

#: fsedit.pm:465 fsedit.pm:485
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Вы не можете использовать зашифрованную файловую систему для точки "
"монтирования %s"

#: fsedit.pm:469
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Вы не можете использовать логический том LVM для точки монтирования %s, "
"поскольку он распределён по физическим разделам"

#: fsedit.pm:471
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a separate /boot partition first"
msgstr ""
"Вы выбрали логический том LVM в качестве корневого (/).\n"
"Загрузчик не сможет управлять им, если том распределён по физическим "
"разделам.\n"
"Вам следует сначала создать раздел /boot"

#: fsedit.pm:475 fsedit.pm:477
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Этот каталог должен оставаться в пределах корневой файловой системы"

#: fsedit.pm:479 fsedit.pm:481 fsedit.pm:483
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Для этой точки монтирования требуется реальная файловая система\n"
"(ext2/3/4, reiserfs, xfs или jfs)\n"

#: fsedit.pm:550
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Недостаточно свободного места для автоматического распределения"

#: fsedit.pm:552
#, c-format
msgid "Nothing to do"
msgstr "Нечего выполнять"

#: harddrake/data.pm:62
#, c-format
msgid "SATA controllers"
msgstr "Контроллеры SATA"

#: harddrake/data.pm:71
#, c-format
msgid "RAID controllers"
msgstr "Контроллеры RAID"

#: harddrake/data.pm:81
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Контроллеры (E)IDE/ATA"

#: harddrake/data.pm:92
#, c-format
msgid "Card readers"
msgstr "Устройства для считывания с карт"

#: harddrake/data.pm:101
#, c-format
msgid "Firewire controllers"
msgstr "Контроллеры Firewire"

#: harddrake/data.pm:110
#, c-format
msgid "PCMCIA controllers"
msgstr "Контроллеры PCMCIA"

#: harddrake/data.pm:119
#, c-format
msgid "SCSI controllers"
msgstr "Контроллеры SCSI"

#: harddrake/data.pm:128
#, c-format
msgid "USB controllers"
msgstr "Контроллеры USB"

#: harddrake/data.pm:137
#, c-format
msgid "USB ports"
msgstr "Порты USB"

#: harddrake/data.pm:146
#, c-format
msgid "SMBus controllers"
msgstr "Контроллеры SMBus"

#: harddrake/data.pm:155
#, c-format
msgid "Bridges and system controllers"
msgstr "Мосты и системные контроллеры"

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Дискета"

#: harddrake/data.pm:177
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:193
#, c-format
msgid "Hard Disk"
msgstr "Диск"

#: harddrake/data.pm:203
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Устройства хранения данных на USB"

#: harddrake/data.pm:212
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:222
#, c-format
msgid "CD/DVD burners"
msgstr "Пишущие CD/DVD"

#: harddrake/data.pm:232
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:242
#, c-format
msgid "Tape"
msgstr "Магнитная лента"

#: harddrake/data.pm:253
#, c-format
msgid "AGP controllers"
msgstr "Контроллеры AGP"

#: harddrake/data.pm:262
#, c-format
msgid "Videocard"
msgstr "Видеокарта"

#: harddrake/data.pm:271
#, c-format
msgid "DVB card"
msgstr "DVB-карта"

#: harddrake/data.pm:279
#, c-format
msgid "Tvcard"
msgstr "ТВ-карта"

#: harddrake/data.pm:289
#, c-format
msgid "Other MultiMedia devices"
msgstr "Другие устройства мультимедиа"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Звуковая карта"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Веб-камера"

#: harddrake/data.pm:327
#, c-format
msgid "Processors"
msgstr "Процессоры"

#: harddrake/data.pm:337
#, c-format
msgid "ISDN adapters"
msgstr "Адаптеры ISDN"

#: harddrake/data.pm:348
#, c-format
msgid "USB sound devices"
msgstr "USB звуковые устройства"

#: harddrake/data.pm:357
#, c-format
msgid "Radio cards"
msgstr "Радио-карты"

#: harddrake/data.pm:366
#, c-format
msgid "ATM network cards"
msgstr "ATM сетевые карты"

#: harddrake/data.pm:375
#, c-format
msgid "WAN network cards"
msgstr "WAN сетевые карты"

#: harddrake/data.pm:384
#, c-format
msgid "Bluetooth devices"
msgstr "Устройства Bluetooth"

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr "Карта ethernet"

#: harddrake/data.pm:410
#, c-format
msgid "Modem"
msgstr "Модем"

#: harddrake/data.pm:420
#, c-format
msgid "ADSL adapters"
msgstr "Адаптеры ADSL"

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Память"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Принтер"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:455
#, c-format
msgid "Game port controllers"
msgstr "Контроллеры игровых портов"

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr "Джойстик"

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Клавиатура"

#: harddrake/data.pm:488
#, c-format
msgid "Tablet and touchscreen"
msgstr "Планшет и сенсорная панель"

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Мышь"

#: harddrake/data.pm:512
#, c-format
msgid "Biometry"
msgstr "Биометрия"

#: harddrake/data.pm:520
#, c-format
msgid "UPS"
msgstr "ИБП"

#: harddrake/data.pm:529
#, c-format
msgid "Scanner"
msgstr "Сканер"

#: harddrake/data.pm:540
#, c-format
msgid "Unknown/Others"
msgstr "Неизвестный/Другие"

#: harddrake/data.pm:570
#, c-format
msgid "cpu # "
msgstr "процессор # "

#: harddrake/sound.pm:270
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Подождите... Применяются настройки"

#: harddrake/sound.pm:331
#, c-format
msgid "Enable PulseAudio"
msgstr "Включить PulseAudio"

#: harddrake/sound.pm:336
#, c-format
msgid "Use Glitch-Free mode"
msgstr "Использовать режим без помех"

#: harddrake/sound.pm:342
#, c-format
msgid "Reset sound mixer to default values"
msgstr "Восстановить значения микшера по умолчанию "

#: harddrake/sound.pm:347
#, c-format
msgid "Troubleshooting"
msgstr "Поиск и устранение неисправностей"

#: harddrake/sound.pm:354
#, c-format
msgid "No alternative driver"
msgstr "Альтернативный драйвер отсутствует"

#: harddrake/sound.pm:355
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Для данной звуковой карты (%s) отсутствует альтернативный драйвер OSS/ALSA, "
"которая в данный момент использует «%s»"

#: harddrake/sound.pm:362
#, c-format
msgid "Sound configuration"
msgstr "Настройка звука"

#: harddrake/sound.pm:364
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Здесь можно выбрать альтернативный драйвер (OSS или ALSA) для звуковой карты "
"(%s)"

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
#, fuzzy, c-format
msgid ""
"\n"
"\n"
"Your card currently uses the %s\"%s\" driver (the default driver for your "
"card is \"%s\")"
msgstr ""
"\n"
"\n"
"В настоящий момент для карты используется драйвер %s «%s» (драйвером по "
"умолчанию является «%s»)"

#: harddrake/sound.pm:371
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS API\n"
"- the new ALSA API that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (открытая звуковая система) была первой звуковой API. Она является "
"звуковой API, не зависящей от ОС (доступна на большинстве UNIX-системах), но "
"она все-таки очень простая и ограниченная API.\n"
"Куда уж больше, все драйверы OSS и так заново открывают колесо.\n"
"\n"
"ALSA (расширенная звуковая архитектура Linux) представляет собой модульную "
"архитектуру, которая поддерживает довольно широкий диапазон ISA, USB и PCI-"
"карт.\n"
"\n"
"Она также предоставляет значительно большую API, чем OSS.\n"
"\n"
"Для поддержки alsa можно использовать:\n"
"- старую API, совместимую с OSS\n"
"- новую API ALSA, предоставляющую много расширенных возможностей, но "
"требующую библиотеку ALSA.\n"

#: harddrake/sound.pm:385 harddrake/sound.pm:468
#, c-format
msgid "Driver:"
msgstr "Драйвер:"

#: harddrake/sound.pm:399
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"Старый драйвер \"%s\" занесен в черный список.\n"
"\n"
"О нем был создан отчет, чтобы предупредить ядро при выгрузке.\n"
"\n"
"Новый драйвер \"%s\" будет использован только при следующей начальной\n"
"загрузке."

#: harddrake/sound.pm:407
#, c-format
msgid "No open source driver"
msgstr "Нет драйвера с открытым исходным кодом"

#: harddrake/sound.pm:408
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Для вашей звуковой карты (%s) нет свободного драйвера, но имеется "
"собственный драйвер на \"%s\""

#: harddrake/sound.pm:411
#, c-format
msgid "No known driver"
msgstr "Отсутствует известный драйвер"

#: harddrake/sound.pm:412
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Для вашей звуковой карты отсутствует известный драйвер (%s)"

#: harddrake/sound.pm:427
#, c-format
msgid "Sound troubleshooting"
msgstr "Решение проблем со звуком"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:430
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Классическое тестирование ошибок звука выполняется запуском следующих "
"команд:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" сообщит вам, какой драйвер использует "
"ваша карта по умолчанию\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" сообщит вам, какой драйвер\n"
"используется в данный момент\n"
"\n"
"- \"/sbin/lsmod\" позволит вам проверить, загружен ли модуль (драйвер)\n"
"\n"
"- \"/sbin/chkconfig --list sound\" и \"/sbin/chkconfig --list alsa\"\n"
"сообщит вам, были службы sound и alsa настроены для запуска\n"
"на initlevel 3 или нет\n"
"\n"
"- \"aumix -q\" сообщит вам, включена громкость звука или нет\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" сообщит, какая программа использует\n"
"звуковую карту.\n"

#: harddrake/sound.pm:457
#, c-format
msgid "Let me pick any driver"
msgstr "Выбрать другой драйвер"

#: harddrake/sound.pm:460
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Выбор произвольного драйвера"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:463
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one from the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Если вы действительно думаете, что сами знаете, какой драйвер является "
"верным\n"
"для вашей карты, вы можете выбрать его из списка сверху.\n"
"\n"
"Текущим драйвером для вашей звуковой карты \"%s\" является \"%s\" "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Автоопределение"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Неизвестный|Обычный"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Неизвестный|CPH05X (bt878) [большинство производителей]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Неизвестный|CPH06X (bt878) [большинство производителей]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your TV card parameters if needed."
msgstr ""
"Для большинства современных ТВ-карт модуль bttv ядра GNU/Linux просто "
"автоматически определит правильные параметры.\n"
"Если ваша карта не определилась, то здесь вы можете принудительно включить "
"использование правильных типов тюнера и карты. Если необходимо, просто "
"выберите параметры своей ТВ-карты"

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Модель карты :"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Тип тюнера :"

#: interactive.pm:129 interactive.pm:550 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "ОК"

#: interactive.pm:229 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "Yes"
msgstr "Да"

#: interactive.pm:229 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "No"
msgstr "Нет"

#: interactive.pm:263
#, c-format
msgid "Choose a file"
msgstr "Выберите файл"

#: interactive.pm:388 interactive/gtk.pm:453
#, c-format
msgid "Add"
msgstr "Добавить"

#: interactive.pm:388 interactive/gtk.pm:453
#, c-format
msgid "Modify"
msgstr "Изменить"

#: interactive.pm:550 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Завершить"

#: interactive.pm:551 interactive/curses.pm:267 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Назад"

#: interactive/curses.pm:576 ugtk2.pm:872
#, c-format
msgid "No file chosen"
msgstr "Файлы не выбраны"

#: interactive/curses.pm:580 ugtk2.pm:876
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Вы указали каталог, а не файл"

#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such directory"
msgstr "Нет такого каталога"

#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "Нет такого файла"

#: interactive/gtk.pm:592
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Обратите внимание, CapsLock включен"

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Неудачный выбор, попробуйте еще раз\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "Что вы выбираете? (по умолчанию %s) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Пункты, которые вы должны заполнить:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Что вы выбираете? (0/1, по умолчанию `%s') "

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "Кнопка: `%s': %s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "Вы хотите нажать на эту кнопку?"

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Что вы выбираете? (по умолчанию `%s'%s) "

#: interactive/stdio.pm:110
#, c-format
msgid " enter `void' for void entry"
msgstr " введите `void', чтобы очистить пункт"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Существует множество вещей для выбора (%s).\n"

#: interactive/stdio.pm:131
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"Пожалуйста, выберите первое число из 10-значного диапазона,\n"
"которое вы хотите изменить или просто нажмите Enter для продолжения.\n"
"Ваш выбор?"

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Запомните, метка изменилась:\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "Заново отправить"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:203
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:220
#, c-format
msgid "Andorra"
msgstr "Андорра"

#: lang.pm:221 timezone.pm:228
#, c-format
msgid "United Arab Emirates"
msgstr "Объединенные арабские Эмираты"

#: lang.pm:222
#, c-format
msgid "Afghanistan"
msgstr "Афганистан"

#: lang.pm:223
#, c-format
msgid "Antigua and Barbuda"
msgstr "Антигуа и Барбуда"

#: lang.pm:224
#, c-format
msgid "Anguilla"
msgstr "Ангвилла"

#: lang.pm:225
#, c-format
msgid "Albania"
msgstr "Албания"

#: lang.pm:226
#, c-format
msgid "Armenia"
msgstr "Армения"

#: lang.pm:227
#, c-format
msgid "Netherlands Antilles"
msgstr "Нидерландские антильские острова"

#: lang.pm:228
#, c-format
msgid "Angola"
msgstr "Ангола"

#: lang.pm:229
#, c-format
msgid "Antarctica"
msgstr "Антарктика"

#: lang.pm:230 timezone.pm:273
#, c-format
msgid "Argentina"
msgstr "Аргентина"

#: lang.pm:231
#, c-format
msgid "American Samoa"
msgstr "Американские Самоа"

#: lang.pm:232 mirror.pm:12 timezone.pm:231
#, c-format
msgid "Austria"
msgstr "Австрия"

#: lang.pm:233 mirror.pm:11 timezone.pm:269
#, c-format
msgid "Australia"
msgstr "Австралия"

#: lang.pm:234
#, c-format
msgid "Aruba"
msgstr "Аруба"

#: lang.pm:235
#, c-format
msgid "Azerbaijan"
msgstr "Азербайджан"

#: lang.pm:236
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Босния и Герцеговина"

#: lang.pm:237
#, c-format
msgid "Barbados"
msgstr "Барбадос"

#: lang.pm:238 timezone.pm:213
#, c-format
msgid "Bangladesh"
msgstr "Бангладеш"

#: lang.pm:239 mirror.pm:13 timezone.pm:233
#, c-format
msgid "Belgium"
msgstr "Бельгия"

#: lang.pm:240
#, c-format
msgid "Burkina Faso"
msgstr "Буркина-Фасо"

#: lang.pm:241 timezone.pm:234
#, c-format
msgid "Bulgaria"
msgstr "Болгария"

#: lang.pm:242
#, c-format
msgid "Bahrain"
msgstr "Бахрейн"

#: lang.pm:243
#, c-format
msgid "Burundi"
msgstr "Бурунди"

#: lang.pm:244
#, c-format
msgid "Benin"
msgstr "Бенин"

#: lang.pm:245
#, c-format
msgid "Bermuda"
msgstr "Бермуды"

#: lang.pm:246
#, c-format
msgid "Brunei Darussalam"
msgstr "Бруней Даруссалам"

#: lang.pm:247
#, c-format
msgid "Bolivia"
msgstr "Боливия"

#: lang.pm:248 mirror.pm:14 timezone.pm:274
#, c-format
msgid "Brazil"
msgstr "Бразилия"

#: lang.pm:249
#, c-format
msgid "Bahamas"
msgstr "Багамы"

#: lang.pm:250
#, c-format
msgid "Bhutan"
msgstr "Бутан"

#: lang.pm:251
#, c-format
msgid "Bouvet Island"
msgstr "Остров Буве"

#: lang.pm:252
#, c-format
msgid "Botswana"
msgstr "Ботсвана"

#: lang.pm:253 timezone.pm:232
#, c-format
msgid "Belarus"
msgstr "Беларусь"

#: lang.pm:254
#, c-format
msgid "Belize"
msgstr "Белиз"

#: lang.pm:255 mirror.pm:15 timezone.pm:263
#, c-format
msgid "Canada"
msgstr "Канада"

#: lang.pm:256
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Кокосовые острова "

#: lang.pm:257
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Конго (Kinshasa)"

#: lang.pm:258
#, c-format
msgid "Central African Republic"
msgstr "Центрально-африканская республика"

#: lang.pm:259
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Конго (Brazzaville)"

#: lang.pm:260 mirror.pm:39 timezone.pm:257
#, c-format
msgid "Switzerland"
msgstr "Швейцария"

#: lang.pm:261
#, c-format
msgid "Cote d'Ivoire"
msgstr "Кот-д'Ивуар"

#: lang.pm:262
#, c-format
msgid "Cook Islands"
msgstr "Острова Кука"

#: lang.pm:263 timezone.pm:275
#, c-format
msgid "Chile"
msgstr "Чили"

#: lang.pm:264
#, c-format
msgid "Cameroon"
msgstr "Камерун"

#: lang.pm:265 timezone.pm:214
#, c-format
msgid "China"
msgstr "Китай"

#: lang.pm:266
#, c-format
msgid "Colombia"
msgstr "Колумбия"

#: lang.pm:267 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Коста-Рика"

#: lang.pm:268
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia & Montenegro"

#: lang.pm:269
#, c-format
msgid "Cuba"
msgstr "Куба"

#: lang.pm:270
#, c-format
msgid "Cape Verde"
msgstr "Кабо-Верде"

#: lang.pm:271
#, c-format
msgid "Christmas Island"
msgstr "Остров Рождества"

#: lang.pm:272
#, c-format
msgid "Cyprus"
msgstr "Кипр"

#: lang.pm:273 mirror.pm:17 timezone.pm:235
#, c-format
msgid "Czech Republic"
msgstr "Чешская Республика"

#: lang.pm:274 mirror.pm:22 timezone.pm:240
#, c-format
msgid "Germany"
msgstr "Германия"

#: lang.pm:275
#, c-format
msgid "Djibouti"
msgstr "Джибути"

#: lang.pm:276 mirror.pm:18 timezone.pm:236
#, c-format
msgid "Denmark"
msgstr "Дания"

#: lang.pm:277
#, c-format
msgid "Dominica"
msgstr "Доминика"

#: lang.pm:278
#, c-format
msgid "Dominican Republic"
msgstr "Доминиканская республика"

#: lang.pm:279
#, c-format
msgid "Algeria"
msgstr "Алжир"

#: lang.pm:280
#, c-format
msgid "Ecuador"
msgstr "Эквадор"

#: lang.pm:281 mirror.pm:19 timezone.pm:237
#, c-format
msgid "Estonia"
msgstr "Эстония"

#: lang.pm:282
#, c-format
msgid "Egypt"
msgstr "Египет"

#: lang.pm:283
#, c-format
msgid "Western Sahara"
msgstr "Западная Сахара"

#: lang.pm:284
#, c-format
msgid "Eritrea"
msgstr "Эритрея"

#: lang.pm:285 mirror.pm:37 timezone.pm:255
#, c-format
msgid "Spain"
msgstr "Испания"

#: lang.pm:286
#, c-format
msgid "Ethiopia"
msgstr "Эфиопия"

#: lang.pm:287 mirror.pm:20 timezone.pm:238
#, c-format
msgid "Finland"
msgstr "Финляндия"

#: lang.pm:288
#, c-format
msgid "Fiji"
msgstr "Фиджи"

#: lang.pm:289
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Фолклендские (Мальвинские) острова"

#: lang.pm:290
#, c-format
msgid "Micronesia"
msgstr "Микронезия"

#: lang.pm:291
#, c-format
msgid "Faroe Islands"
msgstr "Фарерские острова"

#: lang.pm:292 mirror.pm:21 timezone.pm:239
#, c-format
msgid "France"
msgstr "Франция"

#: lang.pm:293
#, c-format
msgid "Gabon"
msgstr "Габон"

#: lang.pm:294 timezone.pm:259
#, c-format
msgid "United Kingdom"
msgstr "Объединенное Королевство"

#: lang.pm:295
#, c-format
msgid "Grenada"
msgstr "Гренада"

#: lang.pm:296
#, c-format
msgid "Georgia"
msgstr "Грузия"

#: lang.pm:297
#, c-format
msgid "French Guiana"
msgstr "Французская Гвиана"

#: lang.pm:298
#, c-format
msgid "Ghana"
msgstr "Гана"

#: lang.pm:299
#, c-format
msgid "Gibraltar"
msgstr "Гибралтар"

#: lang.pm:300
#, c-format
msgid "Greenland"
msgstr "Гренландия"

#: lang.pm:301
#, c-format
msgid "Gambia"
msgstr "Гамбия"

#: lang.pm:302
#, c-format
msgid "Guinea"
msgstr "Гвинея"

#: lang.pm:303
#, c-format
msgid "Guadeloupe"
msgstr "Гваделупа"

#: lang.pm:304
#, c-format
msgid "Equatorial Guinea"
msgstr "Экваториальная Гвинея"

#: lang.pm:305 mirror.pm:23 timezone.pm:241
#, c-format
msgid "Greece"
msgstr "Греция"

#: lang.pm:306
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Южная Джорджия и Южные Сандвичевы острова "

#: lang.pm:307 timezone.pm:264
#, c-format
msgid "Guatemala"
msgstr "Гватемала"

#: lang.pm:308
#, c-format
msgid "Guam"
msgstr "Гуам"

#: lang.pm:309
#, c-format
msgid "Guinea-Bissau"
msgstr "Гвинея-Бисау"

#: lang.pm:310
#, c-format
msgid "Guyana"
msgstr "Гайана"

#: lang.pm:311
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Китай (Гонконг)"

#: lang.pm:312
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Острова Херда и МакДональда"

#: lang.pm:313
#, c-format
msgid "Honduras"
msgstr "Гондурас"

#: lang.pm:314
#, c-format
msgid "Croatia"
msgstr "Хорватия"

#: lang.pm:315
#, c-format
msgid "Haiti"
msgstr "Гаити"

#: lang.pm:316 mirror.pm:24 timezone.pm:242
#, c-format
msgid "Hungary"
msgstr "Венгрия"

#: lang.pm:317 timezone.pm:217
#, c-format
msgid "Indonesia"
msgstr "Индонезия"

#: lang.pm:318 mirror.pm:25 timezone.pm:243
#, c-format
msgid "Ireland"
msgstr "Ирландия"

#: lang.pm:319 mirror.pm:26 timezone.pm:219
#, c-format
msgid "Israel"
msgstr "Израиль"

#: lang.pm:320 timezone.pm:216
#, c-format
msgid "India"
msgstr "Индия"

#: lang.pm:321
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Британская территория Индийского океана"

#: lang.pm:322
#, c-format
msgid "Iraq"
msgstr "Ирак"

#: lang.pm:323 timezone.pm:218
#, c-format
msgid "Iran"
msgstr "Иран"

#: lang.pm:324
#, c-format
msgid "Iceland"
msgstr "Исландия"

#: lang.pm:325 mirror.pm:27 timezone.pm:244
#, c-format
msgid "Italy"
msgstr "Италия"

#: lang.pm:326
#, c-format
msgid "Jamaica"
msgstr "Ямайка"

#: lang.pm:327
#, c-format
msgid "Jordan"
msgstr "Иордания"

#: lang.pm:328 mirror.pm:28 timezone.pm:220
#, c-format
msgid "Japan"
msgstr "Япония"

#: lang.pm:329
#, c-format
msgid "Kenya"
msgstr "Кения"

#: lang.pm:330
#, c-format
msgid "Kyrgyzstan"
msgstr "Кыргызстан"

#: lang.pm:331
#, c-format
msgid "Cambodia"
msgstr "Камбоджа"

#: lang.pm:332
#, c-format
msgid "Kiribati"
msgstr "Кирибати"

#: lang.pm:333
#, c-format
msgid "Comoros"
msgstr "Коморские острова"

#: lang.pm:334
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Сент-Китс и Невис"

#: lang.pm:335
#, c-format
msgid "Korea (North)"
msgstr "Корея (North)"

#: lang.pm:336 timezone.pm:221
#, c-format
msgid "Korea"
msgstr "Корея"

#: lang.pm:337
#, c-format
msgid "Kuwait"
msgstr "Кувейт"

#: lang.pm:338
#, c-format
msgid "Cayman Islands"
msgstr "Каймановы острова"

#: lang.pm:339
#, c-format
msgid "Kazakhstan"
msgstr "Казахстан"

#: lang.pm:340
#, c-format
msgid "Laos"
msgstr "Лаос"

#: lang.pm:341
#, c-format
msgid "Lebanon"
msgstr "Лебанон"

#: lang.pm:342
#, c-format
msgid "Saint Lucia"
msgstr "Сент-Люсия"

#: lang.pm:343
#, c-format
msgid "Liechtenstein"
msgstr "Лихтенштейн"

#: lang.pm:344
#, c-format
msgid "Sri Lanka"
msgstr "Шри-Ланка"

#: lang.pm:345
#, c-format
msgid "Liberia"
msgstr "Либерия"

#: lang.pm:346
#, c-format
msgid "Lesotho"
msgstr "Лесото"

#: lang.pm:347 timezone.pm:245
#, c-format
msgid "Lithuania"
msgstr "Литва"

#: lang.pm:348 timezone.pm:246
#, c-format
msgid "Luxembourg"
msgstr "Люксембург"

#: lang.pm:349
#, c-format
msgid "Latvia"
msgstr "Латвия"

#: lang.pm:350
#, c-format
msgid "Libya"
msgstr "Ливия"

#: lang.pm:351
#, c-format
msgid "Morocco"
msgstr "Марокко"

#: lang.pm:352
#, c-format
msgid "Monaco"
msgstr "Монако"

#: lang.pm:353
#, c-format
msgid "Moldova"
msgstr "Молдова"

#: lang.pm:354
#, c-format
msgid "Madagascar"
msgstr "Мадагаскар"

#: lang.pm:355
#, c-format
msgid "Marshall Islands"
msgstr "Маршалловы острова"

#: lang.pm:356
#, c-format
msgid "Macedonia"
msgstr "Македония"

#: lang.pm:357
#, c-format
msgid "Mali"
msgstr "Мали"

#: lang.pm:358
#, c-format
msgid "Myanmar"
msgstr "Мьянма"

#: lang.pm:359
#, c-format
msgid "Mongolia"
msgstr "Монголия"

#: lang.pm:360
#, c-format
msgid "Northern Mariana Islands"
msgstr "Острова северной Марианы"

#: lang.pm:361
#, c-format
msgid "Martinique"
msgstr "Мартиника"

#: lang.pm:362
#, c-format
msgid "Mauritania"
msgstr "Мавритания"

#: lang.pm:363
#, c-format
msgid "Montserrat"
msgstr "Монсеррат"

#: lang.pm:364
#, c-format
msgid "Malta"
msgstr "Мальта"

#: lang.pm:365
#, c-format
msgid "Mauritius"
msgstr "Маврикий"

#: lang.pm:366
#, c-format
msgid "Maldives"
msgstr "Мальдивы"

#: lang.pm:367
#, c-format
msgid "Malawi"
msgstr "Малави"

#: lang.pm:368 timezone.pm:265
#, c-format
msgid "Mexico"
msgstr "Мексика"

#: lang.pm:369 timezone.pm:222
#, c-format
msgid "Malaysia"
msgstr "Малайзия"

#: lang.pm:370
#, c-format
msgid "Mozambique"
msgstr "Мозамбик"

#: lang.pm:371
#, c-format
msgid "Namibia"
msgstr "Намибия"

#: lang.pm:372
#, c-format
msgid "New Caledonia"
msgstr "Новая Каледония"

#: lang.pm:373
#, c-format
msgid "Niger"
msgstr "Нигер"

#: lang.pm:374
#, c-format
msgid "Norfolk Island"
msgstr "Остров Норфолк"

#: lang.pm:375
#, c-format
msgid "Nigeria"
msgstr "Нигерия"

#: lang.pm:376
#, c-format
msgid "Nicaragua"
msgstr "Никарагуа"

#: lang.pm:377 mirror.pm:29 timezone.pm:247
#, c-format
msgid "Netherlands"
msgstr "Нидерланды"

#: lang.pm:378 mirror.pm:31 timezone.pm:248
#, c-format
msgid "Norway"
msgstr "Норвегия"

#: lang.pm:379
#, c-format
msgid "Nepal"
msgstr "Непал"

#: lang.pm:380
#, c-format
msgid "Nauru"
msgstr "Науру"

#: lang.pm:381
#, c-format
msgid "Niue"
msgstr "Нью"

#: lang.pm:382 mirror.pm:30 timezone.pm:270
#, c-format
msgid "New Zealand"
msgstr "Новая Зеландия"

#: lang.pm:383
#, c-format
msgid "Oman"
msgstr "Оман"

#: lang.pm:384
#, c-format
msgid "Panama"
msgstr "Панама"

#: lang.pm:385
#, c-format
msgid "Peru"
msgstr "Перу"

#: lang.pm:386
#, c-format
msgid "French Polynesia"
msgstr "Французская Полинезия"

#: lang.pm:387
#, c-format
msgid "Papua New Guinea"
msgstr "Папуа Новая Гвинея"

#: lang.pm:388 timezone.pm:223
#, c-format
msgid "Philippines"
msgstr "Филиппины"

#: lang.pm:389
#, c-format
msgid "Pakistan"
msgstr "Пакистан"

#: lang.pm:390 mirror.pm:32 timezone.pm:249
#, c-format
msgid "Poland"
msgstr "Польша"

#: lang.pm:391
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Сен-Пьер и Микелон"

#: lang.pm:392
#, c-format
msgid "Pitcairn"
msgstr "Питкэрн"

#: lang.pm:393
#, c-format
msgid "Puerto Rico"
msgstr "Пуэрто-Рико"

#: lang.pm:394
#, c-format
msgid "Palestine"
msgstr "Палестина"

#: lang.pm:395 mirror.pm:33 timezone.pm:250
#, c-format
msgid "Portugal"
msgstr "Португалия"

#: lang.pm:396
#, c-format
msgid "Paraguay"
msgstr "Парагвай"

#: lang.pm:397
#, c-format
msgid "Palau"
msgstr "Палау"

#: lang.pm:398
#, c-format
msgid "Qatar"
msgstr "Катар"

#: lang.pm:399
#, c-format
msgid "Reunion"
msgstr "Реюньон"

#: lang.pm:400 timezone.pm:251
#, c-format
msgid "Romania"
msgstr "Румыния"

#: lang.pm:401 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Россия"

#: lang.pm:402
#, c-format
msgid "Rwanda"
msgstr "Руанда"

#: lang.pm:403
#, c-format
msgid "Saudi Arabia"
msgstr "Саудовская Аравия"

#: lang.pm:404
#, c-format
msgid "Solomon Islands"
msgstr "Соломоновы Острова"

#: lang.pm:405
#, c-format
msgid "Seychelles"
msgstr "Сейшельские Острова"

#: lang.pm:406
#, c-format
msgid "Sudan"
msgstr "Судан"

#: lang.pm:407 mirror.pm:38 timezone.pm:256
#, c-format
msgid "Sweden"
msgstr "Швеция"

#: lang.pm:408 timezone.pm:224
#, c-format
msgid "Singapore"
msgstr "Сингапур"

#: lang.pm:409
#, c-format
msgid "Saint Helena"
msgstr "Святая Елена"

#: lang.pm:410 timezone.pm:254
#, c-format
msgid "Slovenia"
msgstr "Словения"

#: lang.pm:411
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Свалбард и острова Яна Майена"

#: lang.pm:412 mirror.pm:35 timezone.pm:253
#, c-format
msgid "Slovakia"
msgstr "Словакия"

#: lang.pm:413
#, c-format
msgid "Sierra Leone"
msgstr "Сьерра-Леоне"

#: lang.pm:414
#, c-format
msgid "San Marino"
msgstr "Сан-Марино"

#: lang.pm:415
#, c-format
msgid "Senegal"
msgstr "Сенегал"

#: lang.pm:416
#, c-format
msgid "Somalia"
msgstr "Сомали"

#: lang.pm:417
#, c-format
msgid "Suriname"
msgstr "Суринам"

#: lang.pm:418
#, c-format
msgid "Sao Tome and Principe"
msgstr "Сан-Томе и Принсипи"

#: lang.pm:419
#, c-format
msgid "El Salvador"
msgstr "Сальвадор"

#: lang.pm:420
#, c-format
msgid "Syria"
msgstr "Сирия"

#: lang.pm:421
#, c-format
msgid "Swaziland"
msgstr "Свазиленд"

#: lang.pm:422
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Острова Туркс и Каикос"

#: lang.pm:423
#, c-format
msgid "Chad"
msgstr "Чад"

#: lang.pm:424
#, c-format
msgid "French Southern Territories"
msgstr "Французские южные территории"

#: lang.pm:425
#, c-format
msgid "Togo"
msgstr "Того"

#: lang.pm:426 mirror.pm:41 timezone.pm:226
#, c-format
msgid "Thailand"
msgstr "Тайланд"

#: lang.pm:427
#, c-format
msgid "Tajikistan"
msgstr "Таджикистан"

#: lang.pm:428
#, c-format
msgid "Tokelau"
msgstr "Токелау"

#: lang.pm:429
#, c-format
msgid "East Timor"
msgstr "Восточный Тимор"

#: lang.pm:430
#, c-format
msgid "Turkmenistan"
msgstr "Туркменистан"

#: lang.pm:431
#, c-format
msgid "Tunisia"
msgstr "Тунис"

#: lang.pm:432
#, c-format
msgid "Tonga"
msgstr "Тонга"

#: lang.pm:433 timezone.pm:227
#, c-format
msgid "Turkey"
msgstr "Турция"

#: lang.pm:434
#, c-format
msgid "Trinidad and Tobago"
msgstr "Тринидад и Тобаго"

#: lang.pm:435
#, c-format
msgid "Tuvalu"
msgstr "Тувалу"

#: lang.pm:436 mirror.pm:40 timezone.pm:225
#, c-format
msgid "Taiwan"
msgstr "Тайвань"

#: lang.pm:437 timezone.pm:210
#, c-format
msgid "Tanzania"
msgstr "Танзания"

#: lang.pm:438 timezone.pm:258
#, c-format
msgid "Ukraine"
msgstr "Украина"

#: lang.pm:439
#, c-format
msgid "Uganda"
msgstr "Уганда"

#: lang.pm:440
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Соединенные штаты Малых  Удаленных островов"

#: lang.pm:441 mirror.pm:42 timezone.pm:266
#, c-format
msgid "United States"
msgstr "Соединенные Штаты"

#: lang.pm:442
#, c-format
msgid "Uruguay"
msgstr "Уругвай"

#: lang.pm:443
#, c-format
msgid "Uzbekistan"
msgstr "Узбекистан"

#: lang.pm:444
#, c-format
msgid "Vatican"
msgstr "Ватикан"

#: lang.pm:445
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Сент-Винсент и Гренадины"

#: lang.pm:446
#, c-format
msgid "Venezuela"
msgstr "Венесуэла"

#: lang.pm:447
#, c-format
msgid "Virgin Islands (British)"
msgstr "Виргинские острова (Британия)"

#: lang.pm:448
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Виргинские острова (США)"

#: lang.pm:449
#, c-format
msgid "Vietnam"
msgstr "Вьетнам"

#: lang.pm:450
#, c-format
msgid "Vanuatu"
msgstr "Вануату"

#: lang.pm:451
#, c-format
msgid "Wallis and Futuna"
msgstr "Уоллес и Футана"

#: lang.pm:452
#, c-format
msgid "Samoa"
msgstr "Самоа"

#: lang.pm:453
#, c-format
msgid "Yemen"
msgstr "Йемен"

#: lang.pm:454
#, c-format
msgid "Mayotte"
msgstr "Майот"

#: lang.pm:455 mirror.pm:36 timezone.pm:209
#, c-format
msgid "South Africa"
msgstr "Южная Африка"

#: lang.pm:456
#, c-format
msgid "Zambia"
msgstr "Замбия"

#: lang.pm:457
#, c-format
msgid "Zimbabwe"
msgstr "Зимбабве"

#: lang.pm:1191
#, c-format
msgid "Welcome to %s"
msgstr "Добро пожаловать в %s"

#: lvm.pm:92
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
"Перемещение используемых физических областей на другой физический раздел не "
"удалось"

#: lvm.pm:149
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Физический раздел %s все еще используется"

#: lvm.pm:159
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Сначала удалите логические тома\n"

#: lvm.pm:202
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
"Загрузчик не может работать с разделом /boot на нескольких физических "
"разделах"

#. -PO: Only write something if needed:
#: messages.pm:11
#, c-format
msgid "_: You can warn about unofficial translation here"
msgstr ""

#: messages.pm:18
#, c-format
msgid "Introduction"
msgstr "Введение"

#: messages.pm:20
#, c-format
msgid ""
"The operating system and the different components available in the Mageia "
"distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mageia distribution, and any "
"applications \n"
"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
"Операционная система и различные компоненты, доступные в дистрибутиве Mageia "
"Linux, далее будут \n"
"называться «Программными Продуктами». Программные Продукты включают (но не "
"ограничиваются) \n"
"программы, методы, правила и документацию, связанные с операционной системой "
"и различными \n"
"компонентами дистрибутива Mageia и любыми приложениями, распространяемыми с "
"этими \n"
"продуктами лицензиарами или поставщиками компании Mageia."

#: messages.pm:27
#, c-format
msgid "1. License Agreement"
msgstr "1. Лицензионное соглашение"

#: messages.pm:29
#, c-format
msgid ""
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mageia which applies to the Software Products.\n"
"By installing, duplicating or using any of the Software Products in any "
"manner, you explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products."
msgstr ""
"Внимательно прочтите данный документ. Этот документ является лицензионным \n"
"соглашением, заключаемым между вами и компанией Mageia, применительно к \n"
"Программным Продуктам. Устанавливая, тиражируя или используя Программные "
"Продукты \n"
"в любых других целях, вы явным образом принимаете и полностью соглашаетесь "
 \n"
"условиями и положениями данной Лицензии. Если вы не согласны с какой-либо "
"частью данной \n"
"Лицензии, вам не разрешается устанавливать, тиражировать или использовать "
"Программные \n"
"Продукты.\n"
"Любые попытки использовать, тиражировать или использовать Программные "
"Продукты \n"
"способом, противоречащим условиям данной Лицензии, являются "
"аннулированием, \n"
"и освобождают вас от всех прав, предоставляемых данной Лицензией. При "
"прекращении \n"
"действия Лицензии вы должны немедленно удалить все копии Программных "
"Продуктов."

#: messages.pm:41
#, c-format
msgid "2. Limited Warranty"
msgstr "2. Ограниченные гарантийные обязательства"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:44
#, c-format
msgid ""
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Neither Mageia nor its licensors or suppliers will, in any circumstances and "
"to the extent \n"
"permitted by law, be liable for any special, incidental, direct or indirect "
"damages whatsoever \n"
"(including without limitation damages for loss of business, interruption of "
"business, financial \n"
"loss, legal fees and penalties resulting from a court judgment, or any other "
"consequential loss) \n"
"arising out of  the use or inability to use the Software Products, even if "
"Mageia or its \n"
"licensors or suppliers have been advised of the possibility or occurrence of "
"such damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, neither Mageia nor its licensors, suppliers "
"or\n"
"distributors will, in any circumstances, be liable for any special, "
"incidental, direct or indirect \n"
"damages whatsoever (including without limitation damages for loss of "
"business, interruption of \n"
"business, financial loss, legal fees and penalties resulting from a court "
"judgment, or any \n"
"other consequential loss) arising out of the possession and use of software "
"components or \n"
"arising out of  downloading software components from one of Mageia sites "
"which are \n"
"prohibited or restricted in some countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"However, because some jurisdictions do not allow the exclusion or limitation "
"or liability for \n"
"consequential or incidental damages, the above limitation may not apply to "
"you."
msgstr ""
"Программные Продукты и прилагаемая документация предоставляются «как есть», "
"без какой-либо \n"
"гарантии, в пределах, дозволенных законом.\n"
"Ни компания Mageia, ни её лицензиары ни при каких условиях и в пределах, "
"дозволенных \n"
"законом, не несут ответственности за какие-либо специальные, случайные, "
"прямые или косвенные убытки \n"
"(включая неограниченные убытки от потери бизнеса, прерывания коммерческой "
"деятельности, финансовых \n"
"потерь, судебных издержек и штрафов, являющихся результатом судебного "
"решения, или любых других \n"
"косвенных потерь), являющихся  результатом использования Программных "
"Продуктов, даже, если компании \n"
"Mageia или её лицензиарам было известно о возможности или случаях такого "
"ущерба.\n"
"\n"
"ОГРАНИЧЕННАЯ ОТВЕТСТВЕННОСТЬ, СВЯЗАННАЯ С ВЛАДЕНИЕМ ИЛИ ИСПОЛЬЗОВАНИЕМ "
"ЗАПРЕЩЁННОГО ПРОГРАММНОГО \n"
"ОБЕСПЕЧЕНИЯ В НЕКОТОРЫХ СТРАНАХ\n"
"\n"
"В пределах, дозволенных законом, ни компания Mageia, ни её лицензиары, "
"поставщики \n"
"или распространители ни при каких условиях не несут ответственности за какие-"
"либо специальные, \n"
"случайные, прямые или косвенные убытки (включая неограниченные убытки от "
"потери бизнеса, прерывания \n"
"коммерческой деятельности, финансовых потерь, судебных издержек и штрафов, "
"являющихся результатом \n"
"судебного решения, или любых других косвенных потерь), связанных с "
"владением, использованием \n"
"или загрузкой программных компонентов с одного из веб-сайтов Mageia, на "
"которые наложен \n"
"запрет или ограничение в некоторых странах согласно местному "
"законодательству.\n"
"Данная ограниченная ответственность применяется, но не ограничивается, к "
"компонентам усиленной \n"
"криптографии, относящихся к Программным Продуктам.\n"
"Однако, поскольку в ряде юрисдикций не допускается исключение или "
"ограничение ответственности \n"
"за косвенные или случайные убытки, то указанные выше ограничения могут к вам "
"не относиться."

#: messages.pm:68
#, c-format
msgid "3. The GPL License and Related Licenses"
msgstr "3. Лицензия GPL и связанные лицензии"

#: messages.pm:70
#, fuzzy, c-format
msgid ""
"The Software Products consist of components created by different persons or "
"entities.\n"
"Most of these licenses allow you to use, duplicate, adapt or redistribute "
"the components which \n"
"they cover. Please read carefully the terms and conditions of the license "
"agreement for each component \n"
"before using any component. Any question on a component license should be "
"addressed to the component \n"
"licensor or supplier and not to Mageia.\n"
"The programs developed by Mageia are governed by the GPL License. "
"Documentation written \n"
"by Mageia is governed by \"%s\" License."
msgstr ""
"Программные Продукты состоят из компонентов, созданных различными людьми или "
"организациями.\n"
"Большинство этих лицензий позволяют вам использовать, тиражировать, "
"адаптировать \n"
"или перераспределять  компоненты, на которые распространяется действие "
"лицензий. Перед \n"
"использованием какого-либо компонента внимательно прочтите положения и "
"условия лицензионного \n"
"соглашения для этого компонента. Любые вопросы относительно лицензии "
"компонента следует\n"
"направлять разработчику компонента, а не компании Mageia.\n"
"На программы, разработанные компанией Mageia, рапространяется действие "
"лицензии GPL. \n"
"На документацию, написанную компанией Mageia, рапространяется действие "
"особой лицензии. \n"
"Дополнительные сведения см. в документации."

#: messages.pm:79
#, c-format
msgid "4. Intellectual Property Rights"
msgstr "4. Права на объекты интеллектуальной собственности"

#: messages.pm:81
#, c-format
msgid ""
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mageia and its suppliers and licensors reserves their rights to modify or "
"adapt the Software \n"
"Products, as a whole or in parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of %s"
msgstr ""
"Все права на компоненты Программных Продуктов принадлежат их соответствующим "
"авторам \n"
"и защищены законами об интеллектуальной собственности и авторском праве, "
"применительно \n"
"к программному обеспечению. Компания Mageia и её поставщики и лицензиары "
"сохраняют \n"
"за собой право изменять или адаптировать Программные Продукты (как целиком, "
"так и по частям) \n"
"любым образом и для любых целей.\n"
"«Mageia» и соответствующие логотипы являются товарными знаками \n"
"компании %s"

#: messages.pm:88
#, c-format
msgid "5. Governing Laws"
msgstr "5. Регулирующие законы"

#: messages.pm:90
#, c-format
msgid ""
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mageia."
msgstr ""
"Если какая-либо часть данного соглашения является недействительной, "
"противозаконной \n"
"или неприменимой по решению суда, эта часть исключается из данного "
"соглашения. \n"
"На вас по-прежнему налагаются ограничения других пригодных разделов "
"соглашения.\n"
"Условия и положения данной Лицензии регулируются законодательством Франции.\n"
"Все споры по условиям и положениям данной лицензии лучше оспаривать вне "
"суда. В крайнем \n"
"случае спор будет передан в соответствующий суд общей юрисдикции Парижа, "
"Франция. \n"
"По любым вопросам, касающимся этого документа, обращайтесь в компанию  Mageia"

#: messages.pm:102
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a license for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
"Предупреждение: свободное программное обеспечение не обязательно может \n"
"быть свободным от патентов, и некоторое свободное ПО в дистрибутиве \n"
"может быть запатентовано в вашей стране. Например, для MP3-декодеров в \n"
"дистрибутиве может потребоваться лицензия для дальнейшего использования \n"
"(подробности см. на веб-сайте http://www.mp3licensing.com). Если вы не "
"уверены \n"
"в наличии патента, ознакомьтесь со своим местнымм законодательством"

#: messages.pm:111
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot."
msgstr ""
"Установка успешно завершена.\n"
"Извлеките загрузочный диск и нажмите клаишу «Enter» для перезагрузки."

#: messages.pm:113
#, c-format
msgid ""
"For information on fixes which are available for this release of Mageia,\n"
"consult the Errata available from:\n"
"%s"
msgstr ""
"Сведения об исправлениях, доступных для этой версии Mageia,\n"
"см. в списке Errata на сайте:\n"
"%s"

#: messages.pm:115
#, c-format
msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mageia User's Guide."
msgstr ""
"Сведения о настройке системы см. в главе «Действия после\n"
" установки» руководства пользователя Mageia."

#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
msgstr "У этого драйвера нет настраиваемых параметров!"

#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
msgstr "Настройка модуля"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Здесь можно настроить все параметры модуля"

#: modules/interactive.pm:64
#, c-format
msgid "Found %s interfaces"
msgstr "Найдено интерфейсов: %s"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have another one?"
msgstr "Есть ли у вас другой?"

#: modules/interactive.pm:66
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Есть ли у вас какие-либо %s интерфейсы?"

#: modules/interactive.pm:72
#, c-format
msgid "See hardware info"
msgstr "Просмотреть информацию об оборудовании"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for USB controller"
msgstr "Установка драйвера для USB контроллера"

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr "Установка драйвера для firewire-контроллера %s"

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for hard disk drive controller %s"
msgstr "Установка драйвера для контроллера жёсткого диска %s"

#: modules/interactive.pm:86
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "Установка драйвера для ethernet-контроллера %s"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:97
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Установка драйвера для %s карты %s"

#: modules/interactive.pm:100
#, c-format
msgid "Configuring Hardware"
msgstr "Настройка оборудования"

#: modules/interactive.pm:111
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Теперь можно передать параметры в модуль %s.\n"
"Любые адреса должны быть указаны с префиксом 0x, напр. «0z123»"

#: modules/interactive.pm:117
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Теперь можно передать параметры в модуль %s.\n"
"Параметры должны быть в формате «имя=значение имя2=значение2 ...».\n"
"Например, «io=0x300 irq=7»"

#: modules/interactive.pm:119
#, c-format
msgid "Module options:"
msgstr "Параметры модуля:"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:132
#, c-format
msgid "Which %s driver should I try?"
msgstr "Какой %s драйвер попробовать?"

#: modules/interactive.pm:141
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"В некоторых случаях драйверу %s нужна некоторая дополнительная информация,\n"
"хотя обычно этого не требуется. Не хотите ли вы определить для него\n"
"дополнительные параметры или позволите драйверу прозондировать вашу машину\n"
"в поисках необходимой информации? Возможно, исследование подвесит\n"
"компьютер, однако это не должно вызвать никаких неисправностей."

#: modules/interactive.pm:145
#, c-format
msgid "Autoprobe"
msgstr "Автоматическое обнаружение"

#: modules/interactive.pm:145
#, c-format
msgid "Specify options"
msgstr "Укажите параметры"

#: modules/interactive.pm:157
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Не удалось загрузить модуль %s.\n"
"Попытаться ещё раз с другими параметрами?"

#: mygtk2.pm:1540 mygtk2.pm:1541
#, c-format
msgid "Password is trivial to guess"
msgstr "Пароль слишком прост"

#: mygtk2.pm:1542
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Пароль должен быть стойким к простым атакам"

#: mygtk2.pm:1543 mygtk2.pm:1544
#, c-format
msgid "Password seems secure"
msgstr "Пароль кажется безопасным"

#: partition_table.pm:428
#, c-format
msgid "mount failed: "
msgstr "ошибка монтирования: "

#: partition_table.pm:540
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Расширенный раздел не поддерживается на этой платформе"

#: partition_table.pm:558
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"В таблице разделов есть свободное место, но её нельзя использовать.\n"
"Следует переместить основные разделы так, чтобы свободное место "
"располагалась сразу за расширенными разделами."

#: partition_table/raw.pm:296
#, c-format
msgid ""
"Something bad is happening on your hard disk drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"С диском какие-то неполадки. \n"
"Проверка целостности данных завершилась с ошибками. \n"
"Это означает, что данные после записи на диск будут повреждены."

#: pkgs.pm:254 pkgs.pm:257 pkgs.pm:270
#, c-format
msgid "Unused packages removal"
msgstr "Удаление неиспользуемых пакетов"

#: pkgs.pm:254
#, c-format
msgid "Finding unused hardware packages..."
msgstr "Поиск неиспользуемых пакетов оборудования..."

#: pkgs.pm:257
#, c-format
msgid "Finding unused localization packages..."
msgstr "Поиск неиспользуемых пакетов локализаций..."

#: pkgs.pm:271
#, c-format
msgid ""
"We have detected that some packages are not needed for your system "
"configuration."
msgstr ""
"Было обнаружено, что некоторые пакеты не нужны в текущей конфигурации "
"системы."

#: pkgs.pm:272
#, c-format
msgid "We will remove the following packages, unless you choose otherwise:"
msgstr "Будут удалены следующие пакеты, если вы не измените выбор:"

#: pkgs.pm:275 pkgs.pm:276
#, c-format
msgid "Unused hardware support"
msgstr "Поддержка неиспользуемого оборудования"

#: pkgs.pm:279 pkgs.pm:280
#, c-format
msgid "Unused localization"
msgstr "Неиспользуемые локализации"

#: raid.pm:43
#, c-format
msgid "Cannot add a partition to _formatted_ RAID %s"
msgstr "Не удаётся добавить раздел на _отформатированном_ RAID  %s"

#: raid.pm:166
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Недостаточно разделов для RAID уровня %d\n"

#: scanner.pm:96
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Не удалось создать каталог /usr/share/sane/firmware"

#: scanner.pm:107
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Не удалось создать ссылку /usr/share/sane/%s"

#: scanner.pm:114
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Не удалось скопировать файл прошивки %s в /usr/share/sane/firmware"

#: scanner.pm:121
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Не удалось установить права доступа для файла прошивки %s!"

#: scanner.pm:200
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
"Не удалось установить пакеты, необходимые для общего доступа к сканероам"

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Сканер не будет доступен для обычных пользователей."

#: security/help.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages."
msgstr "Принимать сообщения об ошибках IPv4."

#: security/help.pm:13
#, c-format
msgid "Accept broadcasted icmp echo."
msgstr "Принимать широковещательные эхо-пакеты ICMP"

#: security/help.pm:15
#, c-format
msgid "Accept icmp echo."
msgstr "Принимать эхо-пакеты ICMP"

#: security/help.pm:17
#, c-format
msgid "Allow autologin."
msgstr "Разрешить автоматический вход в систему."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""
"Если установлено «ВСЕ», разрешено существовать файлам /etc/issue и /etc/"
"issue.net.\n"
"\n"
"Если установлено «НЕТ», запрещены все issue-файлы.\n"
"\n"
"В противном случае разрешён только файл /etc/issue."

#: security/help.pm:27
#, c-format
msgid "Allow reboot by the console user."
msgstr "Разрешить перезагрузку системы пользователем из консоли."

#: security/help.pm:29
#, c-format
msgid "Allow remote root login."
msgstr "Разрешить администратору удалённый вход в систему"

#: security/help.pm:31
#, c-format
msgid "Allow direct root login."
msgstr "Разрешить администратору непосрественный вход в систему."

#: security/help.pm:33
#, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Разрешает/Запрещает вывод списка пользователей системы в оконных менеджерах "
"(kdm и gdm)."

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""
"Разрешает/запрещает экспорт дисплея при\n"
"переходе из учётной записи root'а на других пользователей.\n"
"\n"
"Подробнее смотрите в pam_xauth(8).'"

#: security/help.pm:40
#, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""
"Разрешает/Запрещает X-подключения:\n"
"\n"
"- ВСЕ (все подключения разрешены),\n"
"\n"
"- ЛОКАЛЬНЫЕ (подключения только с локальной машины),\n"
"\n"
"- НИ ОДНОГО (никаких подключений)."

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""
"Аргумент определяет, будет ли разрешено клиентам из сети\n"
"подключаться к X-серверу на tcp-порт 6000 или нет."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Разрешает:\n"
"\n"
"- все службы, контролируемые tcp_wrappers'ами (см. hosts.deny(5) man page), "
"если установлено в \"ВСЕ\",\n"
"\n"
"- только локальные, если установлено в \"ЛОКАЛЬНЫЕ\"\n"
"\n"
"- ни одной, если установлено в \"НИ ОДНОГО\".\n"
"\n"
"Для разрешения нужных вам служб используйте /etc/hosts.allow (см hosts.allow "
"(5))."

#: security/help.pm:63
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
"Если значение SERVER_LEVEL (или SECURE_LEVEL, если отсутствует) \n"
"больше 3 в /etc/security/msec/security.conf, создает символическую \n"
"ссылку /etc/security/msec/server, указывающую \n"
"на /etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"Файл /etc/security/msec/server используется командой chkconfig --add \n"
"для принятия решения о добавлении службы, если она присутствует в \n"
"файле во время установки пакетов."

#: security/help.pm:72
#, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""
"Включает/Отключает для пользователей службы crontab и at.\n"
"\n"
"Разрешенные пользователи помещаются в /etc/cron.allow и /etc/at.allow\n"
"(см. man at(1) и crontab(1))."

#: security/help.pm:77
#, c-format
msgid "Enable syslog reports to console 12"
msgstr "Разрешает/Запрещает вывод отчетов syslog в консоль 12."

#: security/help.pm:79
#, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""
"Включает/Отключает защиту от спуфинга при распознавании имен. \n"
"Если \"%s\" равно true, также регистрирует событие в syslog."

#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Предупреждения о безопасности:"

#: security/help.pm:82
#, c-format
msgid "Enable IP spoofing protection."
msgstr "Включить защиту от IP-спуфинга"

#: security/help.pm:84
#, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr "Включить libsafe, если libsafe найдена в системе"

#: security/help.pm:86
#, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr "Включить регистрацию необычных пакетов IPv4"

#: security/help.pm:88
#, c-format
msgid "Enable msec hourly security check."
msgstr "Разрешить msec'у проверять безопасность каждый час"

#: security/help.pm:90
#, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr ""
"Разрешает su только для членов группы wheel. Если установлено в \"нет\", "
"разрешает su для любого пользователя."

#: security/help.pm:92
#, c-format
msgid "Use password to authenticate users."
msgstr "Использование паролей для аутентификации пользователей."

#: security/help.pm:94
#, c-format
msgid "Activate Ethernet cards promiscuity check."
msgstr "Включает/Отключает проверку режима promiscuity для ethernet-карт."

#: security/help.pm:96
#, c-format
msgid "Activate daily security check."
msgstr "Включает/Отключает ежедневную проверку безопасности."

#: security/help.pm:98
#, c-format
msgid "Enable sulogin(8) in single user level."
msgstr "Включает/Отключает sulogin(8) в однопользовательском режиме."

#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""
"Добавление имени в качестве исключения в управление возрастом паролей, "
"осуществляемого msec'ом."

#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
"Установка возраста пароля в \"max\" дней и задержку для изменения на "
"\"inactive\"."

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""
"Установка длительности истории пароля для предотвращения повторного "
"использования пароля."

#: security/help.pm:106
#, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
"Установка минимальной длины пароля, минимального количества цифр и "
"минимального количества символов в верхнем регистре."

#: security/help.pm:108
#, c-format
msgid "Set the root's file mode creation mask."
msgstr "Установка значения umask для root'а."

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr "если установлено Да, проверяются открытые порты."

#: security/help.pm:110
#, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""
"если установлено Да, проверяется:\n"
"\n"
"- наличие пустых паролей,\n"
"\n"
"- отсутствие пароля в /etc/shadow\n"
"\n"
"- наличие пользователей с UID 0 кроме root'а."

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
"если установлено Да, проверяются права доступа файлов в домашних каталогах "
"пользователей."

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
"если установлено Да, проверяется, работают ли сетевые устройства в режиме "
"promiscuous."

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr "если установлено Да, ежедневно выполняются проверки безопасности."

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""
"если установлено Да, проверяется добавление/удаление файлов с sgid-битами."

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr "если установлено Да, проверяется наличие пустых паролей в /etc/shadow."

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""
"если установлено Да, проверяется контрольная сумма файлов с битами suid/sgid."

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
"если установлено Да, проверяется добавление/удаление файлов root'а с suid-"
"битом."

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr "если установлено Да, создается отчет о файлах без владельца."

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
"если установлено Да, проверяются файлы/каталоги с возможностью записи кем-"
"угодно."

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr "если установлено Да, выполняются проверки chkrootkit."

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
"если установлено, письмо с отчетом отправляется на этот адрес, иначе "
"отправляется root'у."

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr "если установлено Да, результаты проверки отправляются по почте."

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr ""
"если установлено Да, сообщения не отправляются, если не о чем предупреждать."

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr "если установлено Да, выполняются некоторые проверки базы данных rpm."

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr "если установлено Да, результаты проверки регистрируются в syslog."

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr "если установлено Да, результаты проверки выводятся в tty."

#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""
"Устанавливает размер истории команд командного процессора. Значение -1 "
"означает неограниченную историю."

#: security/help.pm:136
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
"Устанавливает таймаут для командного процессора. Нулевое значение означает "
"отсутствие таймаута."

#: security/help.pm:136